Searched defs:strpbrk (Results 1 - 6 of 6) sorted by relevance

/external/libcxx/include/
H A Dstring.h41 const char* strpbrk(const char* s1, const char* s2);
42 char* strpbrk( char* s1, const char* s2);
81 char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
83 const char* strpbrk(const char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} function
85 char* strpbrk( char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} function
/external/syslinux/com32/lib/
H A Dstrspn.c55 char *strpbrk(const char *s, const char *accept) function
/external/syslinux/gpxe/src/core/
H A Dstringextra.c157 * strpbrk - Find the first occurrence of a set of characters
161 char * strpbrk(const char * cs,const char * ct) function
196 send = strpbrk( sbegin, ct);
223 end = strpbrk(sbegin, ct);
/external/valgrind/coregrind/m_demangle/
H A Dvg_libciface.h64 #define strpbrk(_ss,_aa) VG_(strpbrk)((_ss),(_aa)) macro
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc409 INTERCEPT_LIBRARY_FUNCTION(strpbrk); variable
/external/valgrind/coregrind/
H A Dm_libcbase.c295 HChar* VG_(strpbrk) ( const HChar* s, const HChar* accpt ) function
489 s = VG_(strpbrk) (token, delim);

Completed in 296 milliseconds