Home
last modified time | relevance | path

Searched refs:attrOperators (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/input/
H A Ddom_checkbox_util.cpp76 …t LinearMapNode<void (*)(const RefPtr<CheckboxComponent>&, const std::string&)> attrOperators[] = { in SetChildAttr() local
83 … auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), key.c_str()); in SetChildAttr()
85 attrOperators[operatorIter].value(component, value); in SetChildAttr()
H A Ddom_textfield_util.cpp142 … LinearMapNode<void (*)(const RefPtr<TextFieldComponent>&, const std::string&)> attrOperators[] = { in SetChildAttr() local
186 … auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), key.c_str()); in SetChildAttr()
188 attrOperators[operatorIter].value(component, value); in SetChildAttr()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_grid_column.cpp52 static const LinearMapNode<void (*)(const std::string&, DomGridColumn&)> attrOperators[] { in SetSpecializedAttr() local
104 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
106 attrOperators[operatorIter].value(attr.second, *this); in SetSpecializedAttr()
H A Ddom_marquee.cpp64 static const LinearMapNode<void (*)(MarqueeComponent&, const std::string&)> attrOperators[] = { in SetSpecializedAttr() local
76 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
78 attrOperators[operatorIter].value(*marqueeChild_, attr.second); in SetSpecializedAttr()
H A Ddom_navigation_bar.cpp124 …t LinearMapNode<void (*)(const std::string&, const RefPtr<NavigationBarData>&)> attrOperators[] = { in SetSpecializedAttr() local
152 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
154 attrOperators[operatorIter].value(attr.second, navigationBarData_); in SetSpecializedAttr()
H A Ddom_grid_container.cpp100 static const LinearMapNode<void (*)(const std::string&, DomGridContainer&)> attrOperators[] { in SetSpecializedAttr() local
133 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
135 attrOperators[operatorIter].value(attr.second, *this); in SetSpecializedAttr()
H A Ddom_camera.cpp48 attrOperators = { in SetSpecializedAttr() local
58 auto operatorIter = attrOperators.find(attr.first); in SetSpecializedAttr()
59 if (operatorIter != attrOperators.end()) { in SetSpecializedAttr()
H A Ddom_tool_bar_item.cpp88 static const LinearMapNode<void (*)(DOMToolBarItem&, const std::string&)> attrOperators[] = { in SetSpecializedAttr() local
94 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
96 attrOperators[operatorIter].value(*this, attr.second); in SetSpecializedAttr()
H A Ddom_video.cpp48 attrOperators = { in SetSpecializedAttr() local
84 auto operatorIter = attrOperators.find(attr.first); in SetSpecializedAttr()
85 if (operatorIter != attrOperators.end()) { in SetSpecializedAttr()
H A Ddom_list.cpp35 static const LinearMapNode<void (*)(DOMList&, const std::string&)> attrOperators[] = { in SetSpecializedAttr() local
179 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
181 attrOperators[operatorIter].value(*this, attr.second); in SetSpecializedAttr()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/textfield/
H A Dtextfield_declaration.cpp115 …static const LinearMapNode<void (*)(TextFieldDeclaration&, const std::string&)> attrOperators[] = { in SetSpecializedAttr() local
163 …auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), attr.first.c_st… in SetSpecializedAttr()
165 attrOperators[operatorIter].value(*this, attr.second); in SetSpecializedAttr()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/card_frontend/
H A Djs_card_parser.cpp632 attrOperators[] = { in ParseAttributes() local
667 … auto operatorIter = BinarySearchFindIndex(attrOperators, ArraySize(attrOperators), key.c_str()); in ParseAttributes()
669 attrOperators[operatorIter].value(value, command, *this); in ParseAttributes()