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

1 2 3 4

  /external/libchrome/base/files/
file_path_constants.cc 13 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
15 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
20 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
21 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL("..");
23 const FilePath::CharType FilePath::kExtensionSeparator = FILE_PATH_LITERAL('.');
file_path.h 59 // instead, use a FilePath::CharType[] and initialize it with
63 // | const FilePath::CharType kLogFileName[] = FILE_PATH_LITERAL("log.txt");
159 typedef StringType::value_type CharType;
165 static const CharType kSeparators[];
171 static const CharType kCurrentDirectory[];
174 static const CharType kParentDirectory[];
177 static const CharType kExtensionSeparator;
201 static bool IsSeparator(CharType character);
391 FilePath NormalizePathSeparatorsTo(CharType separator) const;
456 // Macros for string literal initialization of FilePath::CharType[], and fo
    [all...]
  /external/pdfium/core/fxcrt/
cfx_string_data_template.h 14 template <typename CharType>
23 offsetof(CFX_StringDataTemplate, m_String) + sizeof(CharType);
25 nSize *= sizeof(CharType);
35 int usableLen = (totalSize - overhead) / sizeof(CharType);
48 static CFX_StringDataTemplate* Create(const CharType* pStr, FX_STRSIZE nLen) {
67 (other.m_nDataLength + 1) * sizeof(CharType));
70 void CopyContents(const CharType* pStr, FX_STRSIZE nLen) {
72 FXSYS_memcpy(m_String, pStr, nLen * sizeof(CharType));
77 const CharType* pStr,
80 FXSYS_memcpy(m_String + offset, pStr, nLen * sizeof(CharType));
    [all...]
cfx_string_c_template.h 21 using CharType = T;
22 using UnsignedType = typename std::make_unsigned<CharType>::type;
28 CFX_StringCTemplate(const CharType* ptr)
32 CFX_StringCTemplate(const CharType* ptr, FX_STRSIZE len)
40 typename std::enable_if<!std::is_same<U, CharType>::value>::type* = 0)
46 CFX_StringCTemplate(CharType& ch) {
56 CFX_StringCTemplate& operator=(const CharType* src) {
68 bool operator==(const CharType* ptr) const {
70 FXSYS_cmp(ptr, reinterpret_cast<const CharType*>(m_Ptr), m_Length) ==
75 FXSYS_cmp(reinterpret_cast<const CharType*>(other.m_Ptr)
    [all...]
  /system/bt/service/test/
settings_unittest.cc 47 const base::CommandLine::CharType* argv[] = {"program"};
53 const base::CommandLine::CharType* argv[] = {
60 const base::CommandLine::CharType* argv[] = {"program", "--foobarbaz"};
66 const base::CommandLine::CharType* argv[] = {"program", "foobarbaz"};
72 const base::CommandLine::CharType* argv[] = {
79 const base::CommandLine::CharType* argv[] = {
87 const base::CommandLine::CharType* argv[] = {"program",
94 const base::CommandLine::CharType* argv[] = {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 69 static CharType TakeBOM(InputByteStream& is);
92 \tparam CharType Code unit for storing 8-bit UTF-8 data. Default is char.
95 template<typename CharType = char>
97 typedef CharType Ch;
197 static CharType TakeBOM(InputByteStream& is) {
234 \tparam CharType Type for storing 16-bit UTF-16 data. Default is wchar_t. C++11 may use char16_t instead.
240 template<typename CharType = wchar_t>
242 typedef CharType Ch;
297 template<typename CharType = wchar_t>
298 struct UTF16LE : UTF16<CharType> {
    [all...]
pointer.h     [all...]
encodedstream.h 97 \tparam CharType Type of character for reading.
100 template <typename CharType, typename InputByteStream>
104 typedef CharType Ch;
195 \tparam CharType Type of character for writing.
198 template <typename CharType, typename OutputByteStream>
202 typedef CharType Ch;
document.h 233 \tparam CharType character type of the string
258 template<typename CharType>
260 typedef CharType Ch; //!< character type of the string
266 \ref StringRef(const CharType*) by inferring the string \ref length
286 GenericStringRef(const CharType (&str)[N]) RAPIDJSON_NOEXCEPT // NOLINT, implicit
294 \see StringRef(const CharType*)
308 explicit GenericStringRef(const CharType* str)
318 GenericStringRef(const CharType* str, SizeType len)
321 //! implicit conversion to plain CharType pointer
324 const Ch* const s; //!< plain CharType pointer
    [all...]
  /external/google-breakpad/src/testing/src/
gmock.cc 124 // The type parameter CharType can be instantiated to either char or
126 template <typename CharType>
127 void InitGoogleMockImpl(int* argc, CharType** argv) {
  /external/libchrome/base/
command_line.h 41 using CharType = StringType::value_type;
54 CommandLine(int argc, const CharType* const* argv);
109 void InitFromArgv(int argc, const CharType* const* argv);
command_line.cc 29 const CommandLine::CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--");
30 const CommandLine::CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("=");
38 const CommandLine::CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"};
41 const CommandLine::CharType* const kSwitchPrefixes[] = {"--", "-"};
160 CommandLine::CommandLine(int argc, const CommandLine::CharType* const* argv)
257 const CommandLine::CharType* const* argv) {
  /external/googletest/googlemock/src/
gmock.cc 125 // The type parameter CharType can be instantiated to either char or
127 template <typename CharType>
128 void InitGoogleMockImpl(int* argc, CharType** argv) {
  /external/v8/testing/gmock/src/
gmock.cc 125 // The type parameter CharType can be instantiated to either char or
127 template <typename CharType>
128 void InitGoogleMockImpl(int* argc, CharType** argv) {
  /external/googletest/googletest/src/
gtest-printers.cc 254 // Prints the given array of characters to the ostream. CharType must be either
258 template <typename CharType>
263 const CharType* begin, size_t len, ostream* os) {
264 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
268 const CharType cur = begin[index];
281 // 'begin'. CharType must be either char or wchar_t.
282 template <typename CharType>
287 const CharType* begin, size_t len, ostream* os) {
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-printers.cc 254 // Prints the given array of characters to the ostream. CharType must be either
258 template <typename CharType>
263 const CharType* begin, size_t len, ostream* os) {
264 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
268 const CharType cur = begin[index];
281 // 'begin'. CharType must be either char or wchar_t.
282 template <typename CharType>
287 const CharType* begin, size_t len, ostream* os) {
  /external/mesa3d/src/gtest/src/
gtest-printers.cc 250 // Prints the given array of characters to the ostream. CharType must be either
254 template <typename CharType>
256 const CharType* begin, size_t len, ostream* os) {
257 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
261 const CharType cur = begin[index];
274 // 'begin'. CharType must be either char or wchar_t.
275 template <typename CharType>
277 const CharType* begin, size_t len, ostream* os) {
  /external/v8/testing/gtest/src/
gtest-printers.cc 254 // Prints the given array of characters to the ostream. CharType must be either
258 template <typename CharType>
263 const CharType* begin, size_t len, ostream* os) {
264 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
268 const CharType cur = begin[index];
281 // 'begin'. CharType must be either char or wchar_t.
282 template <typename CharType>
287 const CharType* begin, size_t len, ostream* os) {
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-printers.cc 250 // Prints the given array of characters to the ostream. CharType must be either
254 template <typename CharType>
256 const CharType* begin, size_t len, ostream* os) {
257 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
261 const CharType cur = begin[index];
274 // 'begin'. CharType must be either char or wchar_t.
275 template <typename CharType>
277 const CharType* begin, size_t len, ostream* os) {
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/src/
gtest-printers.cc 250 // Prints the given array of characters to the ostream. CharType must be either
254 template <typename CharType>
256 const CharType* begin, size_t len, ostream* os) {
257 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
261 const CharType cur = begin[index];
274 // 'begin'. CharType must be either char or wchar_t.
275 template <typename CharType>
277 const CharType* begin, size_t len, ostream* os) {
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/src/
gtest-printers.cc 250 // Prints the given array of characters to the ostream. CharType must be either
254 template <typename CharType>
256 const CharType* begin, size_t len, ostream* os) {
257 const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\"";
261 const CharType cur = begin[index];
274 // 'begin'. CharType must be either char or wchar_t.
275 template <typename CharType>
277 const CharType* begin, size_t len, ostream* os) {
  /external/google-breakpad/src/client/
minidump_file_writer.h 150 template <typename CharType>
151 bool WriteStringCore(const CharType *str, unsigned int length,
  /external/pdfium/testing/
fx_string_testhelpers.cpp 20 } else if (sizeof(typename T::CharType) == 1) {
  /art/runtime/verifier/
reg_type-inl.h 166 inline const CharType* CharType::GetInstance() {
reg_type_cache-inl.h 52 inline const CharType& RegTypeCache::Char() {
53 return *CharType::GetInstance();

Completed in 1179 milliseconds

1 2 3 4