HomeSort by relevance Sort by last modified time
    Searched refs:strspn (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/libcxx/test/std/strings/c.strings/
cstring.pass.cpp 42 static_assert((std::is_same<decltype(std::strspn(cpc, cpc)), std::size_t>::value), "");
  /external/mesa3d/src/compiler/glsl/
s_expression.cpp 46 size_t n = strspn(src, " \v\t\r\n");
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
platformtest.cpp 99 size_t l = strspn(whitespace_, " \n\r\t");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
string_h.pass.cpp 42 static_assert((std::is_same<decltype(strspn(cpc, cpc)), size_t>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/c.strings/
cstring.pass.cpp 42 static_assert((std::is_same<decltype(std::strspn(cpc, cpc)), std::size_t>::value), "");
  /toolchain/binutils/binutils-2.27/gold/
gold.h 261 return (name[strspn(name,
  /external/dtc/
dtc-lexer.l 170 if (*e && e[strspn(e, "UL")]) {
checks.c 246 int n = strspn(node->name, c->data);
257 int n = strspn(node->name, c->data);
304 int n = strspn(prop->name, c->data);
321 int n = strspn(name, c->data);
336 n = strspn(name, c->data);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lbaselib.c 65 s += strspn(s, SPACECHARS); /* skip initial spaces */
77 s += strspn(s, SPACECHARS); /* skip trailing spaces */
  /external/syslinux/com32/lua/src/
lbaselib.c 65 s += strspn(s, SPACECHARS); /* skip initial spaces */
77 s += strspn(s, SPACECHARS); /* skip trailing spaces */
  /bionic/libc/include/
string.h 115 size_t strspn(const char* __s, const char* __accept);
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
parse_flags_from_env.cc 141 } else if (env[strspn(env, kWS)] == '-') { // flags in env var value
  /external/valgrind/include/
pub_tool_libcbase.h 98 extern SizeT VG_(strspn) ( const HChar* s, const HChar* accpt );
  /external/webrtc/webrtc/base/
sslidentity.cc 196 // Make sure the string ends with Z. Doing it here protects the strspn call
203 size_t n = strspn(reinterpret_cast<const char*>(s), "0123456789");
  /hardware/google/av/codec2/vndk/util/
C2ParamUtils.cpp 190 pos = strspn(value + endPos, " ,") + endPos;
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-demangle.c 283 p += strspn (p, " \t");
  /external/ImageMagick/MagickCore/
xml-tree.c     [all...]
  /external/skia/src/core/
SkString.cpp 574 str += strspn(str, delimiters);
593 str += strspn(str, delimiters);
  /external/skqp/src/core/
SkString.cpp 641 str += strspn(str, delimiters);
660 str += strspn(str, delimiters);
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 411 INTERCEPT_LIBRARY_FUNCTION(strspn); variable
  /external/elfutils/libdwfl/
linux-proc-maps.c 242 char *file = line + nread + strspn (line + nread, " \t");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string2.h 1011 # define strspn macro
1028 # define strspn macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string2.h 1011 # define strspn macro
1028 # define strspn macro
    [all...]
  /external/valgrind/memcheck/tests/
str_tester.c 707 it = "strspn";
708 check(strspn("abcba", "abc") == 5, 1); /* Whole string. */
709 check(strspn("abcba", "ab") == 2, 2); /* Partial. */
710 check(strspn("abc", "qx") == 0, 3); /* None. */
711 check(strspn("", "ab") == 0, 4); /* Null string. */
712 check(strspn("abc", "") == 0, 5); /* Null search list. */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tchar.h 992 #define _tcsspn strspn
1112 #define _strspnp(_cpc1,_cpc2) (!_cpc1 ? NULL : ((*((_cpc1)+strspn(_cpc1,_cpc2))) ? ((_cpc1)+strspn(_cpc1,_cpc2)) : NULL))

Completed in 1613 milliseconds

12 3 4