HomeSort by relevance Sort by last modified time
    Searched defs:c_str (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_error.h 29 const char* c_str() const { return buff_; } function in class:crazy::Error
  /ndk/sources/android/crazy_linker/src/
crazy_linker_error.h 29 const char* c_str() const { return buff_; } function in class:crazy::Error
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-filepath.h 82 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
115 bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; }
gtest-string.h 92 static String ShowCStringQuoted(const char* c_str);
101 static const char* CloneCString(const char* c_str);
116 static LPCWSTR AnsiToUtf16(const char* c_str);
227 ConstructNonNull(str.c_str(), str.length());
230 operator ::std::string() const { return ::std::string(c_str(), length()); }
234 ConstructNonNull(str.c_str(), str.length());
237 operator ::string() const { return ::string(c_str(), length()); }
241 bool empty() const { return (c_str() != NULL) && (length() == 0); }
275 const char* c_str() const { return c_str_; } function in class:testing::internal::String
286 if (rhs.c_str() == NULL)
320 const char* const c_str = str.c_str(); local
325 os << c_str[i]; local
    [all...]
  /external/conscrypt/src/compat/native/
ScopedUtfChars.h 25 // passed a null jstring, and c_str will return NULL.
29 // if (name.c_str() == NULL) {
49 const char* c_str() const { function in class:ScopedUtfChars
  /external/gtest/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 82 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
115 bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; }
gtest-string.h 92 static String ShowCStringQuoted(const char* c_str);
101 static const char* CloneCString(const char* c_str);
116 static LPCWSTR AnsiToUtf16(const char* c_str);
227 ConstructNonNull(str.c_str(), str.length());
230 operator ::std::string() const { return ::std::string(c_str(), length()); }
234 ConstructNonNull(str.c_str(), str.length());
237 operator ::string() const { return ::string(c_str(), length()); }
241 bool empty() const { return (c_str() != NULL) && (length() == 0); }
275 const char* c_str() const { return c_str_; } function in class:testing::internal::String
286 if (rhs.c_str() == NULL)
320 const char* const c_str = str.c_str(); local
325 os << c_str[i]; local
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 82 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
115 bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; }
gtest-string.h 92 static String ShowCStringQuoted(const char* c_str);
101 static const char* CloneCString(const char* c_str);
116 static LPCWSTR AnsiToUtf16(const char* c_str);
227 ConstructNonNull(str.c_str(), str.length());
230 operator ::std::string() const { return ::std::string(c_str(), length()); }
234 ConstructNonNull(str.c_str(), str.length());
237 operator ::string() const { return ::string(c_str(), length()); }
241 bool empty() const { return (c_str() != NULL) && (length() == 0); }
275 const char* c_str() const { return c_str_; } function in class:testing::internal::String
286 if (rhs.c_str() == NULL)
320 const char* const c_str = str.c_str(); local
325 os << c_str[i]; local
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 82 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
115 bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; }
gtest-string.h 90 static String ShowCStringQuoted(const char* c_str);
99 static const char* CloneCString(const char* c_str);
114 static LPCWSTR AnsiToUtf16(const char* c_str);
193 String(const char* c_str) { // NOLINT
194 if (c_str == NULL) {
198 ConstructNonNull(c_str, strlen(c_str));
226 ConstructNonNull(str.c_str(), str.length());
229 operator ::std::string() const { return ::std::string(c_str(), length()); }
234 ConstructNonNull(str.c_str(), str.length())
275 const char* c_str() const { return c_str_; } function in class:testing::internal::String
318 const char* const c_str = str.c_str(); local
323 os << c_str[i]; local
    [all...]
  /libnativehelper/include/nativehelper/
ScopedUtfChars.h 25 // passed a null jstring, and c_str will return NULL.
29 // if (name.c_str() == NULL) {
49 const char* c_str() const { function in class:ScopedUtfChars
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /external/clang/test/SemaCXX/
printf-cstr.cpp 14 const char *c_str() {return str;} function in class:HasCStr
33 printf("%d: %s\n", n, hcs.c_str());
34 printf("%d: %s\n", n, hcs); // expected-warning{{cannot pass non-POD object of type 'HasCStr' to variadic function; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
36 sprintf(str, "%d: %s", n, hcs); // expected-warning{{cannot pass non-POD object of type 'HasCStr' to variadic function; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
52 Printf q("%s %d", hcs, 10); // expected-warning {{cannot pass non-POD object of type 'HasCStr' to variadic constructor; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinystr.h 128 const char * c_str () const { return rep_->str; } function in class:TiXmlString
171 for (const char* p = c_str() + offset; *p != '\0'; ++p)
173 if (*p == tofind) return static_cast< size_type >( p - c_str() );
258 && ( strcmp(a.c_str(), b.c_str()) == 0 ); // actual compare
262 return strcmp(a.c_str(), b.c_str()) < 0;
270 inline bool operator == (const TiXmlString & a, const char* b) { return strcmp(a.c_str(), b) == 0; }
  /external/qemu/android/base/
String.h 50 const char* c_str() const { return mStr; } function in class:android::base::String
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.h 128 const char * c_str () const { return rep_->str; } function in class:TiXmlString
171 for (const char* p = c_str() + offset; *p != '\0'; ++p)
173 if (*p == tofind) return static_cast< size_type >( p - c_str() );
258 && ( strcmp(a.c_str(), b.c_str()) == 0 ); // actual compare
262 return strcmp(a.c_str(), b.c_str()) < 0;
270 inline bool operator == (const TiXmlString & a, const char* b) { return strcmp(a.c_str(), b) == 0; }
  /external/tinyxml/
tinystr.h 127 const char * c_str () const { return rep_->str; } function in class:TiXmlString
170 for (const char* p = c_str() + offset; *p != '\0'; ++p)
172 if (*p == tofind) return static_cast< size_type >( p - c_str() );
247 && ( strcmp(a.c_str(), b.c_str()) == 0 ); // actual compare
251 return strcmp(a.c_str(), b.c_str()) < 0;
259 inline bool operator == (const TiXmlString & a, const char* b) { return strcmp(a.c_str(), b) == 0; }
  /external/chromium_org/third_party/angle/src/compiler/translator/
InfoSink.h 65 sink.append(str.c_str());
98 const char* c_str() const { return sink.c_str(); } function in class:TInfoSinkBase
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLSL.h 91 const char* c_str() const { function in class:GrGLSLExpr
98 return fExpr.c_str();
  /external/llvm/include/llvm/ADT/
SmallString.h 270 const char* c_str() { function in class:llvm::SmallString
  /external/skia/src/gpu/gl/
GrGLSL.h 91 const char* c_str() const { function in class:GrGLSLExpr
98 return fExpr.c_str();
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 76 const ValueType* c_str() const function in class:mcld::sys::fs::Path
77 { return m_PathName.c_str(); }

Completed in 1677 milliseconds

1 2 3 4 5