Searched refs:ruleScope (Results 1 - 17 of 17) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DNameSpaceChecker.java59 if ( r.ruleScope!=null ) {
60 List attributes = r.ruleScope.getAttributes();
233 else if ( r.ruleScope!=null && r.ruleScope.getAttribute(label.getText())!=null ) {
H A DRule.java74 public AttributeScope ruleScope; field in class:Rule
373 if ( ruleScope!=null && ruleScope.getAttribute(name)!=null ) {
374 scope = ruleScope;
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DDefineGrammarItemsWalker.g295 r.ruleScope = grammar.createRuleScope(r.name,$attrs.getToken());
296 r.ruleScope.isDynamicRuleScope = true;
297 r.ruleScope.addAttributes($attrs.text, ';');
299 r.ruleScope.defineNamedAction(action, $AttributeScopeActions::actions.get(action));
H A DActionTranslator.g162 return scopeRule.ruleScope;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg505 <rules: {r |<if(r.ruleDescriptor.ruleScope)>
506 <ruleAttributeScopeFuncDecl(scope=r.ruleDescriptor.ruleScope)>
507 <ruleAttributeScopeFuncs(scope=r.ruleDescriptor.ruleScope)>
689 <rules:{r |<ruleAttributeScopeDecl(scope=r.ruleDescriptor.ruleScope)>}>
725 <rules: {r |<if(r.ruleDescriptor.ruleScope)>
726 <ruleAttributeScopeDef(scope=r.ruleDescriptor.ruleScope)>
1205 <rules:{r |<ruleAttributeScopeFuncMacro(scope=r.ruleDescriptor.ruleScope)>}>
1316 <rules: {r |<if(r.ruleDescriptor.ruleScope)>
1317 <ruleAttributeScope(scope=r.ruleDescriptor.ruleScope)><\n>
1372 <rules: {r |<if(r.ruleDescriptor.ruleScope)><ruleAttributeScopeFre
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DObjC.stg565 <rule.ruleDescriptor:{ ruleDescriptor | <ruleAttributeScopeInterface(scope=ruleDescriptor.ruleScope)>}>}>
572 <rules:{rule | <rule.ruleDescriptor.ruleScope:ruleAttributeScopeDecl(scope=rule.ruleDescriptor.ruleScope)>}>
674 <rule.ruleDescriptor:{ ruleDescriptor | <ruleAttributeScopeImplementation(scope=ruleDescriptor.ruleScope)>}>}>
682 <rules:{rule | <rule.ruleDescriptor.ruleScope:ruleAttributeScope()>}>
722 <rules:{rule | <rule.ruleDescriptor.ruleScope:ruleAttributeScopeInit()>}>
910 <ruleDescriptor.ruleScope:{it | [<it.name>_stack push:[<it.name>_Scope new<it.name>_Scope]];}>
916 <ruleDescriptor.ruleScope:{it | [<it.name>_stack pop];}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DPython.stg238 <rules:{it|<ruleAttributeScopeClass(scope=it.ruleDescriptor.ruleScope)>}>
261 <rules:{it | <ruleAttributeScopeStack(scope=it.ruleDescriptor.ruleScope)>}>
493 <ruleDescriptor.ruleScope:{it | self.<it.name>_stack.append(<it.name>_scope())}; separator="\n">
498 <ruleDescriptor.ruleScope:{it | self.<it.name>_stack.pop()}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg400 <rules: {r | <ruleAttributeScopeInit(scope=r.ruleDescriptor.ruleScope)>}>
593 <ruleAttributeScopeDeclaration(scope=ruleDescriptor.ruleScope)>
637 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
749 <ruleDescriptor.ruleScope:{<it.name>Stack.Push(T<it.name>Scope.Create);}; separator="\n">
754 <ruleDescriptor.ruleScope:{<it.name>Stack.Pop;}; separator="\n">
846 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
/external/srec/tools/grxmlcompile/
H A Dgrxmldoc.cpp447 std::string ruleScope = GETATTR("scope" ); local
448 if ( !ruleScope.empty() ) {
449 m_RuleScope.insert(index, ruleScope);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg316 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
381 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new Object());}; separator="\n">
386 <ruleDescriptor.ruleScope:{<it.name>_stack.pop();}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg408 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
460 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
503 <ruleDescriptor.ruleScope:{<it.name>_stack.pop();}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg366 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
434 <ruleDescriptor.ruleScope:{it |<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
439 <ruleDescriptor.ruleScope:{it |<it.name>_stack.pop();}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg337 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
408 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
413 <ruleDescriptor.ruleScope:{<it.name>_stack.pop();}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
H A DScala.stg343 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
412 <ruleDescriptor.ruleScope:{it | <it.name>_stack.push(new <it.name>_scope())}; separator="\n">
417 <ruleDescriptor.ruleScope:{it | <it.name>_stack.pop()}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg508 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
604 <ruleDescriptor.ruleScope:{it|<it.name>_stack.Push(new <it.name>_scope());<it.name>_scopeInit(<it.name>_stack.Peek());}; separator="\n">
609 <ruleDescriptor.ruleScope:{it|<it.name>_scopeAfter(<it.name>_stack.Peek());<it.name>_stack.Pop();}; separator="\n">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg489 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
582 <ruleDescriptor.ruleScope:{it|<it.name>_stack.Push(new <it.name>_scope(this));<it.name>_scopeInit(<it.name>_stack.Peek());}; separator="\n">
587 <ruleDescriptor.ruleScope:{it|<it.name>_scopeAfter(<it.name>_stack.Peek());<it.name>_stack.Pop();}; separator="\n">
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 384 milliseconds