Searched refs:substring (Results 1 - 20 of 20) sorted by relevance

/freebsd-10.3-release/contrib/texinfo/lib/
H A Dsubstring.c0 /* substring.c -- extract substring.
2 $Id: substring.c,v 1.2 2004/04/11 17:56:46 karl Exp $
23 substring (const char *start, const char *end) function
H A Dsystem.h32 /* MiKTeX defines substring() in a separate DLL, where it has its
35 extern char *substring (const char *, const char *);
/freebsd-10.3-release/gnu/usr.bin/texinfo/libtxi/
H A DMakefile6 SRCS= substring.c xexit.c xmalloc.c xstrdup.c
/freebsd-10.3-release/contrib/libarchive/tar/test/
H A Dtest_help.c34 in_first_line(const char *p, const char *substring) argument
36 size_t l = strlen(substring);
39 if (memcmp(p, substring, l) == 0)
/freebsd-10.3-release/contrib/libarchive/cpio/test/
H A Dtest_option_help.c34 in_first_line(const char *p, const char *substring) argument
36 size_t l = strlen(substring);
39 if (memcmp(p, substring, l) == 0)
/freebsd-10.3-release/contrib/bmake/
H A Dstr.c280 * Str_FindSubstring -- See if a string contains a particular substring.
284 * substring Substring to find in string.
286 * Results: If string contains substring, the return value is the location of
287 * the first matching instance of substring in string. If string doesn't
288 * contain substring, the return value is NULL. Matching is done on an exact
294 Str_FindSubstring(const char *string, const char *substring) argument
301 * substring.
304 for (b = substring; *string != 0; string += 1) {
314 b = substring;
349 * any substring
[all...]
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DGetopt.java125 Character.toString(c) : optstr.substring(2)));
224 longoptarg.set(opt.substring(op + 1));
375 ? ((cp = parselong(optstring, args[optind].substring(2),
418 optarg = args[optind++].substring(_sp + 1);
H A DJDTrace.java138 buf.append(req.s.substring(prev_i, i));
151 buf.append(req.s.substring(i));
379 out.printf("|%s%s %-9d\n", ATS.substring(len - depth),
380 SPACES.substring(depth), val);
388 out.printf("%s%s| %-9d\n", SPACES.substring(depth),
389 ATS.substring(len - depth), val);
401 String ats = ATS.substring(len);
402 String spaces = SPACES.substring(len);
408 out.printf("%s%s|%s %-9d\n", spaces.substring(depth),
409 ats.substring(le
[all...]
/freebsd-10.3-release/usr.bin/locale/
H A Dlocale.c58 void showkeywordslist(char *substring);
663 showkeywordslist(char *substring) argument
669 if (substring == NULL)
673 substring);
677 if (substring != NULL) {
678 if (strncmp(kwinfo[i].name, substring,
679 strlen(substring)) != 0)
/freebsd-10.3-release/contrib/groff/src/include/
H A Dstringclass.h61 string substring(int i, int n) const;
180 inline string string::substring(int i, int n) const function in class:string
/freebsd-10.3-release/contrib/subversion/subversion/svn/
H A Dutil.c292 char *substring = buffer;
303 substring = strstr(substring, prefix);
304 if (! substring)
310 if ((substring == buffer)
311 || (*(substring - 1) == '\r')
312 || (*(substring - 1) == '\n'))
314 *substring = '\0';
316 *new_len = substring - buffer;
318 else if (substring)
290 char *substring = buffer; local
[all...]
/freebsd-10.3-release/contrib/texinfo/makeinfo/
H A Dsectioning.c496 toc_add_entry (substring (starting_pos, ending_pos - 1),
539 toc_anchor = substring (starting_pos + sizeof (a_name) - 1,
590 toc_add_entry (substring (starting_pos, ending_pos),
H A Ddefun.c224 accumulate_token (&accumulator, substring (token_start, token_end));
H A Dmulti.c125 template = substring (start + 1, *params - 1); /* omit braces */
/freebsd-10.3-release/contrib/gdb/gdb/
H A Df-exp.y288 arglist : substring
296 substring: exp ':' exp %prec ABOVE_COMMA
295 substring: exp ':' exp %prec ABOVE_COMMA label
/freebsd-10.3-release/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp189 std::string substring = text_string.substr (start, sub_len); local
190 fprintf (out, "%*s%s\n", indent, "", substring.c_str());
/freebsd-10.3-release/contrib/binutils/
H A DMakefile.tpl1465 (substring (get var-name) 0 (+ 1 (string-index (get var-name) #\-)))))
1470 (substring (get var-name) (+ 1 (string-index (get var-name) #\-)))))
/freebsd-10.3-release/contrib/ee/
H A Dee.c337 char *is_in_string P_((char *string, char *substring));
4856 is_in_string(string, substring) /* a strchr() look-alike for systems without
4858 char * string, *substring;
4862 for (sub = substring; (sub != NULL) && (*sub != '\0'); sub++)
/freebsd-10.3-release/contrib/groff/src/devices/grohtml/
H A Dpost-html.cpp1401 if ((i+1<str.length()) && (str.substring(i, 2) == string("\\("))) {
1405 while ((i+1<str.length()) && (str.substring(i, 2) != string("\\)"))) {
1409 if ((i+1<str.length()) && (str.substring(i, 2) == string("\\)")))
1414 string troff_charname = str.substring(a, n-a);
/freebsd-10.3-release/contrib/groff/src/preproc/tbl/
H A Dtable.cpp1488 char *s = str.substring(2, str.length() - 2).extract();

Completed in 185 milliseconds