Searched refs:filterStr (Results 1 – 9 of 9) sorted by relevance
103 void SetFilterParam(const std::string& filterStr);334 bool GetFilterType(const std::string& filterStr, std::vector<FilterProperty>& filters);348 FilterType FilterStrToFilterType(const std::string& filterStr);
228 void OffscreenCanvasPattern::SetFilterParam(const std::string& filterStr) in SetFilterParam() argument230 offscreenPaintMethod_->SetFilterParam(filterStr); in SetFilterParam()
156 explicit SetFilterParamOp(const std::string& filterStr): filterStr(std::move(filterStr)) {} in SetFilterParamOp()157 std::string filterStr; member
101 void SetFilterParam(const std::string& filterStr);
1060 void CanvasPattern::SetFilterParam(const std::string& filterStr) in SetFilterParam() argument1063 auto task = [filterStr](CanvasPaintMethod& paintMethod) { in SetFilterParam()1064 paintMethod.SetFilterParam(filterStr); in SetFilterParam()1068 paintMethod_->PushTask<SetFilterParamOp>(filterStr); in SetFilterParam()
177 void SetFilterParam(const std::string& filterStr);
108 method->SetFilterParam(filterStr); in Draw()
1443 void CustomPaintPaintMethod::SetFilterParam(const std::string& filterStr) in SetFilterParam() argument1446 if (!GetFilterType(filterStr, filters)) { in SetFilterParam()1716 bool CustomPaintPaintMethod::GetFilterType(const std::string& filterStr, std::vector<FilterProperty… in GetFilterType() argument1718 std::string paramData = filterStr; in GetFilterType()1836 FilterType CustomPaintPaintMethod::FilterStrToFilterType(const std::string& filterStr) in FilterStrToFilterType() argument1851 …return ConvertStrToEnum(filterStr.c_str(), filterTypeTable, ArraySize(filterTypeTable), FilterType… in FilterStrToFilterType()
898 std::string filterStr = "none"; in JsSetFilter() local899 if (info.GetStringArg(0, filterStr) && !filterStr.empty()) { in JsSetFilter()900 renderingContext2DModel_->SetFilterParam(filterStr); in JsSetFilter()