Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DActionAnalysis.g81 scope = enclosingRule.getLocalAttributeScope($y.text);
90 scope = refdRule.getLocalAttributeScope($y.text);
98 scope = refdRule.getLocalAttributeScope($y.text);
119 Y : '$' ID {enclosingRule!=null && enclosingRule.getLocalAttributeScope($ID.text)!=null}?
121 AttributeScope scope = enclosingRule.getLocalAttributeScope($ID.text);
DActionTranslator.g149 AttributeScope scope = r.getLocalAttributeScope(attrName);
187 enclosingRule.getLocalAttributeScope($y.text)!=null}?
191 AttributeScope scope = enclosingRule.getLocalAttributeScope($y.text);
231 enclosingRule.getLocalAttributeScope($y.text)!=null}?
241 AttributeScope scope = enclosingRule.getLocalAttributeScope($y.text);
385 AttributeScope scope = refdRule.getLocalAttributeScope($y.text);
488 && enclosingRule.getLocalAttributeScope($ID.text)!=null
489 && !enclosingRule.getLocalAttributeScope($ID.text).isPredefinedLexerRuleScope}?
493 AttributeScope scope = enclosingRule.getLocalAttributeScope($ID.text);
523 : '$' ID {enclosingRule!=null && enclosingRule.getLocalAttributeScope($ID.text)!=null}?
[all …]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DRule.java369 AttributeScope scope = getLocalAttributeScope(name); in getAttributeScope()
380 public AttributeScope getLocalAttributeScope(String name) { in getLocalAttributeScope() method in Rule