Searched refs:strcspn (Results 1 - 25 of 53) sorted by relevance

123

/external/compiler-rt/test/sanitizer_common/TestCases/
H A Dstrcspn.c10 r = strcspn(s1, s2);
/external/compiler-rt/test/asan/TestCases/
H A Dstrcspn-1.c1 // Test string s1 overflow in strcspn function
16 r = strcspn(s1, s2);
H A Dstrcspn-2.c1 // Test stopset overflow in strcspn function
16 r = strcspn(s1, s2);
H A Dstrcspn_strict.c1 // Test strict_string_checks option in strcspn function
19 size_t r = strcspn(s1, s2);
/external/avahi/avahi-core/
H A Ddomain-util.c41 s[strcspn(s, ".")] = 0;
74 p[strcspn(p, "\"")] = 0;
/external/valgrind/coregrind/m_demangle/
H A Dvg_libciface.h59 #define strcspn(_ss,_rr) VG_(strcspn)((_ss),(_rr)) macro
/external/avahi/avahi-daemon/
H A Dini-file-parser.c62 s[strcspn(s, "\r\n")] = 0;
161 size_t n, l = strcspn(t, ",");
H A Dstatic-hosts.c198 s[strcspn(s, "#\r\n")] = 0;
205 len = strcspn(s, " \t");
213 len = strcspn(s, " \t");
/external/mesa3d/src/glsl/
H A Ds_expression.cpp50 n = strcspn(src, "\n");
64 size_t n = strcspn(src, "( \v\t\r\n);");
/external/toybox/toys/pending/
H A Dgroupadd.c97 if (s[strcspn(s, ":/\n")] || strlen(s) > LOGIN_NAME_MAX)
H A Duseradd.c54 if (s[strcspn(s, ":/\n")] || strlen(s) > LOGIN_NAME_MAX)
/external/avahi/avahi-compat-howl/include/salt/
H A Dplatform.h175 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2)
212 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2)
230 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2)
256 # define sw_strcspn(ARG1, ARG2) strcspn(ARG1, ARG2)
/external/libcxx/test/std/depr/depr.c.headers/
H A Dstring_h.pass.cpp39 static_assert((std::is_same<decltype(strcspn(cpc, cpc)), size_t>::value), "");
/external/libcxx/test/std/strings/c.strings/
H A Dcstring.pass.cpp41 static_assert((std::is_same<decltype(std::strcspn(cpc, cpc)), std::size_t>::value), "");
/external/libmtp/examples/
H A Dconnect.c60 sepp = argument + strcspn(argument, ",");
/external/ltrace/
H A Doptions.c291 size_t s = strcspn(expr, &"-+@"[operators ? 0 : 2]);
310 s = strcspn(next, &"-+"[operators ? 0 : 2]);
464 size_t len = strcspn(tok, ":");
/external/skia/src/gpu/gl/
H A DGrGLExtensions.cpp58 size_t length = strcspn(in, " ");
/external/toybox/scripts/
H A Dconfig2help.c341 int ff = strcspn(from, " ]"), tt = strcspn(to, " ]");
/external/libdaemon/libdaemon/
H A Ddpid.c134 txt[strcspn(txt, "\r\n")] = 0;
/external/libedit/src/
H A Dchartype.h163 #define Strcspn(s,r) strcspn(s,r)
/external/valgrind/include/
H A Dpub_tool_libcbase.h97 extern SizeT VG_(strcspn) ( const HChar* s, const HChar* reject );
/external/bison/lib/
H A Dstring.in.h453 /* strcspn() assumes the second argument is a list of single-byte characters.
457 # undef strcspn macro
458 /* Assume strcspn is always declared. */
459 _GL_WARN_ON_USE (strcspn, "strcspn cannot work correctly on character strings "
859 Unlike strcspn(), this function works correctly in multibyte locales. */
/external/libnl/lib/
H A Dutils.c72 goodlen = strcspn(end, "#\r\n\t ");
368 plen = strcspn(p, " \t");
/external/toybox/kconfig/
H A Dconfdata.c515 l = strcspn(str, "\"\\");
756 l = strcspn(str, "\"\\");
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc393 INTERCEPT_LIBRARY_FUNCTION(strcspn); variable

Completed in 1622 milliseconds

123