HomeSort by relevance Sort by last modified time
    Searched refs:wstr (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/test/SemaCXX/
type-convert-construct.cpp 15 wchar_t *wstr; local
16 wstr = L"a wide string"; // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}}
string-plus-char.cpp 24 wchar_t *wstr; local
25 wstr = wstr + L'c'; // expected-warning {{adding 'wchar_t' to a string pointer does not append to the string}} expected-note {{use array indexing to silence this warning}}
  /external/libcxx/test/std/re/re.results/re.results.form/
form3.pass.cpp 29 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, test_allocator<wchar_t> > wstr; typedef
63 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
64 wstr out = m.format(fmt);
72 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
73 wstr out = m.format(fmt, std::regex_constants::format_sed);
81 wstr fmt(L"match: &, m[1]: \\1, m[2]: \\2");
82 wstr out = m.format(fmt, std::regex_constants::format_sed);
form2.pass.cpp 30 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, test_allocator<wchar_t> > wstr; typedef
73 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
84 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
96 wstr fmt(L"match: &, m[1]: \\1, m[2]: \\2");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/
form3.pass.cpp 29 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, test_allocator<wchar_t> > wstr; typedef
63 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
64 wstr out = m.format(fmt);
72 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
73 wstr out = m.format(fmt, std::regex_constants::format_sed);
81 wstr fmt(L"match: &, m[1]: \\1, m[2]: \\2");
82 wstr out = m.format(fmt, std::regex_constants::format_sed);
form2.pass.cpp 30 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, test_allocator<wchar_t> > wstr; typedef
73 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
84 wstr fmt(L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2");
96 wstr fmt(L"match: &, m[1]: \\1, m[2]: \\2");
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
EbmlWriter.h 29 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr);
EbmlWriter.c 50 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) {
51 const size_t strlen = wcslen(wstr);
59 Ebml_Write(glob, wstr, (unsigned long)size);
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-message.h 177 Message& operator <<(const ::std::wstring& wstr);
183 Message& operator <<(const ::wstring& wstr);
  /external/gtest/include/gtest/
gtest-message.h 183 Message& operator <<(const ::std::wstring& wstr);
189 Message& operator <<(const ::wstring& wstr);
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-message.h 177 Message& operator <<(const ::std::wstring& wstr);
183 Message& operator <<(const ::wstring& wstr);
  /external/mesa3d/src/gtest/include/gtest/
gtest-message.h 177 Message& operator <<(const ::std::wstring& wstr);
183 Message& operator <<(const ::wstring& wstr);
  /external/protobuf/gtest/include/gtest/
gtest-message.h 178 Message& operator <<(const ::std::wstring& wstr);
184 Message& operator <<(const ::wstring& wstr);
gtest.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest-message.h 183 Message& operator <<(const ::std::wstring& wstr);
189 Message& operator <<(const ::wstring& wstr);
  /external/pdfium/core/src/fpdftext/
fpdf_text_search.cpp 91 CFX_WideString wstr = pPrevObj->GetFont()->UnicodeFromCharCode(item.m_CharCode); local
92 if(wstr.GetLength()) {
93 preChar = wstr.GetAt(0);
100 wstr = pObj->GetFont()->UnicodeFromCharCode(item.m_CharCode);
101 if(wstr.GetLength()) {
102 curChar = wstr.GetAt(0);
207 CFX_WideString wstr = m_Buffer.GetWideString(); local
208 if (wstr.IsEmpty() || wstr.GetAt(wstr.GetLength() - 1) == L' ')
    [all...]
fpdf_text.cpp 758 CFX_WideString wstr = wlines[i]; local
760 for (int c = 0; c < wstr.GetLength(); c ++) {
761 str += CharFromUnicodeAlt(wstr[c], FXSYS_GetACP(), "?");
  /external/libedit/examples/
wtc1.c 37 my_wcstombs(const wchar_t *wstr)
44 int needed = wcstombs(0, wstr, 0) + 1;
49 wcstombs(buf.str, wstr, needed);
  /external/pdfium/core/src/fxcrt/
fx_basic_gcc.cpp 207 int FXSYS_WideCharToMultiByte(FX_DWORD codepage, FX_DWORD dwFlags, FX_LPCWSTR wstr, int wlen,
212 if (wstr[i] < 0x100) {
214 buf[len] = (FX_CHAR)wstr[i];
fx_basic_buffer.cpp 293 CFX_ArchiveSaver& CFX_ArchiveSaver::operator << (FX_LPCWSTR wstr)
295 FX_STRSIZE len = FXSYS_wcslen(wstr);
298 m_pStream->WriteBlock(wstr, len);
301 m_SavingBuf.AppendBlock(wstr, len);
305 CFX_ArchiveSaver& CFX_ArchiveSaver::operator << (const CFX_WideString& wstr)
307 CFX_ByteString encoded = wstr.UTF16LE_Encode();
  /bionic/tests/
wchar_test.cpp 462 wchar_t wstr[NUM_WCHARS(sizeof(const_wstr))]; local
464 EXPECT_EQ(wstr, wmemmove(wstr, const_wstr, NUM_WCHARS(sizeof(const_wstr))));
465 EXPECT_STREQ(const_wstr, wstr);
467 EXPECT_EQ(wstr+5, wmemmove(wstr+5, wstr, NUM_WCHARS(sizeof(const_wstr)) - 6));
468 EXPECT_STREQ(L"This This is a test of something or other", wstr);
  /frameworks/base/cmds/wm/src/com/android/commands/wm/
Wm.java 150 String wstr = size.substring(0, div); local
153 w = parseDimension(wstr);
  /system/extras/perfprofd/quipper/base/
logging.h 617 BASE_EXPORT std::ostream& operator<<(std::ostream& out, const wchar_t* wstr);
618 inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) {
619 return out << wstr.c_str();
  /external/pdfium/core/include/fxcrt/
fx_basic.h 177 CFX_ArchiveSaver& operator << (const CFX_WideString& wstr);
219 CFX_ArchiveLoader& operator >> (CFX_WideString& wstr);
290 CFX_ByteString (*m_GetByteString)(CFX_CharMap* pMap, const CFX_WideString& wstr);
    [all...]
fx_string.h 617 #define FX_WSTRC(wstr) CFX_WideStringC(wstr, FX_ArraySize(wstr) - 1)

Completed in 1397 milliseconds

1 2