nexttoken         120 libparser/C.c  	while ((cc = nexttoken(interested, c_reserved_word)) != EOF) {
nexttoken         245 libparser/C.c  			if ((c = nexttoken(interested, c_reserved_word)) != SYMBOL) {
nexttoken         251 libparser/C.c  				while ((c = nexttoken("()", c_reserved_word)) != EOF && c != '\n' && c != /* ( */ ')')
nexttoken         269 libparser/C.c  			while ((c = nexttoken(interested, c_reserved_word)) != EOF && c != '\n')
nexttoken         281 libparser/C.c  			(void)nexttoken(interested, c_reserved_word);
nexttoken         286 libparser/C.c  			while ((c = nexttoken(interested, c_reserved_word)) == '\n')
nexttoken         300 libparser/C.c  			while ((c = nexttoken(interested, c_reserved_word)) == C___ATTRIBUTE__)
nexttoken         308 libparser/C.c  				c = nexttoken(interested, c_reserved_word);
nexttoken         346 libparser/C.c  					c = nexttoken("{}(),;", c_reserved_word);
nexttoken         356 libparser/C.c  					while ((c = nexttoken(interest_enum, c_reserved_word)) == C___ATTRIBUTE__)
nexttoken         365 libparser/C.c  						c = nexttoken(interest_enum, c_reserved_word);
nexttoken         374 libparser/C.c  						for (; c != EOF; c = nexttoken(interest_enum, c_reserved_word)) {
nexttoken         414 libparser/C.c  				while ((c = nexttoken("(),;", c_reserved_word)) != EOF) {
nexttoken         488 libparser/C.c  	while ((c = nexttoken("()", c_reserved_word)) != EOF) {
nexttoken         515 libparser/C.c  	while ((c = nexttoken("()", c_reserved_word)) != EOF) {
nexttoken         546 libparser/C.c  	while ((c = nexttoken(",;[](){}=", c_reserved_word)) != EOF) {
nexttoken         607 libparser/C.c  		else if ((cc = nexttoken(NULL, c_reserved_word)) == SYMBOL && !strcmp(token, "notdef"))
nexttoken         641 libparser/C.c  	while ((cc = nexttoken(NULL, c_reserved_word)) != EOF && cc != '\n') {
nexttoken         657 libparser/C.c  	for (; c != EOF; c = nexttoken("{}(),=", c_reserved_word)) {
nexttoken          99 libparser/Cpp.c 	while ((cc = nexttoken(interested, cpp_reserved_word)) != EOF) {
nexttoken         136 libparser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == CPP_NAMESPACE) {
nexttoken         137 libparser/Cpp.c 				if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL) {
nexttoken         153 libparser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL) {
nexttoken         155 libparser/Cpp.c 				if ((c = nexttoken(interested, cpp_reserved_word)) == '=') {
nexttoken         174 libparser/Cpp.c 			while ((c = nexttoken(interested, cpp_reserved_word)) == '\n')
nexttoken         187 libparser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL) {
nexttoken         270 libparser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) != SYMBOL) {
nexttoken         276 libparser/Cpp.c 				while ((c = nexttoken("()", cpp_reserved_word)) != EOF && c != '\n' && c != /* ( */ ')')
nexttoken         294 libparser/Cpp.c 			while ((c = nexttoken(interested, cpp_reserved_word)) != EOF && c != '\n')
nexttoken         306 libparser/Cpp.c 			(void)nexttoken(interested, cpp_reserved_word);
nexttoken         309 libparser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL)
nexttoken         315 libparser/Cpp.c 			while ((c = nexttoken(interested, cpp_reserved_word)) == CPP___ATTRIBUTE__)
nexttoken         323 libparser/Cpp.c 				c = nexttoken(interested, cpp_reserved_word);
nexttoken         335 libparser/Cpp.c 				while ((c = nexttoken("<>", cpp_reserved_word)) != EOF) {
nexttoken         350 libparser/Cpp.c 			while ((c = nexttoken(";{", /* } */ cpp_reserved_word)) != EOF) {
nexttoken         398 libparser/Cpp.c 					c = nexttoken("{}(),;", cpp_reserved_word);
nexttoken         408 libparser/Cpp.c 					while ((c = nexttoken(interest_enum, cpp_reserved_word)) == CPP___ATTRIBUTE__)
nexttoken         417 libparser/Cpp.c 						c = nexttoken(interest_enum, cpp_reserved_word);
nexttoken         425 libparser/Cpp.c 						for (; c != EOF; c = nexttoken(interest_enum, cpp_reserved_word)) {
nexttoken         465 libparser/Cpp.c 				while ((c = nexttoken("(),;", cpp_reserved_word)) != EOF) {
nexttoken         539 libparser/Cpp.c 	while ((c = nexttoken("()", cpp_reserved_word)) != EOF) {
nexttoken         563 libparser/Cpp.c 	while ((c = nexttoken("()", cpp_reserved_word)) != EOF) {
nexttoken         589 libparser/Cpp.c 		(void)nexttoken(";", NULL);
nexttoken         593 libparser/Cpp.c 	while ((c = nexttoken(",;[](){}=", cpp_reserved_word)) != EOF) {
nexttoken         650 libparser/Cpp.c 		else if ((cc = nexttoken(NULL, cpp_reserved_word)) == SYMBOL && !strcmp(token, "notdef"))
nexttoken         684 libparser/Cpp.c 	while ((cc = nexttoken(NULL, cpp_reserved_word)) != EOF && cc != '\n') {
nexttoken         701 libparser/Cpp.c 	for (; c != EOF; c = nexttoken("{}(),=", cpp_reserved_word)) {
nexttoken          67 libparser/java.c 	while ((c = nexttoken(interested, java_reserved_word)) != EOF) {
nexttoken          70 libparser/java.c 			for (; c == SYMBOL && peekc(1) == '.'; c = nexttoken(interested, java_reserved_word)) {
nexttoken         130 libparser/java.c 			if ((c = nexttoken(interested, java_reserved_word)) == SYMBOL) {
nexttoken         138 libparser/java.c 			while ((c = nexttoken(interested, java_reserved_word)) == SYMBOL && peekc(1) == '.')
nexttoken         155 libparser/java.c 			if (peekc(1) == '.' && (c = nexttoken(interested, java_reserved_word)) != JAVA_CLASS)
nexttoken          53 libutil/token.h int nexttoken(const char *, int (*)(const char *, int));