HomeSort by relevance Sort by last modified time
    Searched refs:wcstok (Results 1 - 9 of 9) sorted by null

  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 41 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim, function
  /external/python/cpython3/Python/
pathconfig.c 421 wchar_t * tok = wcstok(tmpbuffer, L" \t\r\n", &state);
423 tok = wcstok(NULL, L" \t", &state);
425 tok = wcstok(NULL, L"\r\n", &state);
  /device/linaro/bootloader/edk2/StdLib/LibC/Wchar/
Searching.c 184 /** A sequence of calls to the wcstok function breaks the wide string pointed
187 to a caller-provided wchar_t pointer into which the wcstok function stores
200 there are no tokens in the wide string pointed to by s1 and the wcstok
204 The wcstok function then searches from there for a wide character that is
211 In all cases, the wcstok function stores sufficient information in the
216 @return The wcstok function returns a pointer to the first wide character
219 wchar_t *wcstok(wchar_t * __restrict s1, const wchar_t * __restrict s2, wchar_t ** __restrict ptr) function
  /bionic/tests/headers/posix/
wchar_h.c 104 FUNCTION(wcstok, wchar_t* (*f)(wchar_t*, const wchar_t*, wchar_t**));
  /device/linaro/bootloader/edk2/StdLib/Include/
wchar.h 113 wchar_t *wcstok (wchar_t * __restrict s1,
    [all...]
  /external/libcxx/test/std/strings/c.strings/
cwchar.pass.cpp 94 ASSERT_SAME_TYPE(wchar_t*, decltype(std::wcstok(ws, L"", (wchar_t**)0)));
  /bionic/libc/include/
wchar.h 101 wchar_t* wcstok(wchar_t* __s, const wchar_t* __delimiter, wchar_t** __ptr);
  /external/libcxx/test/std/depr/depr.c.headers/
wchar_h.pass.cpp 92 static_assert((std::is_same<decltype(wcstok(ws, L"", (wchar_t**)0)), wchar_t*>::value), "");
  /external/python/cpython3/Modules/
main.c 60 #define WCSTOK wcstok_s
62 #define WCSTOK wcstok
1071 for (warning = WCSTOK(env, L",", &context);
1073 warning = WCSTOK(NULL, L",", &context))
    [all...]

Completed in 1267 milliseconds