Home
last modified time | relevance | path

Searched refs:scopeActions (Results 1 – 2 of 2) sorted by relevance

/external/antlr/tool/src/main/java/org/antlr/codegen/
DCodeGenerator.java493 Map<String, Object> scopeActions = entry.getValue(); in verifyActionScopesOkForTarget() local
495 (GrammarAST)scopeActions.values().iterator().next(); in verifyActionScopesOkForTarget()
509 Map<String, Object> scopeActions = entry.getValue(); in translateActionAttributeReferences() local
510 translateActionAttributeReferencesForSingleScope(null,scopeActions); in translateActionAttributeReferences()
517 Map<String, Object> scopeActions) in translateActionAttributeReferencesForSingleScope() argument
523 for (Map.Entry<String, Object> entry : scopeActions.entrySet()) { in translateActionAttributeReferencesForSingleScope()
527 scopeActions.put(name, chunks); // replace with translation in translateActionAttributeReferencesForSingleScope()
/external/antlr/tool/src/main/java/org/antlr/tool/
DGrammar.java1544 Map<String, Object> scopeActions = getActions().get(scope); in defineNamedAction() local
1545 if ( scopeActions==null ) { in defineNamedAction()
1546 scopeActions = new HashMap<String, Object>(); in defineNamedAction()
1547 getActions().put(scope, scopeActions); in defineNamedAction()
1549 Object a = scopeActions.get(actionName); in defineNamedAction()
1556 scopeActions.put(actionName,actionAST); in defineNamedAction()