Searched defs:is_token_break (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.cpp118 #define is_token_break(ch) (isspace(ch) || (ch) == ',') macro
144 while ((*cp) != '\0' && is_token_break(*cp)) cp++;
147 while ((*cp) != '\0' && !is_token_break(*cp) && (*cp) != ':') cp++;
158 while ((*cp) != '\0' && !is_token_break(*cp)) cp++;
212 #undef is_token_break macro

Completed in 32 milliseconds