nexttoken         128 gtags-parser/C.c 	while ((cc = nexttoken(interested, c_reserved_word)) != EOF) {
nexttoken         267 gtags-parser/C.c 			if ((c = nexttoken(interested, c_reserved_word)) != SYMBOL) {
nexttoken         274 gtags-parser/C.c 				while ((c = nexttoken("()", c_reserved_word)) != EOF && c != '\n' && c != /* ( */ ')')
nexttoken         293 gtags-parser/C.c 			while ((c = nexttoken(interested, c_reserved_word)) != EOF && c != '\n')
nexttoken         305 gtags-parser/C.c 			(void)nexttoken(interested, c_reserved_word);
nexttoken         310 gtags-parser/C.c 			c = nexttoken(interested, c_reserved_word);
nexttoken         322 gtags-parser/C.c 				c = nexttoken(interested, c_reserved_word);
nexttoken         327 gtags-parser/C.c 				for (; c != EOF; c = nexttoken(interested, c_reserved_word)) {
nexttoken         384 gtags-parser/C.c 					c = nexttoken("{}(),;", c_reserved_word);
nexttoken         394 gtags-parser/C.c 					c = nexttoken(interest_enum, c_reserved_word);
nexttoken         407 gtags-parser/C.c 						c = nexttoken(interest_enum, c_reserved_word);
nexttoken         409 gtags-parser/C.c 					for (; c != EOF; c = nexttoken(interest_enum, c_reserved_word)) {
nexttoken         465 gtags-parser/C.c 				while ((c = nexttoken("(),;", c_reserved_word)) != EOF) {
nexttoken         544 gtags-parser/C.c 	while ((c = nexttoken("()", c_reserved_word)) != EOF) {
nexttoken         577 gtags-parser/C.c 	while ((c = nexttoken("()", c_reserved_word)) != EOF) {
nexttoken         614 gtags-parser/C.c 	while ((c = nexttoken(",;[](){}=", c_reserved_word)) != EOF) {
nexttoken         682 gtags-parser/C.c 		else if ((cc = nexttoken(NULL, c_reserved_word)) == SYMBOL && !strcmp(token, "notdef"))
nexttoken         716 gtags-parser/C.c 	while ((cc = nexttoken(NULL, c_reserved_word)) != EOF && cc != '\n') {
nexttoken         106 gtags-parser/Cpp.c 	while ((cc = nexttoken(interested, cpp_reserved_word)) != EOF) {
nexttoken         154 gtags-parser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == CPP_NAMESPACE) {
nexttoken         155 gtags-parser/Cpp.c 				if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL) {
nexttoken         168 gtags-parser/Cpp.c 				if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL)
nexttoken         172 gtags-parser/Cpp.c 			while ((c = nexttoken(interested, cpp_reserved_word)) == '\n')
nexttoken         186 gtags-parser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL) {
nexttoken         265 gtags-parser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) != SYMBOL) {
nexttoken         272 gtags-parser/Cpp.c 				while ((c = nexttoken("()", cpp_reserved_word)) != EOF && c != '\n' && c != /* ( */ ')')
nexttoken         291 gtags-parser/Cpp.c 			while ((c = nexttoken(interested, cpp_reserved_word)) != EOF && c != '\n')
nexttoken         303 gtags-parser/Cpp.c 			(void)nexttoken(interested, cpp_reserved_word);
nexttoken         306 gtags-parser/Cpp.c 			if ((c = nexttoken(interested, cpp_reserved_word)) == SYMBOL)
nexttoken         313 gtags-parser/Cpp.c 			c = nexttoken(interested, cpp_reserved_word);
nexttoken         325 gtags-parser/Cpp.c 				c = nexttoken(interested, cpp_reserved_word);
nexttoken         330 gtags-parser/Cpp.c 				for (; c != EOF; c = nexttoken(interested, cpp_reserved_word)) {
nexttoken         361 gtags-parser/Cpp.c 				while ((c = nexttoken("<>", cpp_reserved_word)) != EOF) {
nexttoken         377 gtags-parser/Cpp.c 			while ((c = nexttoken(";{", /* } */ cpp_reserved_word)) != EOF) {
nexttoken         426 gtags-parser/Cpp.c 					c = nexttoken("{}(),;", cpp_reserved_word);
nexttoken         436 gtags-parser/Cpp.c 					c = nexttoken(interest_enum, cpp_reserved_word);
nexttoken         449 gtags-parser/Cpp.c 						c = nexttoken(interest_enum, cpp_reserved_word);
nexttoken         451 gtags-parser/Cpp.c 					for (; c != EOF; c = nexttoken(interest_enum, cpp_reserved_word)) {
nexttoken         507 gtags-parser/Cpp.c 				while ((c = nexttoken("(),;", cpp_reserved_word)) != EOF) {
nexttoken         586 gtags-parser/Cpp.c 	while ((c = nexttoken("()", cpp_reserved_word)) != EOF) {
nexttoken         616 gtags-parser/Cpp.c 	while ((c = nexttoken("()", cpp_reserved_word)) != EOF) {
nexttoken         649 gtags-parser/Cpp.c 		(void)nexttoken(";", NULL);
nexttoken         653 gtags-parser/Cpp.c 	while ((c = nexttoken(",;[](){}=", cpp_reserved_word)) != EOF) {
nexttoken         716 gtags-parser/Cpp.c 		else if ((cc = nexttoken(NULL, cpp_reserved_word)) == SYMBOL && !strcmp(token, "notdef"))
nexttoken         750 gtags-parser/Cpp.c 	while ((cc = nexttoken(NULL, cpp_reserved_word)) != EOF && cc != '\n') {
nexttoken          75 gtags-parser/java.c 	while ((c = nexttoken(interested, java_reserved_word)) != EOF) {
nexttoken          78 gtags-parser/java.c 			for (; c == SYMBOL && peekc(1) == '.'; c = nexttoken(interested, java_reserved_word)) {
nexttoken         141 gtags-parser/java.c 			if ((c = nexttoken(interested, java_reserved_word)) == SYMBOL) {
nexttoken         150 gtags-parser/java.c 			while ((c = nexttoken(interested, java_reserved_word)) == SYMBOL && peekc(1) == '.')
nexttoken         169 gtags-parser/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));