Searched refs:pANTLR3_INT_STREAM (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/
H A Dantlr3intstream.c4 /// \addtogroup pANTLR3_INT_STREAM
38 static void freeStream (pANTLR3_INT_STREAM stream);
40 ANTLR3_API pANTLR3_INT_STREAM
43 pANTLR3_INT_STREAM stream;
47 stream = (pANTLR3_INT_STREAM) ANTLR3_CALLOC(1, sizeof(ANTLR3_INT_STREAM));
60 freeStream (pANTLR3_INT_STREAM stream)
H A Dantlr3ucs2inputstream.c37 static void antlr3UCS2Consume (pANTLR3_INT_STREAM is);
38 static ANTLR3_UCHAR antlr3UCS2LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
39 static ANTLR3_MARKER antlr3UCS2Index (pANTLR3_INT_STREAM is);
40 static void antlr3UCS2Seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER seekPoint);
93 antlr3UCS2Consume(pANTLR3_INT_STREAM is)
128 antlr3UCS2LA(pANTLR3_INT_STREAM is, ANTLR3_INT32 la)
149 antlr3UCS2Index(pANTLR3_INT_STREAM is)
166 antlr3UCS2Seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER seekPoint)
H A Dantlr3inputstream.c39 static void antlr3AsciiConsume (pANTLR3_INT_STREAM is);
40 static ANTLR3_UCHAR antlr3AsciiLA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
41 static ANTLR3_UCHAR antlr3AsciiLA_ucase (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
42 static ANTLR3_MARKER antlr3AsciiIndex (pANTLR3_INT_STREAM is);
43 static ANTLR3_MARKER antlr3AsciiMark (pANTLR3_INT_STREAM is);
44 static void antlr3AsciiRewind (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
45 static void antlr3AsciiRewindLast (pANTLR3_INT_STREAM is);
46 static void antlr3AsciiRelease (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
47 static void antlr3AsciiSeek (pANTLR3_INT_STREAM is, ANTLR3_MARKER seekPoint);
48 static pANTLR3_STRING antlr3AsciiGetSourceName (pANTLR3_INT_STREAM i
[all...]
H A Dantlr3tokenstream.c65 static void consume (pANTLR3_INT_STREAM is);
66 static void dbgConsume (pANTLR3_INT_STREAM is);
67 static ANTLR3_UINT32 _LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i);
68 static ANTLR3_UINT32 dbgLA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i);
69 static ANTLR3_MARKER mark (pANTLR3_INT_STREAM is);
70 static ANTLR3_MARKER dbgMark (pANTLR3_INT_STREAM is);
71 static void release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
72 static ANTLR3_UINT32 size (pANTLR3_INT_STREAM is);
73 static ANTLR3_MARKER tindex (pANTLR3_INT_STREAM is);
74 static void rewindStream (pANTLR3_INT_STREAM i
[all...]
H A Dantlr3cyclicdfa.c79 antlr3dfapredict (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA cdfa)
193 antlr3dfaspecialStateTransition (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s)
201 antlr3dfaspecialTransition (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s)
H A Dantlr3treeparser.c46 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream);
47 static void * getMissingSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e,
189 getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream)
204 getMissingSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e,
H A Dantlr3commontreenodestream.c66 static void consume (pANTLR3_INT_STREAM is);
67 static ANTLR3_MARKER tindex (pANTLR3_INT_STREAM is);
68 static ANTLR3_UINT32 _LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i);
69 static ANTLR3_MARKER mark (pANTLR3_INT_STREAM is);
70 static void release (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
71 static void rewindMark (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
72 static void rewindLast (pANTLR3_INT_STREAM is);
73 static void seek (pANTLR3_INT_STREAM is, ANTLR3_MARKER index);
74 static ANTLR3_UINT32 size (pANTLR3_INT_STREAM is);
615 consume (pANTLR3_INT_STREAM i
[all...]
H A Dantlr3baserecognizer.c57 static ANTLR3_BOOLEAN mismatchIsUnwantedToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype);
58 static ANTLR3_BOOLEAN mismatchIsMissingToken (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow);
78 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream);
79 static void * getMissingSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e,
277 pANTLR3_INT_STREAM is;
420 pANTLR3_INT_STREAM is;
493 pANTLR3_INT_STREAM is;
529 mismatchIsUnwantedToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, ANTLR3_UINT32 ttype)
552 mismatchIsMissingToken(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, pANTLR3_BITSET_LIST follow)
646 pANTLR3_INT_STREAM i
[all...]
H A Dantlr3lexer.c62 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream);
63 static void * getMissingSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e,
874 getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream)
880 getMissingSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/include/
H A Dantlr3cyclicdfa.h71 ANTLR3_INT32 (*specialStateTransition) (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, struct ANTLR3_CYCLIC_DFA_struct * dfa, ANTLR3_INT32 s);
73 ANTLR3_INT32 (*specialTransition) (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, struct ANTLR3_CYCLIC_DFA_struct * dfa, ANTLR3_INT32 s);
75 ANTLR3_INT32 (*predict) (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, struct ANTLR3_CYCLIC_DFA_struct * dfa);
88 typedef ANTLR3_INT32 (*CDFA_SPECIAL_FUNC) (void * , pANTLR3_BASE_RECOGNIZER , pANTLR3_INT_STREAM , struct ANTLR3_CYCLIC_DFA_struct * , ANTLR3_INT32);
H A Dantlr3baserecognizer.h132 (*mismatchIsUnwantedToken) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, pANTLR3_INT_STREAM input, ANTLR3_UINT32 ttype);
139 (*mismatchIsMissingToken) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, pANTLR3_INT_STREAM input, pANTLR3_BITSET_LIST follow);
307 pANTLR3_INT_STREAM istream);
329 pANTLR3_INT_STREAM istream,
H A Dantlr3exception.h197 pANTLR3_INT_STREAM input;
H A Dantlr3input.h59 pANTLR3_INT_STREAM istream;
H A Dantlr3interfaces.h43 typedef struct ANTLR3_INT_STREAM_struct *pANTLR3_INT_STREAM; typedef in typeref:struct:ANTLR3_INT_STREAM_struct
H A Dantlr3commontreenodestream.h65 pANTLR3_INT_STREAM istream;
H A Dantlr3tokenstream.h114 pANTLR3_INT_STREAM istream;
H A Dantlr3defs.h535 ANTLR3_API pANTLR3_INT_STREAM antlr3IntStreamNew (void);
568 ANTLR3_API ANTLR3_INT32 antlr3dfaspecialTransition (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s);
569 ANTLR3_API ANTLR3_INT32 antlr3dfaspecialStateTransition (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA dfa, ANTLR3_INT32 s);
570 ANTLR3_API ANTLR3_INT32 antlr3dfapredict (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREAM is, pANTLR3_CYCLIC_DFA cdfa);

Completed in 377 milliseconds