string            631 gtags-parser/php.c static STRBUF *string;			/* string */
string           1029 gtags-parser/php.c { strbuf_reset(string); BEGIN STRING; }
string           1035 gtags-parser/php.c 				debug_print("<S:%s>", strbuf_value(string));
string           1044 gtags-parser/php.c strbuf_puts(string, LEXTEXT);
string           1049 gtags-parser/php.c strbuf_putc(string, LEXTEXT[0]);
string           1055 gtags-parser/php.c { strbuf_reset(string); BEGIN LITERAL; }
string           1061 gtags-parser/php.c 				debug_print("<L:%s>", strbuf_value(string));
string           1070 gtags-parser/php.c strbuf_puts(string, LEXTEXT);
string           1075 gtags-parser/php.c strbuf_putc(string, LEXTEXT[0]);
string           1124 gtags-parser/php.c 					strbuf_puts(string, LEXTEXT);
string           1142 gtags-parser/php.c 					strbuf_puts(string, LEXTEXT);
string           2134 gtags-parser/php.c 	string = strbuf_open(0);
string           2148 gtags-parser/php.c 				PUT(strbuf_value(string), LEXLINENO, file);
string           2169 gtags-parser/php.c 					char *str = strbuf_value(string);
string           2224 gtags-parser/php.c 	strbuf_close(string);
string             70 libglibc/regex.c # define re_match(bufp, string, size, pos, regs) \
string             71 libglibc/regex.c 	__re_match (bufp, string, size, pos, regs)
string             72 libglibc/regex.c # define re_search(bufp, string, size, startpos, range, regs) \
string             73 libglibc/regex.c 	__re_search (bufp, string, size, startpos, range, regs)
string           1790 libglibc/regex.c #  define IS_CHAR_CLASS(string) __wctype (string)
string           1792 libglibc/regex.c #  define IS_CHAR_CLASS(string) wctype (string)
string           1797 libglibc/regex.c # define IS_CHAR_CLASS(string)						\
string           1798 libglibc/regex.c    (STREQ (string, "alpha") || STREQ (string, "upper")			\
string           1799 libglibc/regex.c     || STREQ (string, "lower") || STREQ (string, "digit")		\
string           1800 libglibc/regex.c     || STREQ (string, "alnum") || STREQ (string, "xdigit")		\
string           1801 libglibc/regex.c     || STREQ (string, "space") || STREQ (string, "print")		\
string           1802 libglibc/regex.c     || STREQ (string, "punct") || STREQ (string, "graph")		\
string           1803 libglibc/regex.c     || STREQ (string, "cntrl") || STREQ (string, "blank"))
string           3533 libglibc/regex.c re_search (bufp, string, size, startpos, range, regs)
string           3535 libglibc/regex.c      const char *string;
string           3539 libglibc/regex.c   return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
string           3794 libglibc/regex.c re_match (bufp, string, size, pos, regs)
string           3796 libglibc/regex.c      const char *string;
string           3800 libglibc/regex.c   int result = re_match_2_internal (bufp, NULL, 0, string, size,
string           5748 libglibc/regex.c regexec (preg, string, nmatch, pmatch, eflags)
string           5750 libglibc/regex.c     const char *string;
string           5758 libglibc/regex.c   int len = strlen (string);
string           5781 libglibc/regex.c   ret = re_search (&private_preg, string, len,
string            466 libglibc/regex.h   _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string,
string            481 libglibc/regex.h   _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string,
string             73 libutil/checkalloc.c check_strdup(const char *string)
string             75 libutil/checkalloc.c 	char *p = check_malloc(strlen(string) + 1);
string             76 libutil/checkalloc.c 	strcpy(p, string);
string            460 libutil/dbop.c dbop_putoption(DBOP *dbop, const char *key, const char *string)
string            464 libutil/dbop.c 	if (string)
string            465 libutil/dbop.c 		snprintf(buf, sizeof(buf), "%s %s", key, string);
string            113 libutil/gtagsop.c seekto(const char *string, int n)
string            115 libutil/gtagsop.c 	const char *p = string;
string             81 libutil/locatestring.c strincmp(const char *string, const char *pattern, size_t len)
string             86 libutil/locatestring.c 		s = tolower((unsigned char)*string++);
string            115 libutil/locatestring.c locatestring(const char *string, const char *pattern, int flag)
string            124 libutil/locatestring.c 	const char *pre = string;
string            131 libutil/locatestring.c 		if (strlen(string) == plen && !(*cmpfunc)(string, pattern, plen))
string            132 libutil/locatestring.c 			return (char *)string;
string            136 libutil/locatestring.c 	if (flag == MATCH_AT_LAST && (slen = strlen(string)) > plen)
string            137 libutil/locatestring.c 		string += (slen - plen);
string            138 libutil/locatestring.c 	for (; *string; string++) {
string            139 libutil/locatestring.c 		if (*string == c)
string            140 libutil/locatestring.c 			if (!(*cmpfunc)(string, pattern, plen)) {
string            141 libutil/locatestring.c 				p = string;
string             82 libutil/pool.c pool_strdup(POOL *pool, const char *string, int size)
string             85 libutil/pool.c 		size = strlen(string);
string             86 libutil/pool.c 	return obstack_copy0(&pool->obstack, string, size);
string             97 libutil/pool.c pool_strdup_withterm(POOL *pool, const char *string, int term)
string             99 libutil/pool.c 	const char *p = strchr(string, term);
string            100 libutil/pool.c 	int size = p ? p - string : strlen(string);
string            101 libutil/pool.c 	return obstack_copy0(&pool->obstack, string, size);
string            143 libutil/strhash.c strhash_strdup(STRHASH *sh, const char *string, int size)
string            145 libutil/strhash.c 	return pool_strdup(sh->pool, string, size);