Searched refs:strstr (Results 1 - 25 of 571) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/test/tst/common/funcs/
H A Dtst.strstr.d27 #pragma ident "@(#)tst.strstr.d 1.1 06/08/28 SMI"
37 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
40 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
43 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
46 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
49 printf("strstr(\"
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dstrstr.c25 __STDPP__directive pragma pp:hide strstr
27 #define strstr ______strstr
33 __STDPP__directive pragma pp:nohide strstr
35 #undef strstr
40 NoN(strstr)
49 strstr(register const char* s1, register const char* s2)
/macosx-10.10.1/WebKit2-7600.1.25/Platform/unix/
H A DEnvironmentUtilities.cpp62 char* match = strstr(componentStart, searchValueWithColon);
66 char* nextColon = strstr(componentStart, ":");
69 nextColon = strstr(componentStart + 1, ":");
83 match = strstr(componentStart, searchValueWithColon);
87 match = strstr(componentStart, searchValue);
91 match = strstr(match + 1, searchValue);
97 char* nextColon = strstr(componentStart, ":");
100 nextColon = strstr(componentStart + 1, ":");
/macosx-10.10.1/dtrace-147/test/tst/common/version/
H A Dtst.1.0.d36 int strstr;
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-error/
H A Dmain.c25 #include <string.h> // strstr()
40 if ( strstr(dlerror(), "image not found") == NULL ) {
51 if ( strstr(dlerror(), "failed with errno=13") == NULL ) {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/rpath-introspection/
H A Dmain.c42 if ( strstr(name, "libfoo.dylib") == 0 ) {
44 if ( strstr(name, "..") != NULL ) {
61 if ( strstr(info.dli_fname, "..") != NULL ) {
/macosx-10.10.1/dtrace-147/test/tst/common/safety/
H A Dtst.strstr.d27 #pragma ident "@(#)tst.strstr.d 1.1 06/08/28 SMI"
41 trace(strstr((char *)rand(), (char *)(rand() ^ vtimestamp)));
47 trace(strstr((char *)arg0, (char *)arg1));
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/image-state-dependents-initialized/
H A Dbar.c49 if ( (step == start) && (strstr(info[0].imageFilePath, "libbar.dylib") != NULL) )
51 else if ( (step == bar) && (strstr(info[0].imageFilePath, "libfoo.dylib") != NULL) )
53 else if ( (step == foo) && (strstr(info[0].imageFilePath, "/main") != NULL) )
72 bool isBar = (strstr(info[0].imageFilePath, "libbar.dylib") != NULL);
73 bool isFoo = (strstr(info[0].imageFilePath, "libfoo.dylib") != NULL);
74 bool isMain= (strstr(info[0].imageFilePath, "/main") != NULL);
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_LOCAL/
H A Dmain.c39 if ( strstr(msg, "RTLD_LOCAL") != NULL )
53 if ( strstr(msg, "foo") == NULL ) {
/macosx-10.10.1/Chess-310.6/sjeng/
H A Dpartner.c135 if ((strstr(input+6, "trade") != NULL) /* either an explicit trade request */
137 (strstr(input+6, "n") == NULL) &&
138 (strstr(input+6, "b") == NULL) &&
139 (strstr(input+6, "p") == NULL) &&
140 (strstr(input+6, "r") == NULL) &&
141 (strstr(input+6, "q") == NULL) &&
142 (strstr(input+6, "d") == NULL) &&
143 (strstr(input+6, "h") == NULL)))
164 else if (strstr(input+6, "+++") != NULL)
169 else if (strstr(inpu
[all...]
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dstrstr.c34 static char sccsid[] = "@(#)strstr.c 8.1 (Berkeley) 6/4/93";
37 __FBSDID("$FreeBSD: src/lib/libc/string/strstr.c,v 1.6 2009/02/03 17:58:20 danger Exp $");
45 strstr(const char *s, const char *find) function
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dstrstr.c1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
30 strstr (const char *s1, const char *s2) function
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/always-libSystem/
H A Dmain.c40 if ( strstr(name, "/libSystem.") != NULL ) {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_NOW/
H A Dmain.c44 if ( strstr(msg, "foo2") != NULL ) {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-codesign/
H A Dmain.c20 if ( strstr(msg, "signature") == NULL ) {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlsym-error/
H A Dmain.c48 if ( strstr(dlerror(), "handle") == NULL ) {
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/env-DYLD_FALLBACK_LIBRARY_PATH/
H A Dmain.c16 if ( strstr(info.dli_fname, argv[1]) != 0 ) {
/macosx-10.10.1/libarchive-30/libarchive/cpio/test/
H A Dtest_option_J_upper.c43 if (strstr(p, "compression not available") != NULL) {
H A Dtest_option_Z_upper.c43 if (strstr(p, "compression not available") != NULL) {
H A Dtest_option_lzma.c43 if (strstr(p, "compression not available") != NULL) {
H A Dtest_option_y.c43 if (strstr(p, "compression not available") != NULL) {
H A Dtest_option_z.c43 if (strstr(p, "compression not available") != NULL) {
/macosx-10.10.1/ntp-92/libntp/
H A Dstrstr.c34 * replacement for missing ANSI-C strstr function
37 char *strstr(a, b) function
/macosx-10.10.1/ruby-106/ruby/missing/
H A Dstrstr.c1 /* public domain rewrite of strstr(3) */
8 strstr(const char *haystack, const char *needle) function
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dstrstr.c2 * strstr.c --
4 * Source code for the "strstr" library routine.
12 * RCS: @(#) $Id: strstr.c,v 1.7 2007/04/16 13:36:34 dkf Exp $
23 * strstr --
40 strstr( function

Completed in 318 milliseconds

1234567891011>>