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.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/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/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dactions.c624 Ins *follow = (Ins*) &i[1]; local
625 optimize(follow);
626 if(follow->i.tag == GOTO && follow->i.link == follow){
630 i->i.link = follow;
/external/smack/src/org/xbill/DNS/
H A DLookup.java385 follow(Name name, Name oldname) { method in class:Lookup
435 follow(cname.getTarget(), name);
439 follow(name.fromDNAME(dname), name);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
H A Dbin-objfmt.c136 /* Recurse to loop through follow groups */
152 /* Recurse to loop through follow groups */
181 bin_group *follow, *group_temp; local
182 TAILQ_FOREACH_SAFE(follow, &group->follow_groups, link, group_temp)
183 bin_group_destroy(follow);
398 /* Following sections have to follow this one,
460 /* Following sections have to follow this one,
606 /* Recurse to loop through follow groups */
642 /* Recurse to loop through follow groups */
730 /* Recurse to loop through follow group
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp714 // Sort by loop. Use a stable sort so that constants follow non-constants and
783 // Sort by loop. Use a stable sort so that constants follow non-constants.
1829 bool follow(const SCEV *S) { function in struct:__anon25704::SCEVFindUnsafe
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1421 void follow(const SUnit *SU) { function in class:__anon25797::SchedDAGReverseDFS
1465 DFS.follow(SU);
1482 DFS.follow(PredDep.getSUnit());
/external/chromium_org/third_party/opus/src/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/chromium_org/third_party/skia/src/core/
H A DSkDraw.cpp1892 Need differentially more subdivisions when the follow-path is curvy. Not sure how to
1934 const SkPath& follow, const SkMatrix* matrix,
1944 SkPathMeasure meas(follow, false);
1933 drawTextOnPath(const char text[], size_t byteLength, const SkPath& follow, const SkMatrix* matrix, const SkPaint& paint) const argument
/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/skia/src/core/
H A DSkDraw.cpp1879 Need differentially more subdivisions when the follow-path is curvy. Not sure how to
1921 const SkPath& follow, const SkMatrix* matrix,
1931 SkPathMeasure meas(follow, false);
1920 drawTextOnPath(const char text[], size_t byteLength, const SkPath& follow, const SkMatrix* matrix, const SkPaint& paint) const 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/ ...

Completed in 557 milliseconds

12