/external/compiler-rt/test/sanitizer_common/TestCases/ |
H A D | strspn.c | 10 r = strspn(s1, s2);
|
/external/compiler-rt/test/asan/TestCases/ |
H A D | strspn-1.c | 1 // Test string s1 overflow in strspn function 16 r = strspn(s1, s2);
|
H A D | strspn-2.c | 1 // Test stopset overflow in strspn function 16 r = strspn(s1, s2);
|
H A D | strspn_strict.c | 1 // Test strict_str`ing_checks option in strspn function 18 size_t r = strspn(s1, s2);
|
/external/clang/test/CodeGen/ |
H A D | libcalls-fno-builtin.c | 22 size_t strspn(const char *s1, const char *s2); 95 size_t t17(char *x) { return strspn(x, ""); } 97 // CHECK: strspn
|
/external/valgrind/coregrind/m_demangle/ |
H A D | vg_libciface.h | 65 #define strspn(_ss,_aa) VG_(strspn)((_ss),(_aa)) macro
|
/external/llvm/tools/llvm-symbolizer/ |
H A D | llvm-symbolizer.cpp | 116 pos += strspn(pos, kDelimiters); 134 pos += strspn(pos, kDelimiters);
|
/external/avahi/avahi-daemon/ |
H A D | static-hosts.c | 196 s = ln + strspn(ln, " \t"); 212 s += strspn(s, " \t"); 228 s += strspn(s, " \t");
|
H A D | ini-file-parser.c | 61 s = ln + strspn(ln, " \t");
|
H A D | main.c | 190 p = ln + strspn(ln, "\t "); 194 p += strspn(p, "\t "); 207 p += strspn(p, "\t ");
|
/external/avahi/avahi-core/ |
H A D | domain-util.c | 73 p += strspn(p, "\"");
|
/external/libcxx/test/std/depr/depr.c.headers/ |
H A D | string_h.pass.cpp | 42 static_assert((std::is_same<decltype(strspn(cpc, cpc)), size_t>::value), "");
|
/external/libcxx/test/std/strings/c.strings/ |
H A D | cstring.pass.cpp | 46 static_assert((std::is_same<decltype(std::strspn(cpc, cpc)), std::size_t>::value), "");
|
/external/mesa3d/src/glsl/ |
H A D | s_expression.cpp | 45 size_t n = strspn(src, " \v\t\r\n");
|
/external/valgrind/include/ |
H A D | pub_tool_libcbase.h | 96 extern SizeT VG_(strspn) ( const HChar* s, const HChar* accpt );
|
/external/webrtc/webrtc/base/ |
H A D | 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");
|
/external/ImageMagick/MagickCore/ |
H A D | xml-tree.c | 1550 i=(ssize_t) strspn(xml,accept); 1646 xml+=strspn(xml+1,XMLWhitespace)+1; 1652 (strncmp(xml+strspn(xml+10,XMLWhitespace "='\"")+10,"yes",3) == 0)) 1739 xml+=strspn(xml+8,XMLWhitespace)+8; 1741 n=xml+strspn(xml,XMLWhitespace "%"); 1744 v=xml+strspn(xml+1,XMLWhitespace)+1; 1794 t=xml+strspn(xml+9,XMLWhitespace)+9; 1812 while ((*(n=xml+strspn(xml+1,XMLWhitespace)+1) != '\0') && 1826 xml+=strspn(xml+1,XMLWhitespace)+1; 1829 xml+=strspn(xm [all...] |
/external/bison/lib/ |
H A D | string.in.h | 504 /* strspn() assumes the second argument is a list of single-byte characters. 506 # undef strspn macro 507 /* Assume strspn is always declared. */ 508 _GL_WARN_ON_USE (strspn, "strspn cannot work correctly on character strings " 892 Unlike strspn(), this function works correctly in multibyte locales. */
|
/external/skia/src/core/ |
H A D | SkString.cpp | 647 str += strspn(str, delimiters); 666 str += strspn(str, delimiters);
|
/external/compiler-rt/lib/asan/ |
H A D | asan_win_dll_thunk.cc | 400 INTERCEPT_LIBRARY_FUNCTION(strspn); variable
|
/external/elfutils/libdwfl/ |
H A D | linux-proc-maps.c | 242 char *file = line + nread + strspn (line + nread, " \t");
|
/external/openssh/ |
H A D | addrmatch.c | 472 if (strspn(cp, VALID_CIDR_CHARS) != strlen(cp)) {
|
H A D | misc.c | 186 *s += strspn(*s + 1, WHITESPACE) + 1; 197 *s += strspn(*s + 1, WHITESPACE) + 1; 199 *s += strspn(*s + 1, WHITESPACE) + 1;
|
/external/valgrind/memcheck/tests/ |
H A D | 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. */ 1470 /* strspn. */
|
/external/autotest/client/tests/ipv6connect/src/ |
H A D | ipv6connect.c | 445 if (strspn(types, "OMT") != strlen(types)) {
|