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

1 2 3 4

  /bionic/libc/private/
FdPath.h 25 const char* c_str() { function in class:FdPath
  /external/perfetto/src/trace_processor/
null_term_string_view.h 54 const char* c_str() const { return data(); } function in class:perfetto::trace_processor::NullTermStringView
  /art/libartbase/base/
to_str.h 35 const char* c_str() const { function in class:art::ToStr
36 return s_.c_str();
  /device/generic/goldfish/dhcp/common/
result.h 45 const char* c_str() const { return mMessage.c_str(); } function in class:Result
  /device/generic/goldfish/network/netmgr/
result.h 45 const char* c_str() const { return mMessage.c_str(); } function in class:Result
  /device/generic/goldfish/wifi/ipv6proxy/
result.h 33 const char* c_str() const { return mMessage; } function in class:Result
  /external/conscrypt/common/src/jni/unbundled/include/nativehelper/
scoped_utf_chars.h 25 // passed a null jstring, and c_str will return nullptr.
29 // if (name.c_str() == nullptr) {
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/googletest/googletest/include/gtest/internal/
gtest-filepath.h 81 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-filepath.h 81 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'; }
  /external/mdnsresponder/mDNSWindows/DLL.NET/
PString.h 54 c_str() function in class:Apple::PString
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallString.h 45 const char* c_str() { function in class:llvm::SmallString
  /external/swiftshader/third_party/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'; }
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTStringHash.cpp 194 @Function c_str
198 const char* CPVRTStringHash::c_str() const function in class:CPVRTStringHash
200 return m_String.c_str();
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /art/test/ti-agent/
scoped_utf_chars.h 70 const char* c_str() const { function in class:art::ScopedUtfChars
  /cts/tests/signature/dex-checker/
dex-checker.cpp 35 const char* c_str() const { function in class:ScopedUtfChars
50 jfieldID fid = env->GetFieldID(klass, utf_name.c_str(), utf_type.c_str());
64 jfieldID fid = env->GetStaticFieldID(klass, utf_name.c_str(), utf_type.c_str());
78 jmethodID mid = env->GetMethodID(klass, utf_name.c_str(), utf_signature.c_str());
92 jmethodID mid = env->GetStaticMethodID(klass, utf_name.c_str(), utf_signature.c_str());
  /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/pdfium/core/fxcrt/
bytestring_unittest.cpp 26 EXPECT_EQ(abc.c_str(), mutable_abc.c_str());
30 EXPECT_EQ(abc.c_str(), mutable_abc.c_str());
33 const char* c_str = abc.c_str(); local
35 EXPECT_EQ(c_str, abc.c_str());
36 EXPECT_NE(c_str, mutable_abc.c_str());
    [all...]
widestring_unittest.cpp 25 EXPECT_EQ(abc.c_str(), mutable_abc.c_str());
29 EXPECT_EQ(abc.c_str(), mutable_abc.c_str());
32 const wchar_t* c_str = abc.c_str(); local
34 EXPECT_EQ(c_str, abc.c_str());
35 EXPECT_NE(c_str, mutable_abc.c_str());
    [all...]
  /external/bsdiff/
test_utils.h 47 const char* c_str() const { return filename_.c_str(); } function in class:test_utils::ScopedTempFile

Completed in 2248 milliseconds

1 2 3 4