HomeSort by relevance Sort by last modified time
    Searched defs:strchr (Results 1 - 25 of 29) sorted by null

1 2

  /bionic/libc/bionic/
strchr.cpp 33 char* strchr(const char* p, int ch) { function
  /bionic/libc/arch-x86/atom/string/
sse2-strchr-atom.S 90 ENTRY (strchr) function
391 END (strchr)
  /bionic/libc/arch-arm64/generic/bionic/
strchr.S 2 strchr - find a character in a string
77 ENTRY(strchr) function
154 END(strchr)
  /bionic/libc/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
242 char* strchr(const char *s, int c) { function
  /development/ndk/platforms/android-L/include/
string.h 46 extern char* strchr(const char *, int) __purefunc;
281 char* strchr(const char *s, int c) { function
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.c 34 # define strchr index macro
265 else if (strchr(optarg, '*') != NULL)
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
252 char* strchr(const char *s, int c) { function
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
252 char* strchr(const char *s, int c) { function
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
252 char* strchr(const char *s, int c) { function
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
252 char* strchr(const char *s, int c) { function
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
252 char* strchr(const char *s, int c) { function
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
string.h 47 extern char* strchr(const char *, int) __purefunc;
252 char* strchr(const char *s, int c) { function
  /external/bison/lib/
string.in.h 298 /* strchr() does not work with multibyte strings if the locale encoding is
300 # undef strchr macro
301 /* Assume strchr is always declared. */
302 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
751 Unlike strchr(), this function works correctly in multibyte locales with
    [all...]
  /external/chromium_org/third_party/webrtc/base/
stringutils.h 61 // strchr, vsnprintf, strtoul, tolowercase
90 inline const wchar_t* strchr(const wchar_t* s, wchar_t c) { function
147 const CTYPE* strchr(const CTYPE* str, const CTYPE* chs) { function in namespace:rtc
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 56 #define strchr(_ss,_cc) VG_(strchr)((_ss),(_cc)) macro
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 150 #define strchr(s,c) VG_(strchr) ((s),c) macro
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 163 /* strchr() does not work with multibyte strings if the locale encoding is
165 # undef strchr macro
166 # define strchr(s,c) \ macro
167 (GL_LINK_WARNING ("strchr cannot work correctly on character strings " \
170 strchr (s, c))
441 Unlike strchr(), this function works correctly in multibyte locales with
  /external/bison/darwin-lib/
string.h 610 /* strchr() does not work with multibyte strings if the locale encoding is
612 # undef strchr macro
613 /* Assume strchr is always declared. */
614 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
    [all...]
  /external/bison/linux-lib/
string.h 610 /* strchr() does not work with multibyte strings if the locale encoding is
612 # undef strchr macro
613 /* Assume strchr is always declared. */
614 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
    [all...]
  /external/compiler-rt/lib/asan/
asan_dll_thunk.cc 318 INTERCEPT_LIBRARY_FUNCTION(strchr); variable
  /external/wpa_supplicant_8/src/utils/
os.h 526 #define os_strchr(s, c) strchr((s), (c))
627 #undef strchr macro
628 #define strchr OS_DO_NOT_USE_strchr macro
  /ndk/sources/host-tools/make-3.81/
make.h 263 # define strchr(s, c) index((s), (c)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
string2.h 396 # define strchr(s, c) \ macro
402 # define strchr(s, c) \ macro
405 : strchr (s, c)))
781 : (*((char *) __mempcpy (strchr (__dest, '\0'), \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string2.h 396 # define strchr(s, c) \ macro
402 # define strchr(s, c) \ macro
405 : strchr (s, c)))
781 : (*((char *) __mempcpy (strchr (__dest, '\0'), \
    [all...]
  /external/valgrind/main/coregrind/
m_libcbase.c 395 HChar* VG_(strchr) ( const HChar* s, HChar c ) function
591 if (VG_(strchr) (reject, *s++) == NULL)

Completed in 2357 milliseconds

1 2