Home
last modified time | relevance | path

Searched refs:CompoundExpressionRegistry (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dis_expression.cpp23 …(CompoundExpressionRegistry::definitions.find(*name) != CompoundExpressionRegistry::definitions.en… in isExpression()
H A Dcompound_expression.cpp214 using Definition = CompoundExpressionRegistry::Definition;
295 std::unordered_map<std::string, CompoundExpressionRegistry::Definition> initializeDefinitions() { in initializeDefinitions()
296 std::unordered_map<std::string, CompoundExpressionRegistry::Definition> definitions; in initializeDefinitions()
650 std::unordered_map<std::string, Definition> CompoundExpressionRegistry::definitions = initializeDef…
744 auto it = CompoundExpressionRegistry::definitions.find(name); in parseCompoundExpression()
745 if (it == CompoundExpressionRegistry::definitions.end()) { in parseCompoundExpression()
752 const CompoundExpressionRegistry::Definition& definition = it->second; in parseCompoundExpression()
801 …return createCompoundExpression(CompoundExpressionRegistry::definitions.at(name), std::move(args),… in createCompoundExpression()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dcompound_expression.hpp134 struct CompoundExpressionRegistry { struct