Lines Matching refs:pANTLR3_STRING_FACTORY
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);
51 static void closeFactory(pANTLR3_STRING_FACTORY factory);
97 ANTLR3_API pANTLR3_STRING_FACTORY
100 pANTLR3_STRING_FACTORY factory; in antlr3StringFactoryNew()
104 factory = (pANTLR3_STRING_FACTORY) ANTLR3_CALLOC(1, sizeof(ANTLR3_STRING_FACTORY)); in antlr3StringFactoryNew()
186 newRaw8 (pANTLR3_STRING_FACTORY factory) in newRaw8()
215 newRawUTF16 (pANTLR3_STRING_FACTORY factory) in newRawUTF16()
421 newSize8 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) in newSize8()
451 newSizeUTF16 (pANTLR3_STRING_FACTORY factory, ANTLR3_UINT32 size) in newSizeUTF16()
481 newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) in newPtr8()
514 newPtrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) in newPtrUTF16_8()
562 newPtrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr, ANTLR3_UINT32 size) in newPtrUTF16_UTF16()
597 newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) in newStr8()
608 newStrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) in newStrUTF16_8()
619 newStrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 ptr) in newStrUTF16_UTF16()
637 destroy (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string) in destroy()
682 printable8(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) in printable8()
729 printableUTF16(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING instr) in printableUTF16()
787 closeFactory (pANTLR3_STRING_FACTORY factory) in closeFactory()