Home
last modified time | relevance | path

Searched refs:strpbrk (Results 1 – 14 of 14) sorted by relevance

/ndk/sources/host-tools/make-3.81/w32/
Dpathstuff.c52 for (p = Path, etok = strpbrk(p, ":;"); in convert_Path_to_windows32()
54 etok = strpbrk(p, ":;")) in convert_Path_to_windows32()
66 } else if ((*etok == ':') && (etok = strpbrk(etok+1, ":;"))) { in convert_Path_to_windows32()
138 for (p = path, etok = strpbrk(p, ":;"), count = 0; in convert_path_to_nutc()
140 etok = strpbrk(p, ":;")) in convert_path_to_nutc()
146 } else if (etok = strpbrk(etok+1, ":;")) in convert_path_to_nutc()
173 for (p = path, etok = strpbrk(p, ":;"); in convert_path_to_nutc()
175 etok = strpbrk(p, ":;")) { in convert_path_to_nutc()
183 } else if ((etok = strpbrk(etok+1, ":;")) == NULL) in convert_path_to_nutc()
/ndk/sources/host-tools/sed-4.2.1/lib/
Dstring.in.h253 extern char *strpbrk (char const *__s, char const *__accept)
261 # undef strpbrk
262 # define strpbrk(s,a) \ macro
266 strpbrk (s, a))
269 # undef strpbrk
270 # define strpbrk(s,a) \ macro
273 strpbrk (s, a))
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstring44 const char* strpbrk(const char* s1, const char* s2);
45 char* strpbrk( char* s1, const char* s2);
88 using ::strpbrk;
99 inline _LIBCPP_INLINE_VISIBILITY char* strpbrk( char* __s1, const char* __s2) {return ::
/ndk/tests/device/test-gnustl-full/unit/
Dcstring_test.cpp64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 ); in import_checks()
/ndk/tests/device/test-stlport/unit/
Dcstring_test.cpp64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 ); in import_checks()
/ndk/sources/cxx-stl/stlport/stlport/using/
Dcstring28 using _STLP_VENDOR_CSTD::strpbrk;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstring_h.pass.cpp40 static_assert((std::is_same<decltype(strpbrk(cp, cpc)), char*>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcstring.pass.cpp43 static_assert((std::is_same<decltype(std::strpbrk(cp, cpc)), char*>::value), ""); in main()
/ndk/sources/cxx-stl/gabi++/include/
Dcstring60 using ::strpbrk;
/ndk/sources/cxx-stl/system/include/
Dcstring60 using ::strpbrk;
/ndk/sources/host-tools/make-3.81/
Dvmsify.c238 s = strpbrk (name, "$:"); in vmsify()
Ddir.c82 if (strpbrk (filename, "\"*+,;<=>?[\\]|") != 0) in dosify()
Dmain.c1270 if (strpbrk(argv[0], "/:\\") || in main()
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dtst-rxspencer.c39 for (; (str = strpbrk (str, "NTSZ")) != NULL; ++str) in replace_special_chars()