HomeSort by relevance Sort by last modified time
    Searched refs:strpbrk (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /bionic/libc/upstream-openbsd/lib/libc/string/
strpbrk.c 1 /* $OpenBSD: strpbrk.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
37 strpbrk(const char *s1, const char *s2) function
  /external/libpcap/Win32/Src/
getservent.c 91 cp = strpbrk(p, "#\n");
96 p = strpbrk(p, " \t");
102 cp = strpbrk(p, ",/");
109 cp = strpbrk(cp, " \t");
119 cp = strpbrk(cp, " \t");
  /ndk/sources/host-tools/make-3.81/w32/
pathstuff.c 52 for (p = Path, etok = strpbrk(p, ":;");
54 etok = strpbrk(p, ":;"))
66 } else if ((*etok == ':') && (etok = strpbrk(etok+1, ":;"))) {
138 for (p = path, etok = strpbrk(p, ":;"), count = 0;
140 etok = strpbrk(p, ":;"))
146 } else if (etok = strpbrk(etok+1, ":;"))
173 for (p = path, etok = strpbrk(p, ":;");
175 etok = strpbrk(p, ":;")) {
183 } else if ((etok = strpbrk(etok+1, ":;")) == NULL)
  /bionic/libstdc++/include/
cstring 60 using ::strpbrk;
  /ndk/sources/cxx-stl/gabi++/include/
cstring 60 using ::strpbrk;
  /ndk/sources/cxx-stl/system/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cstring 58 using ::strpbrk;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cstring 58 using ::strpbrk;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cstring 60 using ::strpbrk;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cstring 60 using ::strpbrk;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pcrt32.h 30 #define _fstrpbrk strpbrk
  /system/extras/tests/bionic/libstdc++/
test_cstring.cpp 58 using std::strpbrk;
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 253 extern char *strpbrk (char const *__s, char const *__accept)
257 /* strpbrk() assumes the second argument is a list of single-byte characters.
261 # undef strpbrk macro
262 # define strpbrk(s,a) \ macro
263 (GL_LINK_WARNING ("strpbrk cannot work correctly on character strings " \
266 strpbrk (s, a))
269 # undef strpbrk macro
270 # define strpbrk(s,a) \ macro
271 (GL_LINK_WARNING ("strpbrk is unportable - " \
272 "use gnulib module strpbrk for portability"),
    [all...]
  /external/bison/lib/
w32spawn.h 157 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
159 bool quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 21 char *strpbrk(const char *s1, const char *s2);
91 char *t16(char *x) { return strpbrk(x, ""); }
93 // CHECK: strpbrk
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 64 #define strpbrk(_ss,_aa) VG_(strpbrk)((_ss),(_aa)) macro
  /development/ndk/platforms/android-3/include/
string.h 79 extern char* strpbrk(const char *, const char *);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
string.h 79 extern char* strpbrk(const char *, const char *);

Completed in 549 milliseconds

1 2 3 4 5 6 7