HomeSort by relevance Sort by last modified time
    Searched full:wcs (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/valgrind/memcheck/tests/
wcs.vgtest 1 prog: wcs
Makefile.am 284 wcs.vgtest wcs.stderr.exp wcs.stdout.exp \
375 wcs \
  /ndk/sources/android/support/src/musl-ctype/
wcswidth.c 3 int wcswidth(const wchar_t *wcs, size_t n)
6 for (; n-- && *wcs && (k = wcwidth(*wcs)) >= 0; l+=k, wcs++);
  /ndk/sources/android/support/src/wcstox/
shgetc.c 5 void shinit_wcstring(struct fake_file_t *f, const wchar_t* wcs) {
6 f->rstart = wcs;
7 f->rpos = wcs;
8 f->rend = wcs + wcslen(wcs);
shgetc.h 22 void shinit_wcstring(struct fake_file_t *, const wchar_t *wcs);
  /ndk/sources/android/support/src/musl-multibyte/
mbsnrtowcs.c 9 size_t mbsnrtowcs(wchar_t *restrict wcs, const char **restrict src, size_t n, size_t wn, mbstate_t *restrict st)
15 if (!wcs) ws = wbuf, wn = sizeof wbuf / sizeof *wbuf;
16 else ws = wcs;
57 if (wcs) *src = s;
wcsnrtombs.c 9 size_t wcsnrtombs(char *restrict dst, const wchar_t **restrict wcs, size_t wn, size_t n, mbstate_t *restrict st)
13 const wchar_t *ws = *wcs;
45 if (dst) *wcs = ws;
  /external/google-breakpad/src/common/windows/
string_utils.cc 48 bool WindowsStringUtils::safe_mbstowcs(const string &mbs, wstring *wcs) {
49 assert(wcs);
86 *wcs = &wcs_v[0];
91 bool WindowsStringUtils::safe_wcstombs(const wstring &wcs, string *mbs) {
99 if ((err = wcstombs_s(&mbs_length, NULL, 0, wcs.c_str(), _TRUNCATE)) != 0) {
104 if ((mbs_length = wcstombs(NULL, wcs.c_str(), wcs.length())) == (size_t)-1) {
116 if ((err = wcstombs_s(NULL, &mbs_v[0], mbs_length, wcs.c_str(),
121 if (wcstombs(&mbs_v[0], wcs.c_str(), wcs.length()) == (size_t)-1)
    [all...]
string_utils-inl.h 87 // without setting wcs.
88 static bool safe_mbstowcs(const string &mbs, wstring *wcs);
91 static bool safe_wcstombs(const wstring &wcs, string *mbs);
  /external/bison/lib/
wchar.in.h 818 /* Find the first occurrence of WC in WCS. */
821 _GL_FUNCDECL_SYS (wcschr, wchar_t *, (const wchar_t *wcs, wchar_t wc)
834 _GL_CXXALIASWARN1 (wcschr, wchar_t *, (wchar_t *wcs, wchar_t wc));
835 _GL_CXXALIASWARN1 (wcschr, const wchar_t *, (const wchar_t *wcs, wchar_t wc));
848 /* Find the last occurrence of WC in WCS. */
851 _GL_FUNCDECL_SYS (wcsrchr, wchar_t *, (const wchar_t *wcs, wchar_t wc)
864 _GL_CXXALIASWARN1 (wcsrchr, wchar_t *, (wchar_t *wcs, wchar_t wc));
865 _GL_CXXALIASWARN1 (wcsrchr, const wchar_t *, (const wchar_t *wcs, wchar_t wc));
878 /* Return the length of the initial segmet of WCS which consists entirely
882 _GL_FUNCDECL_SYS (wcscspn, size_t, (const wchar_t *wcs, const wchar_t *reject
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
uastrfnc.h 25 size_t ualstrlenW(UNALIGNED const WCHAR *wcs);
  /external/bison/darwin-lib/
wchar.h     [all...]
  /external/bison/linux-lib/
wchar.h     [all...]
  /external/icu/icu4c/source/test/perf/ustrperf/
stringperf.h 247 wchar_t* wcs; local
252 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len, &err);
253 memcpy(wlines_[i].name, wcs, wl * sizeof(wchar_t));
257 wcs = u_strToWCS(ws, wcap, &wl, lines_[i].name, lines_[i].len-1, &err);
258 memcpy(wlines_[i].name, wcs, wl*sizeof(wchar_t));
  /ndk/sources/android/support/tests/
wchar_unittest.cc 9 const char* to_cstr(const wchar_t* wcs) {
13 wchar_t ch = wcs[n];
  /external/libchrome/sandbox/win/src/
crosscall_client.h 172 static size_t __cdecl StringLength(const wchar_t* wcs) {
173 const wchar_t *eos = wcs;
175 return static_cast<size_t>(eos - wcs - 1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
wchar.h 217 /* Find the first occurrence of WC in WCS. */
227 /* Find the last occurrence of WC in WCS. */
247 /* Return the length of the initial segmet of WCS which
251 /* Return the length of the initial segmet of WCS which
255 /* Find the first occurrence in WCS of any character in ACCEPT. */
278 /* Divide WCS into tokens separated by characters in DELIM. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
wchar.h 217 /* Find the first occurrence of WC in WCS. */
227 /* Find the last occurrence of WC in WCS. */
247 /* Return the length of the initial segmet of WCS which
251 /* Return the length of the initial segmet of WCS which
255 /* Find the first occurrence in WCS of any character in ACCEPT. */
278 /* Divide WCS into tokens separated by characters in DELIM. */
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SupplicantStateTracker.java 90 public SupplicantStateTracker(Context c, WifiConfigManager wcs, Handler t) {
94 mWifiConfigManager = wcs;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FilenameUtils.java 1151 String[] wcs = splitOnTokens(wildcardMatcher); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
custrtrn.c 1397 wchar_t *wcs; local
    [all...]
  /external/libchrome/base/strings/
string16.h 54 // are based on the wide character functions of similar names ("w" or "wcs"
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
btSliderConstraint.cpp 278 // difference between frames in WCS
301 // as weighted sum of X-orthos of frameA and frameB in WCS
382 // get vector from bodyB to frameB in WCS
btHingeConstraint.cpp 788 // difference between frames in WCS
806 // as weighted sum of Z-orthos of frameA and frameB in WCS
820 // get vector from bodyB to frameB in WCS
    [all...]
  /external/icu/icu4c/source/common/
ustr_wcs.cpp 158 /* now convert the mbs to wcs */

Completed in 3686 milliseconds

1 2 3