• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/

Lines Matching refs:pANTLR3_STRING

38 static    pANTLR3_STRING    newRaw8	(pANTLR3_STRING_FACTORY factory);
39 static pANTLR3_STRING newRaw16 (pANTLR3_STRING_FACTORY factory);
40 static pANTLR3_STRING newSize8 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
41 static pANTLR3_STRING newSize16 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size);
42 static pANTLR3_STRING newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
43 static pANTLR3_STRING newPtr16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
44 static pANTLR3_STRING newPtr16_16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size);
45 static pANTLR3_STRING newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
46 static pANTLR3_STRING newStr16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string);
47 static pANTLR3_STRING newStr16_16 (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 printable16 (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string);
55 static pANTLR3_UINT8 set8 (pANTLR3_STRING string, const char * chars);
56 static pANTLR3_UINT8 set16_8 (pANTLR3_STRING string, const char * chars);
57 static pANTLR3_UINT8 set16_16 (pANTLR3_STRING string, const char * chars);
58 static pANTLR3_UINT8 append8 (pANTLR3_STRING string, const char * newbit);
59 static pANTLR3_UINT8 append16_8 (pANTLR3_STRING string, const char * newbit);
60 static pANTLR3_UINT8 append16_16 (pANTLR3_STRING string, const char * newbit);
61 static pANTLR3_UINT8 insert8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit);
62 static pANTLR3_UINT8 insert16_8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit);
63 static pANTLR3_UINT8 insert16_16 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit);
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 newbit);
69 static pANTLR3_UINT8 addc8 (pANTLR3_STRING string, ANTLR3_UINT32 c);
70 static pANTLR3_UINT8 addc16 (pANTLR3_STRING string, ANTLR3_UINT32 c);
71 static pANTLR3_UINT8 addi8 (pANTLR3_STRING string, ANTLR3_INT32 i);
72 static pANTLR3_UINT8 addi16 (pANTLR3_STRING string, ANTLR3_INT32 i);
73 static pANTLR3_UINT8 inserti8 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i);
74 static pANTLR3_UINT8 inserti16 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i);
76 static ANTLR3_UINT32 compare8 (pANTLR3_STRING string, const char * compStr);
77 static ANTLR3_UINT32 compare16_8 (pANTLR3_STRING string, const char * compStr);
78 static ANTLR3_UINT32 compare16_16(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 charAt16 (pANTLR3_STRING string, ANTLR3_UINT32 offset);
82 static pANTLR3_STRING subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
83 static pANTLR3_STRING subString16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex);
84 static ANTLR3_INT32 toInt32_8 (pANTLR3_STRING string);
85 static ANTLR3_INT32 toInt32_16 (pANTLR3_STRING string);
86 static pANTLR3_STRING to8_8 (pANTLR3_STRING string);
87 static pANTLR3_STRING to8_16 (pANTLR3_STRING string);
88 static pANTLR3_STRING toUTF8_8 (pANTLR3_STRING string);
89 static pANTLR3_STRING toUTF8_16 (pANTLR3_STRING string);
93 static void stringInit8 (pANTLR3_STRING string);
94 static void stringInit16 (pANTLR3_STRING string);
95 static void ANTLR3_CDECL stringFree (pANTLR3_STRING string);
179 static pANTLR3_STRING
182 pANTLR3_STRING string;
184 string = (pANTLR3_STRING) ANTLR3_MALLOC(sizeof(ANTLR3_STRING));
208 static pANTLR3_STRING
211 pANTLR3_STRING string;
213 string = (pANTLR3_STRING) ANTLR3_MALLOC(sizeof(ANTLR3_STRING));
233 void ANTLR3_CDECL stringFree (pANTLR3_STRING string)
254 stringInit8 (pANTLR3_STRING string)
291 stringInit16 (pANTLR3_STRING string)
329 stringInitUTF8 (pANTLR3_STRING string)
342 static pANTLR3_STRING
343 toUTF8_8 (pANTLR3_STRING string)
353 static pANTLR3_STRING
354 toUTF8_16 (pANTLR3_STRING string)
359 pANTLR3_STRING utf8String;
414 static pANTLR3_STRING
417 pANTLR3_STRING string;
442 static pANTLR3_STRING
445 pANTLR3_STRING string;
469 static pANTLR3_STRING
472 pANTLR3_STRING string;
502 static pANTLR3_STRING
505 pANTLR3_STRING string;
550 static pANTLR3_STRING
553 pANTLR3_STRING string;
585 static pANTLR3_STRING
596 static pANTLR3_STRING
607 static pANTLR3_STRING
626 destroy (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string)
661 ((pANTLR3_STRING)(factory->strings->elements[i].element))->index = i;
670 static pANTLR3_STRING
671 printable8(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr)
673 pANTLR3_STRING string;
717 static pANTLR3_STRING
718 printable16(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr)
720 pANTLR3_STRING string;
789 append8 (pANTLR3_STRING string, const char * newbit)
810 append16_8 (pANTLR3_STRING string, const char * newbit)
837 append16_16 (pANTLR3_STRING string, const char * newbit)
867 set8 (pANTLR3_STRING string, const char * chars)
888 set16_8 (pANTLR3_STRING string, const char * chars)
913 set16_16 (pANTLR3_STRING string, const char * chars)
944 addc8 (pANTLR3_STRING string, ANTLR3_UINT32 c)
959 addc16 (pANTLR3_STRING string, ANTLR3_UINT32 c)
978 addi8 (pANTLR3_STRING string, ANTLR3_INT32 i)
987 addi16 (pANTLR3_STRING string, ANTLR3_INT32 i)
997 inserti8 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i)
1005 inserti16 (pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i)
1014 insert8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit)
1050 insert16_8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit)
1090 insert16_16 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit)
1135 static pANTLR3_UINT8 setS (pANTLR3_STRING string, pANTLR3_STRING chars)
1140 static pANTLR3_UINT8 appendS (pANTLR3_STRING string, pANTLR3_STRING newbit)
1154 static pANTLR3_UINT8 insertS (pANTLR3_STRING string, ANTLR3_UINT32 point, pANTLR3_STRING newbit)
1163 compare8 (pANTLR3_STRING string, const char * compStr)
1173 compare16_8 (pANTLR3_STRING string, const char * compStr)
1202 compare16_16 (pANTLR3_STRING string, const char * compStr8)
1232 compareS (pANTLR3_STRING string, pANTLR3_STRING compStr)
1242 charAt8 (pANTLR3_STRING string, ANTLR3_UINT32 offset)
1258 charAt16 (pANTLR3_STRING string, ANTLR3_UINT32 offset)
1273 static pANTLR3_STRING
1274 subString8 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex)
1276 pANTLR3_STRING newStr;
1290 static pANTLR3_STRING
1291 subString16 (pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex)
1293 pANTLR3_STRING newStr;
1349 static pANTLR3_STRING to8_8 (pANTLR3_STRING string)
1359 static pANTLR3_STRING to8_16 (pANTLR3_STRING string)
1361 pANTLR3_STRING newStr;