Searched refs:CompoundExpressionRegistry (Results 1 – 3 of 3) sorted by relevance
23 …(CompoundExpressionRegistry::definitions.find(*name) != CompoundExpressionRegistry::definitions.en… in isExpression()
214 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()
134 struct CompoundExpressionRegistry { struct