• Home
  • Raw
  • Download

Lines Matching refs:pANTLR3_STRING

38 static    pANTLR3_STRING    newRaw8	(pANTLR3_STRING_FACTORY factory);
39 static pANTLR3_STRING newRawUTF16 (pANTLR3_STRING_FACTORY factory);
40 static pANTLR3_STRING newSize8 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
41 static pANTLR3_STRING newSizeUTF16 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
42 static pANTLR3_STRING newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_U…
43 static pANTLR3_STRING newPtrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, AN…
44 static pANTLR3_STRING newPtrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string…
45 static pANTLR3_STRING newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
46 static pANTLR3_STRING newStrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
47 static pANTLR3_STRING newStrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string…
48 static void destroy (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string);
49 static pANTLR3_STRING printable8 (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string);
50 static pANTLR3_STRING printableUTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string);
55 static pANTLR3_UINT8 set8 (pANTLR3_STRING string, const char * chars);
56 static pANTLR3_UINT8 setUTF16_8 (pANTLR3_STRING string, const char * chars);
57 static pANTLR3_UINT8 setUTF16_UTF16 (pANTLR3_STRING string, const char * chars);
58 static pANTLR3_UINT8 append8 (pANTLR3_STRING string, const char * newbit);
59 static pANTLR3_UINT8 appendUTF16_8 (pANTLR3_STRING string, const char * newbit);
60 static pANTLR3_UINT8 appendUTF16_UTF16 (pANTLR3_STRING string, const char * newbit);
61 static pANTLR3_UINT8 insert8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit…
62 static pANTLR3_UINT8 insertUTF16_8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * …
63 static pANTLR3_UINT8 insertUTF16_UTF16 (pANTLR3_STRING string, ANTLR3_UINT32 point, const cha…
65 static pANTLR3_UINT8 setS (pANTLR3_STRING string, pANTLR3_STRING chars);
66 static pANTLR3_UINT8 appendS (pANTLR3_STRING string, pANTLR3_STRING newbit);
67 static pANTLR3_UINT8 insertS (pANTLR3_STRING string, ANTLR3_UINT32 point, pANTLR3_STRING newb…
69 static pANTLR3_UINT8 addc8 (pANTLR3_STRING string, ANTLR3_UINT32 c);
70 static pANTLR3_UINT8 addcUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 c);
71 static pANTLR3_UINT8 addi8 (pANTLR3_STRING string, ANTLR3_INT32 i);
72 static pANTLR3_UINT8 addiUTF16 (pANTLR3_STRING string, ANTLR3_INT32 i);
73 static pANTLR3_UINT8 inserti8 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i);
74 static pANTLR3_UINT8 insertiUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i…
76 static ANTLR3_UINT32 compare8 (pANTLR3_STRING string, const char * compStr);
77 static ANTLR3_UINT32 compareUTF16_8 (pANTLR3_STRING string, const char * compStr);
78 static ANTLR3_UINT32 compareUTF16_UTF16(pANTLR3_STRING string, const char * compStr);
79 static ANTLR3_UINT32 compareS (pANTLR3_STRING string, pANTLR3_STRING compStr);
80 static ANTLR3_UCHAR charAt8 (pANTLR3_STRING string, ANTLR3_UINT32 offset);
81 static ANTLR3_UCHAR charAtUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 offset);
82 static pANTLR3_STRING subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UIN…
83 static pANTLR3_STRING subStringUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3…
84 static ANTLR3_INT32 toInt32_8 (pANTLR3_STRING string);
85 static ANTLR3_INT32 toInt32_UTF16 (pANTLR3_STRING string);
86 static pANTLR3_STRING to8_8 (pANTLR3_STRING string);
87 static pANTLR3_STRING to8_UTF16 (pANTLR3_STRING string);
88 static pANTLR3_STRING toUTF8_8 (pANTLR3_STRING string);
89 static pANTLR3_STRING toUTF8_UTF16 (pANTLR3_STRING string);
93 static void stringInit8 (pANTLR3_STRING string);
94 static void stringInitUTF16 (pANTLR3_STRING string);
95 static void ANTLR3_CDECL stringFree (pANTLR3_STRING string);
185 static pANTLR3_STRING
188 pANTLR3_STRING string; in newRaw8()
190 string = (pANTLR3_STRING) ANTLR3_MALLOC(sizeof(ANTLR3_STRING)); in newRaw8()
214 static pANTLR3_STRING
217 pANTLR3_STRING string; in newRawUTF16()
219 string = (pANTLR3_STRING) ANTLR3_MALLOC(sizeof(ANTLR3_STRING)); in newRawUTF16()
239 void ANTLR3_CDECL stringFree (pANTLR3_STRING string) in stringFree()
260 stringInit8 (pANTLR3_STRING string) in stringInit8()
297 stringInitUTF16 (pANTLR3_STRING string) in stringInitUTF16()
335 stringInitUTF8 (pANTLR3_STRING string) in stringInitUTF8()
348 static pANTLR3_STRING
349 toUTF8_8 (pANTLR3_STRING string) in toUTF8_8()
359 static pANTLR3_STRING
360 toUTF8_UTF16 (pANTLR3_STRING string) in toUTF8_UTF16()
365 pANTLR3_STRING utf8String; in toUTF8_UTF16()
420 static pANTLR3_STRING
423 pANTLR3_STRING string; in newSize8()
448 static pANTLR3_STRING
451 pANTLR3_STRING string; in newSizeUTF16()
475 static pANTLR3_STRING
478 pANTLR3_STRING string; in newPtr8()
508 static pANTLR3_STRING
511 pANTLR3_STRING string; in newPtrUTF16_8()
556 static pANTLR3_STRING
559 pANTLR3_STRING string; in newPtrUTF16_UTF16()
591 static pANTLR3_STRING
602 static pANTLR3_STRING
613 static pANTLR3_STRING
632 destroy (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string) in destroy()
667 ((pANTLR3_STRING)(factory->strings->elements[i].element))->index = i; in destroy()
676 static pANTLR3_STRING
677 printable8(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) in printable8()
679 pANTLR3_STRING string; in printable8()
723 static pANTLR3_STRING
724 printableUTF16(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) in printableUTF16()
726 pANTLR3_STRING string; in printableUTF16()
795 append8 (pANTLR3_STRING string, const char * newbit) in append8()
816 appendUTF16_8 (pANTLR3_STRING string, const char * newbit) in appendUTF16_8()
843 appendUTF16_UTF16 (pANTLR3_STRING string, const char * newbit) in appendUTF16_UTF16()
873 set8 (pANTLR3_STRING string, const char * chars) in set8()
894 setUTF16_8 (pANTLR3_STRING string, const char * chars) in setUTF16_8()
919 setUTF16_UTF16 (pANTLR3_STRING string, const char * chars) in setUTF16_UTF16()
950 addc8 (pANTLR3_STRING string, ANTLR3_UINT32 c) in addc8()
965 addcUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 c) in addcUTF16()
984 addi8 (pANTLR3_STRING string, ANTLR3_INT32 i) in addi8()
993 addiUTF16 (pANTLR3_STRING string, ANTLR3_INT32 i) in addiUTF16()
1003 inserti8 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i) in inserti8()
1011 insertiUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i) in insertiUTF16()
1020 insert8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) in insert8()
1056 insertUTF16_8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) in insertUTF16_8()
1096 insertUTF16_UTF16 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) in insertUTF16_UTF16()
1141 static pANTLR3_UINT8 setS (pANTLR3_STRING string, pANTLR3_STRING chars) in setS()
1146 static pANTLR3_UINT8 appendS (pANTLR3_STRING string, pANTLR3_STRING newbit) in appendS()
1160 static pANTLR3_UINT8 insertS (pANTLR3_STRING string, ANTLR3_UINT32 point, pANTLR3_STRING newb… in insertS()
1169 compare8 (pANTLR3_STRING string, const char * compStr) in compare8()
1179 compareUTF16_8 (pANTLR3_STRING string, const char * compStr) in compareUTF16_8()
1208 compareUTF16_UTF16 (pANTLR3_STRING string, const char * compStr8) in compareUTF16_UTF16()
1238 compareS (pANTLR3_STRING string, pANTLR3_STRING compStr) in compareS()
1248 charAt8 (pANTLR3_STRING string, ANTLR3_UINT32 offset) in charAt8()
1264 charAtUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 offset) in charAtUTF16()
1279 static pANTLR3_STRING
1280 subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) in subString8()
1282 pANTLR3_STRING newStr; in subString8()
1296 static pANTLR3_STRING
1297 subStringUTF16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) in subStringUTF16()
1299 pANTLR3_STRING newStr; in subStringUTF16()
1355 static pANTLR3_STRING to8_8 (pANTLR3_STRING string) in to8_8()
1365 static pANTLR3_STRING to8_UTF16 (pANTLR3_STRING string) in to8_UTF16()
1367 pANTLR3_STRING newStr; in to8_UTF16()