Searched defs:follow (Results 1 - 25 of 27) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DParser.cs70 BitSet follow) {
67 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
H A DBaseRecognizer.cs128 * to the set of symbols that can follow rule ref.
131 public virtual object Match(IIntStream input, int ttype, BitSet follow) { argument
144 matchedSymbol = RecoverFromMismatchedToken(input, ttype, follow);
159 public virtual bool MismatchIsMissingToken(IIntStream input, BitSet follow) { argument
160 if (follow == null) {
161 // we have no information about the follow; we can only consume
165 // compute what can follow this grammar element reference
166 if (follow.Member(TokenTypes.EndOfRule)) {
168 follow = follow
616 RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) argument
648 RecoverFromMismatchedSet(IIntStream input, RecognitionException e, BitSet follow) argument
697 GetMissingSymbol(IIntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DParser.java62 BitSet follow)
59 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
H A DBaseRecognizer.java98 * to the set of symbols that can follow rule ref.
100 public Object match(IntStream input, int ttype, BitSet follow) argument
115 matchedSymbol = recoverFromMismatchedToken(input, ttype, follow);
130 public boolean mismatchIsMissingToken(IntStream input, BitSet follow) { argument
131 if ( follow==null ) {
132 // we have no information about the follow; we can only consume
136 // compute what can follow this grammar element reference
137 if ( follow.member(Token.EOR_TOKEN_TYPE) ) {
139 follow = follow
588 recoverFromMismatchedToken(IntStream input, int ttype, BitSet follow) argument
622 recoverFromMismatchedSet(IntStream input, RecognitionException e, BitSet follow) argument
667 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c38 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
48 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
174 mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
177 recognizer->recoverFromMismatchedToken(recognizer, ttype, follow);
205 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow)
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.c54 static void * match (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
56 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
58 static ANTLR3_BOOLEAN mismatchIsMissingToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow);
64 static void * recoverFromMismatchedToken (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
65 static void * recoverFromMismatchedSet (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_BITSET_LIST follow);
66 static ANTLR3_BOOLEAN recoverFromMismatchedElement(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_BITSET_LIST follow);
80 ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow);
412 /// symbols that can follow rule ref.
416 ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow)
478 matchedSymbol = recognizer->recoverFromMismatchedToken(recognizer, ttype, follow);
415 match( pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
552 mismatchIsMissingToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow) argument
642 mismatch(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
1432 recoverFromMismatchedToken(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) argument
1555 recoverFromMismatchedSet(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_BITSET_LIST follow) argument
1622 pANTLR3_BITSET follow; local
2165 getMissingSymbol(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, ANTLR3_UINT32 expectedTokenType, pANTLR3_BITSET_LIST follow) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeParser.cs102 BitSet follow) {
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/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeParser.java87 BitSet follow)
89 Object o = super.getMissingSymbol(input, e, expectedTokenType, follow);
84 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
/external/e2fsprogs/lib/ext2fs/
H A Dnamei.c26 const char *pathname, size_t pathlen, int follow,
122 const char *pathname, size_t pathlen, int follow,
144 if (follow) {
121 open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base, const char *pathname, size_t pathlen, int follow, int link_count, char *buf, ext2_ino_t *res_inode) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs97 BitSet follow) {
145 protected override object RecoverFromMismatchedToken(IIntStream input, int ttype, BitSet follow) { argument
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.java88 BitSet follow)
132 BitSet follow)
85 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
130 recoverFromMismatchedToken(IntStream input, int ttype, BitSet follow) argument
/external/svox/pico/lib/
H A Dpicobase.c57 picoos_uint8 follow; local
63 follow = 0;
65 if (follow > 0) {
68 follow--;
77 follow = 3;
80 follow = 2;
83 follow = 1;
/external/skia/src/core/
H A DSkDevice.cpp352 Need differentially more subdivisions when the follow-path is curvy. Not sure how to
394 const SkPath& follow, const SkMatrix* matrix,
404 SkPathMeasure meas(follow, false);
393 drawTextOnPath(const void* text, size_t byteLength, const SkPath& follow, const SkMatrix* matrix, const SkPaint& paint) argument
/external/curl/lib/
H A Dmulti.c1665 followtype follow=FOLLOW_NONE; local
1685 follow = FOLLOW_RETRY;
1686 drc = Curl_follow(data, newurl, follow);
1893 followtype follow=FOLLOW_NONE; local
1908 /* When we follow redirects or is set to retry the connection, we must
1912 /* if the URL is a follow-location and not just a retried request
1917 follow = FOLLOW_REDIR;
1920 follow = FOLLOW_RETRY;
1923 result = Curl_follow(data, newurl, follow);
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp677 bool follow(const SCEV *S) { function in struct:FindSCEVSize
3323 bool follow(const SCEV *S) {
3353 bool follow(const SCEV *S) {
4085 bool follow(const SCEV *S) {
4214 // If the PHI has a single incoming value, follow that value, unless the
6551 assert(Latch && "Should follow from NumIncomingValues == 2!");
8909 bool follow(const SCEV *S) {
8947 bool follow(const SCEV *S) {
8962 bool follow(const SCEV *S) {
8985 bool follow(cons
[all...]
H A DScalarEvolutionExpander.cpp678 // Sort by loop. Use a stable sort so that constants follow non-constants and
746 // Sort by loop. Use a stable sort so that constants follow non-constants.
2184 bool follow(const SCEV *S) { function in struct:__anon12500::SCEVFindUnsafe
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1599 void follow(const SUnit *SU) { function in class:__anon12619::SchedDAGReverseDFS
1643 DFS.follow(SU);
1660 DFS.follow(PredDep.getSUnit());
/external/kernel-headers/original/uapi/linux/
H A Dcoda.h3 follow at your discretion.
724 int follow; member in struct:PioctlData
/external/libopus/celt/
H A Dcelt_encoder.c1713 opus_val16 follow=-QCONST16(10.0f,DB_SHIFT); local
1718 follow = MAX16(follow-QCONST16(1.f, DB_SHIFT), bandLogE[i]-offset);
1720 follow = MAX16(follow, bandLogE[i+nbEBands]-offset);
1721 frame_avg += follow;
/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/guice/extensions/persist/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 820 milliseconds

12