Lines Matching defs:string

125 #define STRING(string,length)   { (string), (string)+(length), (string) }  argument
127 #define STRING_ASSIGN(value,string,length) \ argument
132 #define STRING_INIT(context,string,size) \ argument
141 #define STRING_DEL(context,string) \ argument
145 #define STRING_EXTEND(context,string) \ argument
153 #define CLEAR(context,string) \ argument
174 #define CHECK_AT(string,octet,offset) \ argument
181 #define CHECK(string,octet) (CHECK_AT((string),(octet),0)) argument
188 #define IS_ALPHA_AT(string,offset) \ argument
198 #define IS_ALPHA(string) IS_ALPHA_AT((string),0) argument
204 #define IS_DIGIT_AT(string,offset) \ argument
208 #define IS_DIGIT(string) IS_DIGIT_AT((string),0) argument
214 #define AS_DIGIT_AT(string,offset) \ argument
217 #define AS_DIGIT(string) AS_DIGIT_AT((string),0) argument
223 #define IS_HEX_AT(string,offset) \ argument
231 #define IS_HEX(string) IS_HEX_AT((string),0) argument
237 #define AS_HEX_AT(string,offset) \ argument
246 #define AS_HEX(string) AS_HEX_AT((string),0) argument
252 #define IS_ASCII_AT(string,offset) \ argument
255 #define IS_ASCII(string) IS_ASCII_AT((string),0) argument
261 #define IS_PRINTABLE_AT(string,offset) \ argument
279 #define IS_PRINTABLE(string) IS_PRINTABLE_AT((string),0) argument
285 #define IS_Z_AT(string,offset) CHECK_AT((string),'\0',(offset)) argument
287 #define IS_Z(string) IS_Z_AT((string),0) argument
293 #define IS_BOM_AT(string,offset) \ argument
298 #define IS_BOM(string) IS_BOM_AT(string,0) argument
304 #define IS_SPACE_AT(string,offset) CHECK_AT((string),' ',(offset)) argument
306 #define IS_SPACE(string) IS_SPACE_AT((string),0) argument
312 #define IS_TAB_AT(string,offset) CHECK_AT((string),'\t',(offset)) argument
314 #define IS_TAB(string) IS_TAB_AT((string),0) argument
320 #define IS_BLANK_AT(string,offset) \ argument
323 #define IS_BLANK(string) IS_BLANK_AT((string),0) argument
329 #define IS_BREAK_AT(string,offset) \ argument
341 #define IS_BREAK(string) IS_BREAK_AT((string),0) argument
343 #define IS_CRLF_AT(string,offset) \ argument
346 #define IS_CRLF(string) IS_CRLF_AT((string),0) argument
352 #define IS_BREAKZ_AT(string,offset) \ argument
355 #define IS_BREAKZ(string) IS_BREAKZ_AT((string),0) argument
361 #define IS_SPACEZ_AT(string,offset) \ argument
364 #define IS_SPACEZ(string) IS_SPACEZ_AT((string),0) argument
370 #define IS_BLANKZ_AT(string,offset) \ argument
373 #define IS_BLANKZ(string) IS_BLANKZ_AT((string),0) argument
379 #define WIDTH_AT(string,offset) \ argument
385 #define WIDTH(string) WIDTH_AT((string),0) argument
391 #define MOVE(string) ((string).pointer += WIDTH((string))) argument