Searched refs:wchar (Results 1 - 25 of 307) sorted by relevance
12345678910>>...13
/third_party/python/Lib/test/test_capi/ |
H A D | test_unicode.py | 282 wchar, size = unicode_aswidechar('abcdef', 2) 284 self.assertEqual(wchar, 'ab') 286 wchar, size = unicode_aswidechar('abc', 3) 288 self.assertEqual(wchar, 'abc') 290 wchar, size = unicode_aswidechar('abc', 4) 292 self.assertEqual(wchar, 'abc\0') 294 wchar, size = unicode_aswidechar('abc', 10) 296 self.assertEqual(wchar, 'abc\0') 298 wchar, size = unicode_aswidechar('abc\0def', 20) 300 self.assertEqual(wchar, 'ab [all...] |
/third_party/toybox/toys/posix/ |
H A D | wc.c | 77 unsigned wchar; in do_wc() local 90 clen = utf8towc(&wchar, toybuf+pos, len-pos); in do_wc() 95 space = iswspace(wchar); in do_wc()
|
/third_party/rust/crates/os_str_bytes/src/windows/ |
H A D | raw.rs | 32 for wchar in encode_wide_unchecked(string) { 33 write!(f, "\\u{{{:X}}}", wchar)?;
|
H A D | mod.rs | 68 for wchar in &mut encoder { in from_bytes() 69 encoded_string.push(wchar?); in from_bytes()
|
/third_party/rust/crates/os_str_bytes/tests/ |
H A D | raw_debug.rs | 23 let wchar = if cfg!(unix) { in test_wft8() 28 test(&format!("\"foo{}\u{1F4A9}bar\"", wchar), RAW_WTF8_STRING); in test_wft8()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
H A D | alltypes.h | 77 #include <wchar.h> 82 #include <wchar.h> 92 #include <wchar.h>
|
/third_party/musl/src/multibyte/ |
H A D | mbsinit.c | 1 #include <wchar.h>
|
H A D | mbstowcs.c | 2 #include <wchar.h>
|
H A D | wcstombs.c | 2 #include <wchar.h>
|
H A D | wctomb.c | 2 #include <wchar.h>
|
/third_party/musl/porting/uniproton/kernel/src/multibyte/ |
H A D | mbsinit.c | 1 #include <wchar.h>
|
H A D | wctomb.c | 2 #include <wchar.h>
|
/third_party/musl/porting/liteos_m/kernel/src/multibyte/ |
H A D | mbsinit.c | 1 #include <wchar.h>
|
H A D | wctomb.c | 2 #include <wchar.h>
|
/third_party/musl/src/stdio/ |
H A D | getwchar.c | 2 #include <wchar.h>
|
H A D | getwc.c | 2 #include <wchar.h>
|
/third_party/bounds_checking_function/src/ |
H A D | secureprintoutput_w.c | 16 /* If some platforms don't have wchar.h, don't include it */ 27 #include <wchar.h> 32 /* Disable wchar func to clear vs warning */
|
/third_party/musl/libc-test/src/regression/ |
H A D | wcsncpy-read-overflow.c | 2 #include <wchar.h>
|
/third_party/musl/src/string/ |
H A D | wcsncasecmp_l.c | 1 #include <wchar.h>
|
H A D | wcscpy.c | 1 #include <wchar.h>
|
H A D | wcslen.c | 1 #include <wchar.h>
|
H A D | wcspbrk.c | 1 #include <wchar.h>
|
H A D | wcswcs.c | 1 #include <wchar.h>
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
H A D | wcslen.c | 1 #include <wchar.h>
|
/third_party/musl/porting/liteos_a/kernel/src/multibyte/ |
H A D | wctomb.c | 2 #include <wchar.h>
|
Completed in 6 milliseconds
12345678910>>...13