Searched refs:scopeName (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/Sema/ |
D | AttributeList.h | 216 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument 219 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList() 230 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument 237 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList() 253 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument 258 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList() 273 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument 276 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList() 292 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList() argument 294 : AttrName(attrName), ScopeName(scopeName), AttrRange(attrRange), in AttributeList() [all …]
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
D | TreeToNFAConverter.g | 568 atom[String scopeName] returns [StateCluster g=null] 571 NFAState start = grammar.getRuleStartState(scopeName,$r.text); 574 Rule rr = grammar.getRule(scopeName,$r.text); 591 NFAState start = grammar.getRuleStartState(scopeName,$t.text); 594 Rule rr = grammar.getRule(scopeName,t.getText());
|
D | ActionTranslator.g | 156 AttributeScope resolveDynamicScope(String scopeName) { 157 if ( grammar.getGlobalScope(scopeName)!=null ) { 158 return grammar.getGlobalScope(scopeName); 160 Rule scopeRule = grammar.getRule(scopeName);
|
D | CodeGenTreeWalker.g | 971 String scopeName = null; 973 scopeName = scope.getText(); 975 Rule rdef = grammar.getRule(scopeName, $r.text); 1037 String scopeName = null; 1040 scopeName = scope.getText(); 1042 Rule rdef2 = grammar.getRule(scopeName, $t.text);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | Grammar.java | 1670 public Rule getRule(String scopeName, String ruleName) { in getRule() argument 1671 if ( scopeName!=null ) { // scope override in getRule() 1672 Grammar scope = composite.getGrammar(scopeName); in getRule() 1681 public int getRuleIndex(String scopeName, String ruleName) { in getRuleIndex() argument 1682 Rule r = getRule(scopeName, ruleName); in getRuleIndex() 2713 public NFAState getRuleStartState(String scopeName, String ruleName) { in getRuleStartState() argument 2714 Rule r = getRule(scopeName, ruleName); in getRuleStartState()
|