Home
last modified time | relevance | path

Searched refs:MAX_NAME (Results 1 – 2 of 2) sorted by relevance

/trunk/main/vcl/unx/generic/fontmanager/
H A DparseAFM.cxx98 #define MATCH(A,B) (strncmp((A),(B), MAX_NAME) == 0)
270 static char ident[MAX_NAME]; /* storage buffer for keywords */ in token()
280 while( ch != -1 && ! is_delimiter_Array[ ch & 255 ] && idx < MAX_NAME-1 ) in token()
306 static char ident[MAX_NAME]; /* storage buffer for keywords */ in linetoken()
312 while (ch != -1 && ch != lineterm && ch != '\r' && idx < MAX_NAME-1 ) in linetoken()
H A DparseAFM.hxx97 #define MAX_NAME 4096 /* max length for identifiers */ macro