Home
last modified time | relevance | path

Searched refs:getLocalAttributeScope (Results 1 – 3 of 3) sorted by relevance

/external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/
DActionAnalysis.g82 scope = enclosingRule.getLocalAttributeScope($y.text);
91 scope = refdRule.getLocalAttributeScope($y.text);
99 scope = refdRule.getLocalAttributeScope($y.text);
120 Y : '$' ID {enclosingRule!=null && enclosingRule.getLocalAttributeScope($ID.text)!=null}?
122 AttributeScope scope = enclosingRule.getLocalAttributeScope($ID.text);
DActionTranslator.g150 AttributeScope scope = r.getLocalAttributeScope(attrName);
188 enclosingRule.getLocalAttributeScope($y.text)!=null}?
192 AttributeScope scope = enclosingRule.getLocalAttributeScope($y.text);
232 enclosingRule.getLocalAttributeScope($y.text)!=null}?
242 AttributeScope scope = enclosingRule.getLocalAttributeScope($y.text);
386 AttributeScope scope = refdRule.getLocalAttributeScope($y.text);
489 && enclosingRule.getLocalAttributeScope($ID.text)!=null
490 && !enclosingRule.getLocalAttributeScope($ID.text).isPredefinedLexerRuleScope}?
494 AttributeScope scope = enclosingRule.getLocalAttributeScope($ID.text);
524 : '$' ID {enclosingRule!=null && enclosingRule.getLocalAttributeScope($ID.text)!=null}?
[all …]
/external/antlr/tool/src/main/java/org/antlr/tool/
DRule.java375 AttributeScope scope = getLocalAttributeScope(name); in getAttributeScope()
386 public AttributeScope getLocalAttributeScope(String name) { in getLocalAttributeScope() method in Rule