/external/libcxx/include/ |
D | cwchar | 34 int fwprintf(FILE* restrict stream, const wchar_t* restrict format, ...); 35 int fwscanf(FILE* restrict stream, const wchar_t* restrict format, ...); 36 int swprintf(wchar_t* restrict s, size_t n, const wchar_t* restrict format, ...); 37 int swscanf(const wchar_t* restrict s, const wchar_t* restrict format, ...); 38 int vfwprintf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); 39 int vfwscanf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); // C99 40 int vswprintf(wchar_t* restrict s, size_t n, const wchar_t* restrict format, va_list arg); 41 int vswscanf(const wchar_t* restrict s, const wchar_t* restrict format, va_list arg); // C99 42 int vwprintf(const wchar_t* restrict format, va_list arg); 43 int vwscanf(const wchar_t* restrict format, va_list arg); // C99 [all …]
|
D | wchar.h | 137 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} in __libcpp_wcschr() 139 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr() 141 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr() 144 wchar_t* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1,… in __libcpp_wcspbrk() 146 const wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s… in wcspbrk() 148 … wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);} in wcspbrk() 151 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} in __libcpp_wcsrchr() 153 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr() 155 wchar_t* wcsrchr( wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr() 158 wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, _… in __libcpp_wcsstr() [all …]
|
D | iosfwd | 25 template<> struct char_traits<wchar_t>; 55 typedef basic_ios<wchar_t> wios; 72 typedef basic_streambuf<wchar_t> wstreambuf; 73 typedef basic_istream<wchar_t> wistream; 74 typedef basic_ostream<wchar_t> wostream; 75 typedef basic_iostream<wchar_t> wiostream; 77 typedef basic_stringbuf<wchar_t> wstringbuf; 78 typedef basic_istringstream<wchar_t> wistringstream; 79 typedef basic_ostringstream<wchar_t> wostringstream; 80 typedef basic_stringstream<wchar_t> wstringstream; [all …]
|
/external/webrtc/webrtc/base/ |
D | win32regkey.h | 45 HRESULT Create(HKEY parent_key, const wchar_t* key_name); 48 const wchar_t* key_name, 49 wchar_t* reg_class, 56 HRESULT Open(HKEY parent_key, const wchar_t* key_name); 58 HRESULT Open(HKEY parent_key, const wchar_t* key_name, REGSAM sam_desired); 64 bool HasValue(const wchar_t* value_name) const; 80 bool HasSubkey(const wchar_t* key_name) const; 96 HRESULT SetValue(const wchar_t* value_name, DWORD value) const; 99 HRESULT SetValue(const wchar_t* value_name, DWORD64 value) const; 102 HRESULT SetValue(const wchar_t* value_name, const wchar_t* value) const; [all …]
|
D | stringutils.h | 75 inline size_t strlen(const wchar_t* s) { in strlen() 78 inline int strcmp(const wchar_t* s1, const wchar_t* s2) { in strcmp() 81 inline int stricmp(const wchar_t* s1, const wchar_t* s2) { in stricmp() 84 inline int strncmp(const wchar_t* s1, const wchar_t* s2, size_t n) { in strncmp() 87 inline int strnicmp(const wchar_t* s1, const wchar_t* s2, size_t n) { in strnicmp() 90 inline const wchar_t* strchr(const wchar_t* s, wchar_t c) { in strchr() 93 inline const wchar_t* strstr(const wchar_t* haystack, const wchar_t* needle) { in strstr() 97 inline int vsnprintf(wchar_t* buf, size_t n, const wchar_t* fmt, va_list args) { in vsnprintf() 101 inline unsigned long strtoul(const wchar_t* snum, wchar_t** end, int base) { in strtoul() 104 inline wchar_t tolowercase(wchar_t c) { in tolowercase() [all …]
|
/external/ImageMagick/MagickCore/ |
D | utility-private.h | 62 static inline wchar_t *create_wchar_path(const char *utf8) in create_wchar_path() 67 wchar_t in create_wchar_path() 76 wchar_t in create_wchar_path() 82 longPath=(wchar_t *) AcquireQuantumMemory(count,sizeof(*longPath)); in create_wchar_path() 83 if (longPath == (wchar_t *) NULL) in create_wchar_path() 84 return((wchar_t *) NULL); in create_wchar_path() 88 longPath=(wchar_t *) RelinquishMagickMemory(longPath); in create_wchar_path() 90 return((wchar_t *) NULL); in create_wchar_path() 91 wideChar=(wchar_t *) AcquireQuantumMemory(count-3,sizeof(*wideChar)); in create_wchar_path() 95 wideChar=(wchar_t *) AcquireQuantumMemory(count,sizeof(*wideChar)); in create_wchar_path() [all …]
|
/external/lzma/CPP/Common/ |
D | MyString.h | 44 inline bool IsPathSepar(wchar_t c) { return IS_PATH_SEPAR(c); } in IsPathSepar() 71 inline unsigned MyStringLen(const wchar_t *s) in MyStringLen() 78 inline void MyStringCopy(wchar_t *dest, const wchar_t *src) in MyStringCopy() 83 inline void MyStringCat(wchar_t *dest, const wchar_t *src) in MyStringCat() 105 int FindCharPosInString(const wchar_t *s, wchar_t c) throw(); 141 inline wchar_t MyCharLower_Ascii(wchar_t c) in MyCharLower_Ascii() 144 return (wchar_t)(c + 0x20); in MyCharLower_Ascii() 148 wchar_t MyCharUpper_WIN(wchar_t c) throw(); 150 inline wchar_t MyCharUpper(wchar_t c) throw() in MyCharUpper() 153 if (c <= 'z') return (wchar_t)(c - 0x20); in MyCharUpper() [all …]
|
/external/pdfium/fxbarcode/datamatrix/ |
D | BC_HighLevelEncoder.h | 35 static bool isDigit(wchar_t ch); 36 static bool isExtendedASCII(wchar_t ch); 40 static const wchar_t LATCH_TO_C40; 41 static const wchar_t LATCH_TO_BASE256; 42 static const wchar_t UPPER_SHIFT; 43 static const wchar_t LATCH_TO_ANSIX12; 44 static const wchar_t LATCH_TO_TEXT; 45 static const wchar_t LATCH_TO_EDIFACT; 46 static const wchar_t C40_UNLATCH; 47 static const wchar_t X12_UNLATCH; [all …]
|
/external/pdfium/core/fxcrt/ |
D | widestring.h | 32 using CharType = wchar_t; 36 static WideString Format(const wchar_t* lpszFormat, ...) WARN_UNUSED_RESULT; 37 static WideString FormatV(const wchar_t* lpszFormat, 46 WideString(wchar_t ch); 48 WideString(const wchar_t* ptr); 54 WideString(const wchar_t* ptr, size_t len); 74 const wchar_t* c_str() const { return m_pData ? m_pData->m_String : L""; } in c_str() 106 const WideString& operator=(const wchar_t* str); 110 const WideString& operator+=(const wchar_t* str); 111 const WideString& operator+=(wchar_t ch); [all …]
|
D | fx_system.h | 132 inline size_t FXSYS_len(const wchar_t* ptr) { in FXSYS_len() 140 inline int FXSYS_cmp(const wchar_t* ptr1, const wchar_t* ptr2, size_t len) { in FXSYS_cmp() 148 inline const wchar_t* FXSYS_chr(const wchar_t* ptr, wchar_t ch, size_t len) { in FXSYS_chr() 162 size_t FXSYS_wcsftime(wchar_t* strDest, 164 const wchar_t* format, 167 #define FXSYS_wcsicmp(str1, str2) _wcsicmp((wchar_t*)(str1), (wchar_t*)(str2)) 169 WideCharToMultiByte(p1, p2, (const wchar_t*)(p3), p4, p5, p6, p7, p8) 171 MultiByteToWideChar(p1, p2, p3, p4, (wchar_t*)(p5), p6) 172 #define FXSYS_wcslwr(str) _wcslwr((wchar_t*)(str)) 173 #define FXSYS_wcsupr(str) _wcsupr((wchar_t*)(str)) [all …]
|
D | cfx_widetextbuf.h | 16 void AppendChar(wchar_t wch); 18 wchar_t* GetBuffer() const { in GetBuffer() 19 return reinterpret_cast<wchar_t*>(m_pBuffer.get()); in GetBuffer() 23 return WideStringView(reinterpret_cast<const wchar_t*>(m_pBuffer.get()), in AsStringView() 24 m_DataSize / sizeof(wchar_t)); in AsStringView() 27 return WideString(reinterpret_cast<const wchar_t*>(m_pBuffer.get()), in MakeString() 28 m_DataSize / sizeof(wchar_t)); in MakeString() 32 CFX_BinaryBuf::Delete(start_index * sizeof(wchar_t), in Delete() 33 count * sizeof(wchar_t)); in Delete() 38 CFX_WideTextBuf& operator<<(const wchar_t* lpsz);
|
D | fx_extension.h | 22 float FXSYS_wcstof(const wchar_t* pwsStr, 25 wchar_t* FXSYS_wcsncpy(wchar_t* dstStr, const wchar_t* srcStr, size_t count); 26 int32_t FXSYS_wcsnicmp(const wchar_t* s1, const wchar_t* s2, size_t count); 44 inline bool FXSYS_iswalpha(wchar_t wch) { in FXSYS_iswalpha() 48 inline bool FXSYS_iswalnum(wchar_t wch) { in FXSYS_iswalnum() 52 inline bool FXSYS_iswspace(wchar_t c) { in FXSYS_iswspace() 71 inline bool FXSYS_isDecimalDigit(const wchar_t c) { in FXSYS_isDecimalDigit() 79 inline int FXSYS_DecimalCharToInt(const wchar_t c) { in FXSYS_DecimalCharToInt()
|
/external/python/cpython3/PC/ |
D | launcher.c | 57 static wchar_t * 58 skip_whitespace(wchar_t * p) in skip_whitespace() 66 debug(wchar_t * format, ...) in debug() 78 winerror(int rc, wchar_t * message, int size) in winerror() 87 error(int rc, wchar_t * format, ... ) in error() 90 wchar_t message[MSGSIZE]; in error() 91 wchar_t win_message[MSGSIZE]; in error() 119 static wchar_t * get_env(wchar_t * key) in get_env() 122 static wchar_t buf[BUFSIZE]; in get_env() 127 wchar_t *buf2 = (wchar_t*)malloc(sizeof(wchar_t) * (result+1)); in get_env() [all …]
|
D | getpathp.c | 121 const wchar_t *path_env; /* PATH environment variable */ 122 const wchar_t *home; /* PYTHONHOME environment variable */ 125 wchar_t *machine_path; /* from HKEY_LOCAL_MACHINE */ 126 wchar_t *user_path; /* from HKEY_CURRENT_USER */ 128 wchar_t argv0_path[MAXPATHLEN+1]; 129 wchar_t zip_path[MAXPATHLEN+1]; 135 is_sep(wchar_t ch) in is_sep() 148 reduce(wchar_t *dir) in reduce() 162 change_ext(wchar_t *dest, const wchar_t *src, const wchar_t *ext) in change_ext() 194 exists(const wchar_t *filename) in exists() [all …]
|
/external/python/cpython3/Modules/ |
D | getpath.c | 119 wchar_t *path_env; /* PATH environment variable */ 121 wchar_t *pythonpath; /* PYTHONPATH define */ 122 wchar_t *prefix; /* PREFIX define */ 123 wchar_t *exec_prefix; /* EXEC_PREFIX define */ 125 wchar_t *lib_python; /* "lib/pythonX.Y" */ 126 wchar_t argv0_path[MAXPATHLEN+1]; 127 wchar_t zip_path[MAXPATHLEN+1]; /* ".../lib/pythonXY.zip" */ 133 static const wchar_t delimiter[2] = {DELIM, '\0'}; 134 static const wchar_t separator[2] = {SEP, '\0'}; 139 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() [all …]
|
/external/python/cpython3/Include/ |
D | fileutils.h | 9 PyAPI_FUNC(wchar_t *) Py_DecodeLocale( 14 const wchar_t *text, 18 const wchar_t *text, 26 wchar_t **wstr, 32 const wchar_t *text, 39 PyAPI_FUNC(wchar_t*) _Py_DecodeUTF8_surrogateescape( 45 wchar_t **wstr, 52 const wchar_t *text, 119 const wchar_t *path, 120 const wchar_t *mode); [all …]
|
/external/clang/test/Parser/ |
D | char-literal-printing.c | 8 wchar_t test2(void) { return L'\\'; } in test2() 10 wchar_t test4(void) { return L'\''; } in test4() 12 wchar_t test6(void) { return L'\a'; } in test6() 14 wchar_t test8(void) { return L'\b'; } in test8() 16 wchar_t test10(void) { return L'\e'; } in test10() 18 wchar_t test12(void) { return L'\f'; } in test12() 20 wchar_t test14(void) { return L'\n'; } in test14() 22 wchar_t test16(void) { return L'\r'; } in test16() 24 wchar_t test18(void) { return L'\t'; } in test18() 26 wchar_t test20(void) { return L'\v'; } in test20() [all …]
|
/external/icu/icu4c/source/test/perf/charperf/ |
D | charperf.h | 24 typedef void (*StdLibCharPerfFn)(wchar_t ch); 60 for (wchar_t i = MIN_; i < MAX_; i ++) { in call() 70 StdLibCharPerfFunction(StdLibCharPerfFn func, wchar_t min, wchar_t max) in StdLibCharPerfFunction() 83 wchar_t MIN_; 84 wchar_t MAX_; 183 inline void StdLibIsAlpha(wchar_t ch) in StdLibIsAlpha() 188 inline void StdLibIsUpper(wchar_t ch) in StdLibIsUpper() 193 inline void StdLibIsLower(wchar_t ch) in StdLibIsLower() 198 inline void StdLibIsDigit(wchar_t ch) in StdLibIsDigit() 203 inline void StdLibIsSpace(wchar_t ch) in StdLibIsSpace() [all …]
|
/external/python/cpython3/Python/ |
D | pathconfig.c | 133 Py_SetPath(const wchar_t *path) in Py_SetPath() 167 Py_SetPythonHome(const wchar_t *home) in Py_SetPythonHome() 188 Py_SetProgramName(const wchar_t *program_name) in Py_SetProgramName() 209 _Py_SetProgramFullPath(const wchar_t *program_full_path) in _Py_SetProgramFullPath() 229 wchar_t * 237 wchar_t * 245 wchar_t * 257 wchar_t * 265 wchar_t* 273 wchar_t * [all …]
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_formfillenvironment.h | 159 RetainPtr<IFX_SeekableReadStream> DownloadFromURL(const wchar_t* url); 160 WideString PostRequestURL(const wchar_t* wsURL, 161 const wchar_t* wsData, 162 const wchar_t* wsContentType, 163 const wchar_t* wsEncode, 164 const wchar_t* wsHeader); 165 FPDF_BOOL PutRequestURL(const wchar_t* wsURL, 166 const wchar_t* wsData, 167 const wchar_t* wsEncode); 175 int JS_appAlert(const wchar_t* Msg, [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/ |
D | 2006-11-09-InlineCGUpdate.ll | 11 …_gnu_cxx::__normal_iterator<const wchar_t*,std::basic_string<wchar_t, std::char_traits<wchar_t>, s… 14 …x::stdio_sync_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<… 21 …ct.std::basic_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<… 23 …wchar_t,std::char_traits<wchar_t> >" = type { { %"struct.std::locale::facet", %"struct.__gnu_cxx::… 25 …wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::ios_base", %"struct.std::basic_ostream… 26 …wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::locale::facet", %"struct.__gnu_cxx::ch… 28 …std::basic_ostream<wchar_t,std::char_traits<wchar_t> >" = type { i32 (...)**, %"struct.std::basic_… 30 …%"struct.std::basic_streambuf<wchar_t,std::char_traits<wchar_t> >" = type { i32 (...)**, i32*, i32… 34 …wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >" = type { %"struct.__gnu_cxx::__normal… 45 …::istreambuf_iterator<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<…
|
/external/swiftshader/third_party/LLVM/test/Transforms/Inline/ |
D | 2006-11-09-InlineCGUpdate.ll | 12 …_gnu_cxx::__normal_iterator<const wchar_t*,std::basic_string<wchar_t, std::char_traits<wchar_t>, s… 15 …x::stdio_sync_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<… 22 …ct.std::basic_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<… 24 …wchar_t,std::char_traits<wchar_t> >" = type { { %"struct.std::locale::facet", %"struct.__gnu_cxx::… 26 …wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::ios_base", %"struct.std::basic_ostream… 27 …wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::locale::facet", %"struct.__gnu_cxx::ch… 29 …std::basic_ostream<wchar_t,std::char_traits<wchar_t> >" = type { i32 (...)**, %"struct.std::basic_… 31 …%"struct.std::basic_streambuf<wchar_t,std::char_traits<wchar_t> >" = type { i32 (...)**, i32*, i32… 35 …wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >" = type { %"struct.__gnu_cxx::__normal… 46 …::istreambuf_iterator<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<…
|
/external/llvm/test/Transforms/Inline/ |
D | 2006-11-09-InlineCGUpdate.ll | 11 …_gnu_cxx::__normal_iterator<const wchar_t*,std::basic_string<wchar_t, std::char_traits<wchar_t>, s… 14 …x::stdio_sync_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<… 21 …ct.std::basic_filebuf<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<… 23 …wchar_t,std::char_traits<wchar_t> >" = type { { %"struct.std::locale::facet", %"struct.__gnu_cxx::… 25 …wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::ios_base", %"struct.std::basic_ostream… 26 …wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::locale::facet", %"struct.__gnu_cxx::ch… 28 …std::basic_ostream<wchar_t,std::char_traits<wchar_t> >" = type { i32 (...)**, %"struct.std::basic_… 30 …%"struct.std::basic_streambuf<wchar_t,std::char_traits<wchar_t> >" = type { i32 (...)**, i32*, i32… 34 …wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >" = type { %"struct.__gnu_cxx::__normal… 45 …::istreambuf_iterator<wchar_t,std::char_traits<wchar_t> >" = type { %"struct.std::basic_streambuf<…
|
/external/libcxx/include/support/ibm/ |
D | xlocale.h | 89 int iswalnum_l(wchar_t wc, locale_t locale) in iswalnum_l() 95 int iswalpha_l(wchar_t wc, locale_t locale) in iswalpha_l() 101 int iswblank_l(wchar_t wc, locale_t locale) in iswblank_l() 107 int iswcntrl_l(wchar_t wc, locale_t locale) in iswcntrl_l() 113 int iswdigit_l(wchar_t wc, locale_t locale) in iswdigit_l() 119 int iswgraph_l(wchar_t wc, locale_t locale) in iswgraph_l() 125 int iswlower_l(wchar_t wc, locale_t locale) in iswlower_l() 131 int iswprint_l(wchar_t wc, locale_t locale) in iswprint_l() 137 int iswpunct_l(wchar_t wc, locale_t locale) in iswpunct_l() 143 int iswspace_l(wchar_t wc, locale_t locale) in iswspace_l() [all …]
|
/external/flac/libFLAC/ |
D | windows_unicode_filenames.c | 40 static wchar_t *wchar_from_utf8(const char *str) in wchar_from_utf8() 42 wchar_t *widestr; in wchar_from_utf8() 49 if ((widestr = (wchar_t *)malloc(len*sizeof(wchar_t))) == NULL) in wchar_from_utf8() 80 wchar_t *wname = NULL; in flac_internal_fopen_utf8() 81 wchar_t *wmode = NULL; in flac_internal_fopen_utf8() 102 wchar_t *wpath; in flac_internal_stat64_utf8() 118 wchar_t *wname; in flac_internal_chmod_utf8() 134 wchar_t *wname; in flac_internal_utime_utf8() 153 wchar_t *wname; in flac_internal_unlink_utf8() 169 wchar_t *wold = NULL; in flac_internal_rename_utf8() [all …]
|