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

1 2 3 4

  /ndk/sources/android/crazy_linker/src/
crazy_linker_error.h 29 const char* c_str() const { return buff_; } function in class:crazy::Error
  /art/runtime/base/
to_str.h 35 const char* c_str() const { function in class:art::ToStr
36 return s_.c_str();
  /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/google-breakpad/src/testing/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/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 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...]
  /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/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/llvm/include/llvm/ADT/
SmallString.h 270 const char* c_str() { function in class:llvm::SmallString
  /external/skia/src/gpu/gl/
GrGLSL.h 99 const char* c_str() const { function in class:GrGLSLExpr
106 return fExpr.c_str();
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 77 const ValueType* c_str() const { return m_PathName.c_str(); } function in class:mcld::sys::fs::Path
  /external/llvm/lib/Support/Windows/
WindowsSupport.h 162 c_str(SmallVectorImpl<T> &str) { function in namespace:llvm
  /external/openfst/src/include/fst/
string.h 78 char *c_str = new char[str.size() + 1]; local
79 str.copy(c_str, str.size());
80 c_str[str.size()] = 0;
83 SplitToVector(c_str, separator.c_str(), &vec, true);
90 delete[] c_str;
  /external/skia/include/gpu/
GrShaderVar.h 157 * Shortcut for this->getName().c_str();
159 const char* c_str() const { return this->getName().c_str(); } function in class:GrShaderVar
  /external/v8/src/
ostreams.h 84 const char* c_str() const { return data(); } function in class:v8::internal::OStringStream
  /art/runtime/native/
dalvik_system_DexFile.cc 114 // // ... use name.c_str()
129 const char* c_str() const { function in class:art::NullableScopedUtfChars
155 if (sourceName.c_str() == nullptr) {
167 dex_files = linker->OpenDexFilesFromOat(sourceName.c_str(), outputName.c_str(), &error_msgs);
188 ThrowWrappedIOException("%s", it->c_str());
228 if (class_name.c_str() == nullptr) {
232 const std::string descriptor(DotToDescriptor(class_name.c_str()));
233 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str()));
235 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor.c_str(), hash)
    [all...]

Completed in 569 milliseconds

1 2 3 4