OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_LA
(Results
1 - 8
of
8
) sorted by null
/external/antlr/antlr-3.4/runtime/C/include/
antlr3intstream.h
125
ANTLR3_UINT32 (*
_LA
) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_INT32 i);
/external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c
150
input->istream->
_LA
= antlr38BitLA; // Return the UTF32 character at offset n (1 based)
165
input->_LT = antlr38BitLT; // Same as
_LA
for 8 bit file
245
input->istream->
_LA
= antlr38BitLA_ucase;
251
input->istream->
_LA
= antlr38BitLA;
409
return (ANTLR3_FUNC_PTR(input->istream->
_LA
(input->istream, lt)));
734
input->istream->
_LA
= antlr3UTF16LA; // Return the UTF32 character at offset n (1 based)
741
input->istream->
_LA
= antlr3UTF16LALE; // Return the UTF32 character at offset n (1 based)
756
input->istream->
_LA
= antlr3UTF16LA; // Return the UTF32 character at offset n (1 based)
763
input->istream->
_LA
= antlr3UTF16LABE; // Return the UTF32 character at offset n (1 based)
[
all
...]
antlr3cyclicdfa.c
129
c = is->
_LA
(is, 1);
antlr3tokenstream.c
68
static ANTLR3_UINT32
_LA
(pANTLR3_INT_STREAM is, ANTLR3_INT32 i);
225
stream->tstream->istream->
_LA
= dbgLA;
311
stream->tstream->istream->
_LA
=
_LA
;
341
ts->istream->
_LA
= dbgLA;
800
_LA
(pANTLR3_INT_STREAM is, ANTLR3_INT32 i)
819
/// As per
_LA
() but for debug mode.
833
return
_LA
(is, i);
antlr3baserecognizer.c
337
ex->c = is->
_LA
(is, 1); /* Current input character */
453
if (is->
_LA
(is, 1) == ttype)
533
nextt = is->
_LA
(is, 2);
609
if ( followClone->isMember(followClone, is->
_LA
(is, 1))
[
all
...]
antlr3commontreenodestream.c
68
static ANTLR3_UINT32
_LA
(pANTLR3_INT_STREAM is, ANTLR3_INT32 i);
208
stream->tnstream->istream->
_LA
=
_LA
;
350
stream->tnstream->istream->
_LA
=
_LA
;
631
_LA
(pANTLR3_INT_STREAM is, ANTLR3_INT32 i)
antlr3lexer.c
256
if (istream->
_LA
(istream, 1) == ANTLR3_CHARSTREAM_EOF)
731
if (lexer->input->istream->
_LA
(lexer->input->istream, 1) != (*string))
772
if (lexer->input->istream->
_LA
(lexer->input->istream, 1) == c)
816
c = lexer->input->istream->
_LA
(lexer->input->istream, 1);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg
326
#define LA(n) INPUT->istream->
_LA
(INPUT->istream, n)
391
#define LA(n) INPUT->istream->
_LA
(ISTREAM, n)
464
#define LA(n) ISTREAM->
_LA
(ISTREAM, n)
[
all
...]
Completed in 141 milliseconds