Searched defs:expectedTokenType (Results 1 - 19 of 19) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DParser.cs75 int expectedTokenType,
79 if ( expectedTokenType == TokenTypes.EndOfFile )
82 tokenText = "<missing " + TokenNames[expectedTokenType] + ">";
83 CommonToken t = new CommonToken( expectedTokenType, tokenText );
73 GetMissingSymbol( IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow ) argument
H A DBaseRecognizer.cs784 int expectedTokenType,
782 GetMissingSymbol( IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow ) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DParser.cs69 int expectedTokenType,
72 if (expectedTokenType == TokenTypes.EndOfFile)
75 tokenText = "<missing " + TokenNames[expectedTokenType] + ">";
76 CommonToken t = new CommonToken(expectedTokenType, tokenText);
67 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
H A DBaseRecognizer.cs699 int expectedTokenType,
697 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeParser.cs109 int expectedTokenType,
112 object o = base.GetMissingSymbol( input, e, expectedTokenType, follow );
107 GetMissingSymbol( IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow ) argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DParser.java61 int expectedTokenType,
65 if ( expectedTokenType==Token.EOF ) tokenText = "<missing EOF>";
66 else tokenText = "<missing "+getTokenNames()[expectedTokenType]+">";
67 CommonToken t = new CommonToken(expectedTokenType, tokenText);
59 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
H A DBaseRecognizer.java669 int expectedTokenType,
667 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c48 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
205 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
245 text->append8 (text, (const char *)recognizer->state->tokenNames[expectedTokenType]);
204 getMissingSymbol(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) argument
H A Dantlr3lexer.c64 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
901 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
900 getMissingSymbol(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) argument
H A Dantlr3baserecognizer.c80 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
2166 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
2205 token->setType (token, expectedTokenType);
2219 text->append8(text, (const char *)recognizer->state->tokenNames[expectedTokenType]);
2165 getMissingSymbol(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeParser.cs101 int expectedTokenType,
103 object o = base.GetMissingSymbol(input, e, expectedTokenType, follow);
99 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs105 int expectedTokenType,
109 "<missing " + TokenNames[expectedTokenType] + ">";
111 return adaptor.Create(new CommonToken(expectedTokenType, tokenText));
103 GetMissingSymbol( IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow ) argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeParser.java86 int expectedTokenType,
89 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow);
84 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs96 int expectedTokenType,
99 "<missing " + TokenNames[expectedTokenType] + ">";
101 return adaptor.Create(new CommonToken(expectedTokenType, tokenText));
94 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java87 int expectedTokenType,
91 "<missing "+getTokenNames()[expectedTokenType]+">";
93 return adaptor.create(new CommonToken(expectedTokenType, tokenText));
85 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 3042 milliseconds