HomeSort by relevance Sort by last modified time
    Searched defs:wchar_t (Results 1 - 6 of 6) sorted by null

  /external/libcxx/test/support/
filesystem_test_helper.hpp 270 const wchar_t* w;
275 operator const wchar_t* () const { return w; }
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
filesystem_test_helper.hpp 270 const wchar_t* w;
275 operator const wchar_t* () const { return w; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comutil.h 62 _bstr_t(const wchar_t *s);
68 _bstr_t &operator=(const wchar_t *s);
73 friend _bstr_t operator+(const wchar_t *s1,const _bstr_t &s2);
74 operator const wchar_t *() const throw();
75 operator wchar_t *() const throw();
96 Data_t(const wchar_t *s);
102 operator const wchar_t *() const throw();
104 const wchar_t *GetWString() const throw();
105 wchar_t *&GetWString() throw();
138 inline _bstr_t::_bstr_t(const wchar_t *s) : m_Data(new Data_t(s))
    [all...]
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 101 #define wchar_t macro
186 wchar_t
  /external/f2fs-tools/lib/
libf2fs.c 53 /* On Windows, wchar_t is 8 bit sized and it causes compilation errors. */
54 #define wchar_t int macro
60 static const char *utf8_to_wchar(const char *input, wchar_t *wc,
64 *wc = (wchar_t) input[0];
68 *wc = (((wchar_t) input[0] & 0x1f) << 6) |
69 ((wchar_t) input[1] & 0x3f);
73 *wc = (((wchar_t) input[0] & 0x0f) << 12) |
74 (((wchar_t) input[1] & 0x3f) << 6) |
75 ((wchar_t) input[2] & 0x3f);
79 *wc = (((wchar_t) input[0] & 0x07) << 18)
    [all...]
  /external/lzma/CPP/Common/
MyString.h 24 inline bool IsPathSepar(wchar_t c) { return IS_PATH_SEPAR(c); }
51 inline unsigned MyStringLen(const wchar_t *s)
58 inline void MyStringCopy(wchar_t *dest, const wchar_t *src)
64 inline wchar_t *MyWcpCpy(wchar_t *dest, const wchar_t *src)
68 wchar_t c = *src;
79 int FindCharPosInString(const wchar_t *s, wchar_t c) throw();
    [all...]

Completed in 162 milliseconds