Home
last modified time | relevance | path

Searched refs:ruleNames (Results 1 – 21 of 21) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DDbg.stg38 NSArray *ruleNames;
47 AMutableArray *ruleNames = [AMutableArray arrayWithArray:{
81 …zation:input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames objectAtIndex:ru…
86 …ex StartIndex:ruleStartIndex [<grammar.composite.rootGrammar.recognizerName> ruleNames[ruleIndex]];
98 ruleNames = [NSArray arrayWithObjects:<rules:{rST | @"<rST.ruleName>"}; separator=", ", wrap="\n ">…
102 [ruleNames release];<\n>
DAST.stg31 NSArray *ruleNames;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
DTestSuiteFactory.java93 final List<String> ruleNames = new ArrayList<String>(); in loadRulesFromGrammar() local
99 parser.rules = ruleNames; in loadRulesFromGrammar()
108 for(String str: ruleNames) { in loadRulesFromGrammar()
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestDFAConversion.java555 assertEquals(expectedRules, ruleNames(leftRecursive)); in testIndirectRecursionLoop()
584 assertEquals(expectedRules, ruleNames(leftRecursive)); in testIndirectRecursionLoop2()
615 assertEquals(expectedRules, ruleNames(leftRecursive)); in testIndirectRecursionLoop3()
792 assertEquals(expectedRules, ruleNames(leftRecursive)); in testimmediateLeftRecursion()
804 assertEquals(expectedRules, ruleNames(leftRecursive)); in testIndirectLeftRecursion()
819 assertEquals(expectedRules, ruleNames(leftRecursive)); in testLeftRecursionInMultipleCycles()
1772 protected Set<String> ruleNames(Set<Rule> rules) { in ruleNames() method in TestDFAConversion
1783 x.addAll(ruleNames(s)); in ruleNames2()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DCompositeGrammar.java276 Set<String> ruleNames = new HashSet(); in getAllImportedRules() local
288 if ( !ruleNames.contains(r.name) ) { in getAllImportedRules()
289 ruleNames.add(r.name); // track that we've seen this in getAllImportedRules()
DGrammar.java851 List<String> ruleNames, in addArtificialMatchTokensRule() argument
866 for (int i = 0; i < ruleNames.size(); i++) { in addArtificialMatchTokensRule()
867 String rname = (String) ruleNames.get(i); in addArtificialMatchTokensRule()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
DTreeRewriteParser.h89 NSArray *ruleNames; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
DLangParser.h113 NSArray *ruleNames; variable
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRbnfTest.java1414 String[] ruleNames = rbnf.getRuleSetNames(); in TestChineseProcess() local
1420 for(int i=0; i<ruleNames.length; i++){ in TestChineseProcess()
1422 rbnf.format(-123450.6789,ruleNames[i]); in TestChineseProcess()
1425 "when being formatted with parameters 0.0 and " + ruleNames[i]); in TestChineseProcess()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRbnfTest.java1418 String[] ruleNames = rbnf.getRuleSetNames(); in TestChineseProcess() local
1424 for(int i=0; i<ruleNames.length; i++){ in TestChineseProcess()
1426 rbnf.format(-123450.6789,ruleNames[i]); in TestChineseProcess()
1429 "when being formatted with parameters 0.0 and " + ruleNames[i]); in TestChineseProcess()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DProfileTreeGrammar.cs50 public static readonly string[] ruleNames = field in ProfileTreeGrammar
79 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileTreeGrammar.ruleNames[ruleIndex]); in AlreadyParsedRule()
85 …((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileTreeGrammar.ruleNames[ruleIndex]); in Memoize()
DProfileGrammarParser.cs47 public static readonly string[] ruleNames = field in ProfileGrammarParser
89 …((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileGrammarParser.ruleNames[ruleIndex]… in AlreadyParsedRule()
95 …((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileGrammarParser.ruleNames[ruleIndex… in Memoize()
DDebugTreeGrammar.cs50 public static readonly string[] ruleNames = field in DebugTreeGrammar
DDebugGrammarParser.cs47 public static readonly string[] ruleNames = field in DebugGrammarParser
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DDbg.stg44 public static readonly string[] ruleNames =
71 …(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
76 …t, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DDbg.stg45 public static readonly string[] ruleNames =
72 …(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
77 …t, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
DDbg.stg39 public static final String[] ruleNames = new String[] {
67 …(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
74 …t, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
DDbg.stg64 ruleNames = [
103 …Memoization(input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
111 …t, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCParser.h366 NSArray *ruleNames; variable
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
DDbg.stg37 ruleNames[] =
/external/doclava/src/com/google/doclava/parser/
DJavaParser.java298 public static final String[] ruleNames = new String[] { field in JavaParser