OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ruleScope
(Results
1 - 18
of
18
) sorted by null
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
NameSpaceChecker.java
59
if ( r.
ruleScope
!=null ) {
60
List attributes = r.
ruleScope
.getAttributes();
233
else if ( r.
ruleScope
!=null && r.
ruleScope
.getAttribute(label.getText())!=null ) {
Rule.java
74
public AttributeScope
ruleScope
;
373
if (
ruleScope
!=null &&
ruleScope
.getAttribute(name)!=null ) {
374
scope =
ruleScope
;
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DefineGrammarItemsWalker.g
295
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));
ActionTranslator.g
162
return scopeRule.
ruleScope
;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg
505
<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
)>
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ObjC.stg
565
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg
238
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg
400
<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
)>
[
all
...]
/external/srec/tools/grxmlcompile/
grxmldoc.cpp
447
std::string
ruleScope
= GETATTR("scope" );
448
if ( !
ruleScope
.empty() ) {
449
m_RuleScope.insert(index,
ruleScope
);
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg
316
<ruleAttributeScope(scope=ruleDescriptor.
ruleScope
)>
381
<ruleDescriptor.
ruleScope
:{<it.name>_stack.push(new Object());}; separator="\n">
386
<ruleDescriptor.
ruleScope
:{<it.name>_stack.pop();}; separator="\n">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg
408
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg
366
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg
337
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg
343
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg
508
<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">
[
all
...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg
489
<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">
[
all
...]
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
/prebuilts/misc/common/antlr/
antlr-3.4-complete.jar
Completed in 606 milliseconds