Home | History | Annotate | Download | only in include

Lines Matching defs:encoding

78     /** Occasionally it is useful to know what the encoding of the string
81 ANTLR3_UINT8 encoding;
83 /** Pointer to function that sets the string value to a specific string in the default encoding
85 * but if the encoding is UTF16, then the pointer is assumed to point to UTF16 characters, not
90 /** Pointer to function that sets the string value to a specific 8 bit string in the default encoding
92 * but if the encoding is UTF16, then the pointer is assumed to point to 8 bit characters that must
97 /** Pointer to function adds a raw char * type pointer in the default encoding
99 * but if the encoding is UTF16, then the pointer is assumed to point to UTF16 characters not
104 /** Pointer to function adds a raw char * type pointer in the default encoding
111 * offset in the current string in the default encoding for this string. For instance, if this is an 8
118 * offset in the current string in the default encoding for this string. For instance, if this is a UTF16 string
124 * same encoding.
129 * same encoding.
134 * offset in the current string. strings must be in the same encoding.
143 /** Pointer to function that adds a single character to the end of the string, in the encoding of the
159 * (which is assumed to be in the same encoding as the string itself) and returns a result
165 * (which is assumed to be in the same encoding as the string itself) and returns a result
186 /** Pointer to a function that yields an 8 bit string regardless of the encoding of the supplied
196 /// regardless of the current encoding of the string. Because there is currently no UTF8
229 * to point to characters in the same encoding as the string type, hence if this is a UTF16 string the
235 * point at 8 bit characters which must be converted on the fly to the encoding of the actual string.
240 * assumed to point to characters in the same encoding as the string itself, i.e. UTF16 if a UTF16
246 * point to 8 bit characters regardless of the actual encoding of the string. The 8 bit characters
247 * will be converted to the actual string encoding on the fly.