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

1 2 3 4

  /bionic/libc/private/
FdPath.h 25 const char* c_str() { function in class:FdPath
  /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/wifi/ipv6proxy/
result.h 33 const char* c_str() const { return mMessage; } function in class:Result
  /external/conscrypt/common/src/jni/unbundled/include/nativehelper/
ScopedUtfChars.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'; }
  /external/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/libvpx/libvpx/third_party/googletest/src/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'; }
  /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/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'; }
  /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/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-filepath.h 78 const char* c_str() const { return pathname_.c_str(); } function in class:testing::internal::FilePath
  /prebuilts/ndk/r16/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
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/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());
63 jfieldID fid = env->GetStaticFieldID(klass, utf_name.c_str(), utf_type.c_str());
76 jmethodID mid = env->GetMethodID(klass, utf_name.c_str(), utf_signature.c_str());
89 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...]
  /frameworks/base/tools/aapt2/jni/
ScopedUtfChars.h 64 const char* c_str() const { function in class:ScopedUtfChars

Completed in 1196 milliseconds

1 2 3 4