Searched defs:follow (Results 1 - 25 of 29) 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.c25 const char *pathname, size_t pathlen, int follow,
121 const char *pathname, size_t pathlen, int follow,
143 if (follow) {
120 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/ltrace/
H A Doptions.h45 int follow; /* trace child processes */ member in struct:options_t
/external/chromium-trace/catapult/third_party/webtest/webtest/
H A Dresponse.py92 def follow(self, **kw): member in class:TestResponse
94 If this response is a redirect, follow that redirect. It is an
100 "You can only follow redirect responses (not %s)"
218 printlog(' Skipped: cannot follow javascript:')
/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.cpp317 Need differentially more subdivisions when the follow-path is curvy. Not sure how to
359 const SkPath& follow, const SkMatrix* matrix,
369 SkPathMeasure meas(follow, false);
358 drawTextOnPath(const SkDraw& draw, const void* text, size_t byteLength, const SkPath& follow, const SkMatrix* matrix, const SkPaint& paint) argument
/external/chromium-trace/catapult/third_party/Paste/paste/
H A Dfixture.py614 def follow(self, **kw): member in class:TestResponse
616 If this request is a redirect, follow that redirect. It
621 "You can only follow redirect responses (not %s)"
738 printlog(' Skipped: cannot follow javascript:')
/external/curl/lib/
H A Dmulti.c1334 followtype follow=FOLLOW_NONE; local
1354 follow = FOLLOW_RETRY;
1355 drc = Curl_follow(data, newurl, follow);
1561 followtype follow=FOLLOW_NONE; local
1576 /* When we follow redirects or is set to retry the connection, we must
1580 /* if the URL is a follow-location and not just a retried request
1585 follow = FOLLOW_REDIR;
1588 follow = FOLLOW_RETRY;
1591 result = Curl_follow(data, newurl, follow);
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp675 bool follow(const SCEV *S) { function in struct:FindSCEVSize
3291 bool follow(const SCEV *S) {
3534 /// getPointerBase - Transitively follow the chain of pointer-type operands
3846 bool follow(const SCEV *S) {
3975 // If the PHI has a single incoming value, follow that value, unless the
6046 assert(Latch && "Should follow from NumIncomingValues == 2!");
8487 bool follow(const SCEV *S) {
8525 bool follow(const SCEV *S) {
8540 bool follow(const SCEV *S) {
8563 bool follow(cons
[all...]
H A DScalarEvolutionExpander.cpp682 // Sort by loop. Use a stable sort so that constants follow non-constants and
750 // Sort by loop. Use a stable sort so that constants follow non-constants.
1999 bool follow(const SCEV *S) { function in struct:__anon11732::SCEVFindUnsafe
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1574 void follow(const SUnit *SU) { function in class:__anon11839::SchedDAGReverseDFS
1618 DFS.follow(SU);
1635 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.c1640 opus_val16 follow=-QCONST16(10.0f,DB_SHIFT); local
1645 follow = MAX16(follow-QCONST16(1.f, DB_SHIFT), bandLogE[i]-offset);
1647 follow = MAX16(follow, bandLogE[i+nbEBands]-offset);
1648 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 ...

Completed in 801 milliseconds

12