Lines Matching defs:string

124 #define STRING(string,length)   { (string), (string)+(length), (string) }  argument
126 #define STRING_ASSIGN(value,string,length) \ argument
131 #define STRING_INIT(context,string,size) \ argument
140 #define STRING_DEL(context,string) \ argument
144 #define STRING_EXTEND(context,string) \ argument
152 #define CLEAR(context,string) \ argument
173 #define CHECK_AT(string,octet,offset) \ argument
180 #define CHECK(string,octet) CHECK_AT((string),(octet),0) argument
187 #define IS_ALPHA_AT(string,offset) \ argument
197 #define IS_ALPHA(string) IS_ALPHA_AT((string),0) argument
203 #define IS_DIGIT_AT(string,offset) \ argument
207 #define IS_DIGIT(string) IS_DIGIT_AT((string),0) argument
213 #define AS_DIGIT_AT(string,offset) \ argument
216 #define AS_DIGIT(string) AS_DIGIT_AT((string),0) argument
222 #define IS_HEX_AT(string,offset) \ argument
230 #define IS_HEX(string) IS_HEX_AT((string),0) argument
236 #define AS_HEX_AT(string,offset) \ argument
245 #define AS_HEX(string) AS_HEX_AT((string),0) argument
251 #define IS_ASCII_AT(string,offset) \ argument
254 #define IS_ASCII(string) IS_ASCII_AT((string),0) argument
260 #define IS_PRINTABLE_AT(string,offset) \ argument
278 #define IS_PRINTABLE(string) IS_PRINTABLE_AT((string),0) argument
284 #define IS_Z_AT(string,offset) CHECK_AT((string),'\0',(offset)) argument
286 #define IS_Z(string) IS_Z_AT((string),0) argument
292 #define IS_BOM_AT(string,offset) \ argument
297 #define IS_BOM(string) IS_BOM_AT(string,0) argument
303 #define IS_SPACE_AT(string,offset) CHECK_AT((string),' ',(offset)) argument
305 #define IS_SPACE(string) IS_SPACE_AT((string),0) argument
311 #define IS_TAB_AT(string,offset) CHECK_AT((string),'\t',(offset)) argument
313 #define IS_TAB(string) IS_TAB_AT((string),0) argument
319 #define IS_BLANK_AT(string,offset) \ argument
322 #define IS_BLANK(string) IS_BLANK_AT((string),0) argument
328 #define IS_BREAK_AT(string,offset) \ argument
340 #define IS_BREAK(string) IS_BREAK_AT((string),0) argument
342 #define IS_CRLF_AT(string,offset) \ argument
345 #define IS_CRLF(string) IS_CRLF_AT((string),0) argument
351 #define IS_BREAKZ_AT(string,offset) \ argument
354 #define IS_BREAKZ(string) IS_BREAKZ_AT((string),0) argument
360 #define IS_SPACEZ_AT(string,offset) \ argument
363 #define IS_SPACEZ(string) IS_SPACEZ_AT((string),0) argument
369 #define IS_BLANKZ_AT(string,offset) \ argument
372 #define IS_BLANKZ(string) IS_BLANKZ_AT((string),0) argument
378 #define WIDTH_AT(string,offset) \ argument
384 #define WIDTH(string) WIDTH_AT((string),0) argument
390 #define MOVE(string) ((string).pointer += WIDTH((string))) argument