/external/google-breakpad/src/testing/gtest/samples/ |
H A D | sample2_unittest.cc | 52 // Asserts that s.c_string() returns NULL. 72 EXPECT_STREQ(NULL, s.c_string()); 82 EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); 91 EXPECT_EQ(0, strcmp(s2.c_string(), kHelloString)); 99 EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); 103 s.Set(s.c_string()); 104 EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); 108 EXPECT_STREQ(NULL, s.c_string());
|
H A D | sample2.h | 74 const char* c_string() const { return c_string_; } function in class:MyString 81 void Set(const char* c_string);
|
/external/protobuf/gtest/samples/ |
H A D | sample2_unittest.cc | 52 // Asserts that s.c_string() returns NULL. 72 EXPECT_STREQ(NULL, s.c_string()); 82 EXPECT_TRUE(strcmp(s.c_string(), kHelloString) == 0); 91 EXPECT_TRUE(strcmp(s2.c_string(), kHelloString) == 0); 99 EXPECT_TRUE(strcmp(s.c_string(), kHelloString) == 0); 103 s.Set(s.c_string()); 104 EXPECT_TRUE(strcmp(s.c_string(), kHelloString) == 0); 108 EXPECT_STREQ(NULL, s.c_string());
|
H A D | sample2.h | 75 const char* c_string() const { return c_string_; } function in class:MyString 82 void Set(const char* c_string);
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
H A D | sample2_unittest.cc | 52 // Asserts that s.c_string() returns NULL. 72 EXPECT_STREQ(NULL, s.c_string()); 82 EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); 91 EXPECT_EQ(0, strcmp(s2.c_string(), kHelloString)); 99 EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); 103 s.Set(s.c_string()); 104 EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); 108 EXPECT_STREQ(NULL, s.c_string());
|
H A D | sample2.h | 74 const char* c_string() const { return c_string_; } function in class:MyString 81 void Set(const char* c_string);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xstutil/include/ |
H A D | d3d1xstutil.h | 729 struct c_string struct 732 c_string(const char* p) function in struct:c_string 742 static inline bool operator ==(const c_string& a, const c_string& b) 747 static inline bool operator !=(const c_string& a, const c_string& b) 796 struct hash<c_string> : public std::unary_function<c_string, size_t> 798 inline size_t operator()(c_string __val) const; 801 inline size_t hash<c_string> [all...] |
/external/pdfium/fpdfsdk/src/javascript/ |
H A D | JS_Value.h | 114 void operator<<(const FX_WCHAR* c_string);
|
H A D | JS_Value.cpp | 369 void CJS_PropValue::operator<<(const FX_WCHAR* c_string) { argument 371 CJS_Value::operator=(c_string);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/ |
H A D | connection.py | 405 c_string = boto.utils.canonical_string(method, auth_path, headers, 407 b64_hmac = self._auth_handler.sign_string(c_string)
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
H A D | d3d11_screen.h | 660 typedef std::unordered_map<std::pair<c_string, unsigned>, unsigned> semantic_to_idx_map_t; 663 semantic_to_idx_map[std::make_pair(c_string(input_element_descs[i].SemanticName), input_element_descs[i].SemanticIndex)] = i; 700 semantic_to_idx_map_t::iterator iter = semantic_to_idx_map.find(std::make_pair(c_string(params[i].SemanticName), params[i].SemanticIndex));
|
/external/v8/src/crankshaft/ |
H A D | hydrogen-instructions.cc | 4325 HConstant* c_string = HConstant::cast(string); local 4327 if (c_string->HasStringValue() && c_index->HasInteger32Value()) { 4328 Handle<String> s = c_string->StringValue();
|
H A D | hydrogen.cc | 7203 HConstant* c_string = HConstant::cast(string); local 7204 if (c_string->HasStringValue()) { 7205 return Add<HConstant>(c_string->StringValue()->map()->instance_type()); 7221 HConstant* c_string = HConstant::cast(string); local 7222 if (c_string->HasStringValue()) { 7223 return New<HConstant>(c_string->StringValue()->length()); 10763 HConstant* c_string = HConstant::cast(string); local 10765 if (c_string->HasStringValue() && c_index->HasNumberValue()) { 10767 Handle<String> s = c_string->StringValue();
|
/external/v8/test/cctest/ |
H A D | test-api.cc | 14906 const char* c_string = "Now is the time for all good men" local 14908 uint16_t* two_byte_string = AsciiToTwoByteString(c_string); 14914 i::Vector<const char>(c_string, i::StrLength(c_string))); 14917 i::StrLength(c_string)));
|