HomeSort by relevance Sort by last modified time
    Searched refs:ANTLR3_UCHAR (Results 1 - 12 of 12) sorted by null

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3encodings.c 44 /// \return ANTLR3_UCHAR encoding of the character.
47 ANTLR3_UCHAR antlr3c8toAntlrc(ANTLR3_INT8 inc)
49 return (ANTLR3_UCHAR)(inc);
antlr3inputstream.c 43 static ANTLR3_UCHAR antlr38BitLA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
44 static ANTLR3_UCHAR antlr38BitLA_ucase (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
75 static ANTLR3_UCHAR antlr3UTF16LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
77 static ANTLR3_UCHAR antlr3UTF16LALE (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
79 static ANTLR3_UCHAR antlr3UTF16LABE (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
93 static ANTLR3_UCHAR antlr3UTF32LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
94 static ANTLR3_UCHAR antlr3UTF32LALE (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
95 static ANTLR3_UCHAR antlr3UTF32LABE (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
107 static ANTLR3_UCHAR antlr3UTF8LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la);
112 static ANTLR3_UCHAR antlr3EBCDICLA (pANTLR3_INT_STREAM is, ANTLR3_INT32 la)
    [all...]
antlr3string.c 80 static ANTLR3_UCHAR charAt8 (pANTLR3_STRING string, ANTLR3_UINT32 offset);
81 static ANTLR3_UCHAR charAtUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 offset);
    [all...]
antlr3lexer.c 49 static ANTLR3_BOOLEAN matchs (pANTLR3_LEXER lexer, ANTLR3_UCHAR * string);
50 static ANTLR3_BOOLEAN matchc (pANTLR3_LEXER lexer, ANTLR3_UCHAR c);
51 static ANTLR3_BOOLEAN matchRange (pANTLR3_LEXER lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high);
727 matchs(pANTLR3_LEXER lexer, ANTLR3_UCHAR * string)
770 matchc(pANTLR3_LEXER lexer, ANTLR3_UCHAR c)
810 matchRange(pANTLR3_LEXER lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high)
812 ANTLR3_UCHAR c;
antlr3debughandlers.c 368 ANTLR3_UCHAR character;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3lexer.h 142 * stream. Note that strings muse be passed as terminated arrays of ANTLR3_UCHAR. Strings are terminated
145 ANTLR3_BOOLEAN (*matchs) (struct ANTLR3_LEXER_struct * lexer, ANTLR3_UCHAR * string);
152 ANTLR3_BOOLEAN (*matchc) (struct ANTLR3_LEXER_struct * lexer, ANTLR3_UCHAR c);
158 ANTLR3_BOOLEAN (*matchRange) (struct ANTLR3_LEXER_struct * lexer, ANTLR3_UCHAR low, ANTLR3_UCHAR high);
antlr3exception.h 167 ANTLR3_UCHAR c;
antlr3input.h 168 * memory and is in same encoding as the input stream itself, NOT internal ANTLR3_UCHAR form.
222 ANTLR3_UCHAR newlineChar;
antlr3string.h 173 ANTLR3_UCHAR (*charAt) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 offset);
antlr3defs.h 158 typedef UINT32 ANTLR3_UCHAR, *pANTLR3_UCHAR;
177 typedef uint32_t ANTLR3_UCHAR, *pANTLR3_UCHAR;
395 typedef uint32_t ANTLR3_UCHAR, *pANTLR3_UCHAR;
553 ANTLR3_API ANTLR3_UCHAR antlr3c8toAntlrc (ANTLR3_INT8 inc);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 164 <literals:{it | static ANTLR3_UCHAR lit_<i>[] = <it>;}; separator="\n">
305 # define LA(n) ((NEXTCHAR + n) > (DATAP + INPUT->sizeBuf) ? ANTLR3_CHARSTREAM_EOF : (ANTLR3_UCHAR)(*(NEXTCHAR + n - 1)))
311 if ((ANTLR3_UCHAR)(*NEXTCHAR) == INPUT->newlineChar) \\
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ObjC.stg 140 <literals:{it | static ANTLR3_UCHAR lit_<i>[] = <it>;}; separator="\n">
    [all...]

Completed in 216 milliseconds