Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
DCodeGenerator.java495 Map scopeActions = (Map)actions.get(scope); in verifyActionScopesOkForTarget() local
497 (GrammarAST)scopeActions.values().iterator().next(); in verifyActionScopesOkForTarget()
513 Map scopeActions = (Map)actions.get(scope); in translateActionAttributeReferences() local
514 translateActionAttributeReferencesForSingleScope(null,scopeActions); in translateActionAttributeReferences()
521 Map scopeActions) in translateActionAttributeReferencesForSingleScope() argument
527 Set actionNameSet = scopeActions.keySet(); in translateActionAttributeReferencesForSingleScope()
530 GrammarAST actionAST = (GrammarAST)scopeActions.get(name); in translateActionAttributeReferencesForSingleScope()
532 scopeActions.put(name, chunks); // replace with translation in translateActionAttributeReferencesForSingleScope()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DGrammar.java1503 Map<String, Object> scopeActions = getActions().get(scope); in defineNamedAction() local
1504 if ( scopeActions==null ) { in defineNamedAction()
1505 scopeActions = new HashMap<String, Object>(); in defineNamedAction()
1506 getActions().put(scope, scopeActions); in defineNamedAction()
1508 Object a = scopeActions.get(actionName); in defineNamedAction()
1515 scopeActions.put(actionName,actionAST); in defineNamedAction()