Home
last modified time | relevance | path

Searched refs:GetString (Results 1 – 25 of 204) sorted by relevance

123456789

/third_party/googletest/googletest/test/
Dgoogletest-message-test.cc48 EXPECT_EQ("", msg.GetString()); in TEST()
55 EXPECT_EQ("Hello", msg2.GetString()); in TEST()
61 EXPECT_EQ("Hello", msg.GetString()); in TEST()
66 const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString(); in TEST()
76 .GetString(); in TEST()
86 EXPECT_NE("(null)", (Message() << p).GetString()); in TEST()
92 EXPECT_EQ("(null)", (Message() << p).GetString()); in TEST()
97 EXPECT_EQ("Foo", (Message() << "Foo").GetString()); in TEST()
103 EXPECT_EQ("(null)", (Message() << p).GetString()); in TEST()
109 EXPECT_EQ("Hello", (Message() << str).GetString()); in TEST()
[all …]
Dgoogletest-listener-test.cc70 g_events->push_back(message.GetString()); in OnTestIterationStart()
117 g_events->push_back(message.GetString()); in OnTestIterationEnd()
145 g_events->push_back(message.GetString()); in OnTestIterationStart()
189 g_events->push_back(message.GetString()); in OnTestIterationEnd()
/third_party/openh264/test/build/windowsphone/codec_ut/CodecUTApp/Resources/
DAppResources.Designer.cs70 return ResourceManager.GetString ("AppBarButtonText", resourceCulture);
79 return ResourceManager.GetString ("AppBarMenuItemText", resourceCulture);
88 return ResourceManager.GetString ("ApplicationTitle", resourceCulture);
97 return ResourceManager.GetString ("ResourceFlowDirection", resourceCulture);
106 return ResourceManager.GetString ("ResourceLanguage", resourceCulture);
/third_party/openh264/codec/build/windowsphone/all/CodecApp/Resources/
DAppResources.Designer.cs70 return ResourceManager.GetString ("AppBarButtonText", resourceCulture);
79 return ResourceManager.GetString ("AppBarMenuItemText", resourceCulture);
88 return ResourceManager.GetString ("ApplicationTitle", resourceCulture);
97 return ResourceManager.GetString ("ResourceFlowDirection", resourceCulture);
106 return ResourceManager.GetString ("ResourceLanguage", resourceCulture);
/third_party/gptfdisk/
Dgptcl.cc138 cmd = GetString(attributeOperation, 1); in DoOptions()
176 switch (ManageAttributes(partNum, GetString(attributeOperation, 2), in DoOptions()
177 GetString(attributeOperation, 3))) { in DoOptions()
219 name = GetString(partName, 2); in DoOptions()
224 << "'s name to '" << GetString(partName, 2) << "'!\n"; in DoOptions()
318 … startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, sectorAlignment, low); in DoOptions()
319 … endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, sectorAlignment, high); in DoOptions()
393 typeHelper = GetString(typeCode, 2); in DoOptions()
399 << "'s type code to " << GetString(typeCode, 2) << "!\n"; in DoOptions()
417 SetPartitionGUID(partNum, GetString(partGUID, 2).c_str()); in DoOptions()
[all …]
/third_party/skia/tools/gpu/gl/interface/
Dtemplates.go34 GET_PROC_LOCAL(GetString);
35 if (nullptr == GetString) {
39 const char* verStr = reinterpret_cast<const char*>(GetString(GR_GL_VERSION));
52 if (!extensions.init(kGLES_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString,
111 GET_PROC_LOCAL(GetString);
116 if (nullptr == GetString || nullptr == GetIntegerv) {
120 const char* versionString = (const char*) GetString(GR_GL_VERSION);
132 if (!extensions.init(kGL_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString,
/third_party/protobuf/src/google/protobuf/
Ddynamic_message_unittest.cc197 EXPECT_EQ("", reflection->GetString( in TEST_P()
199 EXPECT_EQ("", reflection->GetString(*message, in TEST_P()
201 EXPECT_EQ("", reflection->GetString( in TEST_P()
203 EXPECT_EQ("", reflection->GetString( in TEST_P()
230 EXPECT_EQ("STRING", reflection->GetString( in TEST_P()
232 EXPECT_EQ("CORD", reflection->GetString( in TEST_P()
235 reflection->GetString( in TEST_P()
237 EXPECT_EQ("BYTES", reflection->GetString( in TEST_P()
Dgenerated_message_reflection_unittest.cc695 EXPECT_EQ("", reflection->GetString( in TEST()
697 EXPECT_EQ("", reflection->GetString(message, in TEST()
699 EXPECT_EQ("", reflection->GetString( in TEST()
701 EXPECT_EQ("", reflection->GetString( in TEST()
718 EXPECT_EQ("STRING", reflection->GetString( in TEST()
720 EXPECT_EQ("CORD", reflection->GetString( in TEST()
723 reflection->GetString( in TEST()
725 EXPECT_EQ("BYTES", reflection->GetString( in TEST()
738 EXPECT_EQ("abc", reflection->GetString( in TEST()
742 EXPECT_EQ("bytes", reflection->GetString( in TEST()
[all …]
Dtest_util.h380 EXPECT_EQ("101", reflection->GetString( in ExpectOneofSetViaReflection()
389 EXPECT_EQ("103", reflection->GetString( in ExpectOneofSetViaReflection()
505 EXPECT_EQ("115", reflection->GetString(message, F("optional_string"))); in ExpectAllFieldsSetViaReflection1()
506 EXPECT_EQ("116", reflection->GetString(message, F("optional_bytes"))); in ExpectAllFieldsSetViaReflection1()
540 EXPECT_EQ("124", reflection->GetString(message, F("optional_string_piece"))); in ExpectAllFieldsSetViaReflection1()
544 EXPECT_EQ("125", reflection->GetString(message, F("optional_cord"))); in ExpectAllFieldsSetViaReflection1()
549 EXPECT_EQ("604", reflection->GetString(message, F("oneof_bytes"))); in ExpectAllFieldsSetViaReflection1()
558 EXPECT_EQ("603", reflection->GetString(message, F("oneof_string"))); in ExpectAllFieldsSetViaReflection1()
783 EXPECT_EQ("415", reflection->GetString(message, F("default_string"))); in ExpectAllFieldsSetViaReflection3()
784 EXPECT_EQ("416", reflection->GetString(message, F("default_bytes"))); in ExpectAllFieldsSetViaReflection3()
[all …]
/third_party/googletest/googletest/include/gtest/
Dgtest-message.h106 *ss_ << msg.GetString(); in Message()
188 std::string GetString() const;
201 return os << sb.GetString();
212 return (Message() << streamable).GetString(); in StreamableToString()
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest-message.h102 *ss_ << msg.GetString(); in Message()
186 std::string GetString() const;
199 return os << sb.GetString();
210 return (Message() << streamable).GetString(); in StreamableToString()
/third_party/node/deps/googletest/include/gtest/
Dgtest-message.h106 *ss_ << msg.GetString(); in Message()
188 std::string GetString() const;
201 return os << sb.GetString();
212 return (Message() << streamable).GetString(); in StreamableToString()
/third_party/cef/tests/cefclient/browser/
Dosr_accessibility_node.cc45 role_ = value->GetString("role"); in UpdateValue()
86 child_tree_id_ = attributes_->GetString("childTreeId"); in UpdateValue()
89 name_ = attributes_->GetString("name"); in UpdateValue()
91 value_ = attributes_->GetString("value"); in UpdateValue()
93 description_ = attributes_->GetString("description"); in UpdateValue()
Dosr_accessibility_helper.cc30 parent_tree_id_ = value->GetString("parent_tree_id"); in UpdateTreeData()
48 const std::string& str = value->GetString(); in CastToInt()
75 CefString treeId = locationChangeDict->GetString("ax_tree_id"); in UpdateAccessibilityLocation()
103 CefString treeId = mainDict->GetString("ax_tree_id"); in UpdateAccessibilityTree()
177 UpdateFocusedNode(tree_data->GetString("focused_tree_id"), in UpdateLayout()
Dmedia_router_test.cc406 const std::string& message_name = request_dict->GetString(kNameKey); in OnQuery()
441 const std::string& source_urn = request_dict->GetString(kSourceKey); in OnQuery()
442 const std::string& sink_id = request_dict->GetString(kSinkKey); in OnQuery()
457 const std::string& route_id = request_dict->GetString(kRouteKey); in OnQuery()
475 const std::string& route_id = request_dict->GetString(kRouteKey); in OnQuery()
476 const std::string& message = request_dict->GetString(kMessageKey); in OnQuery()
/third_party/skia/src/gpu/gl/
DGrGLAssembleInterface.cpp16 GET_PROC_LOCAL(GetString); in GrGLMakeAssembledInterface()
17 if (nullptr == GetString) { in GrGLMakeAssembledInterface()
21 const char* verStr = reinterpret_cast<const char*>(GetString(GR_GL_VERSION)); in GrGLMakeAssembledInterface()
DGrGLAssembleGLESInterfaceAutogen.cpp28 GET_PROC_LOCAL(GetString); in GrGLMakeAssembledGLESInterface()
29 if (nullptr == GetString) { in GrGLMakeAssembledGLESInterface()
33 const char* verStr = reinterpret_cast<const char*>(GetString(GR_GL_VERSION)); in GrGLMakeAssembledGLESInterface()
46 if (!extensions.init(kGLES_GrGLStandard, GetString, GetStringi, GetIntegerv, queryString, in GrGLMakeAssembledGLESInterface()
99 GET_PROC(GetString); in GrGLMakeAssembledGLESInterface()
/third_party/cef/tests/ceftests/
Dosr_accessibility_unittest.cc135 event->GetString("event_type") != "loadComplete") { in OnAccessibilityTreeChange()
158 event->GetString("event_type") != "loadComplete") { in OnAccessibilityTreeChange()
330 const std::string& cur_event_type = cur_event->GetString("event_type"); in GetFirstMatchingEvent()
345 if (!event.get() || event->GetString("event_type") != "loadComplete") { in TestEnableAccessibilityUpdate()
355 treeData->GetString("title").ToString().c_str()); in TestEnableAccessibilityUpdate()
356 EXPECT_STREQ(kTestUrl, treeData->GetString("url").ToString().c_str()); in TestEnableAccessibilityUpdate()
367 if (node->GetString("role").ToString() == "rootWebArea") { in TestEnableAccessibilityUpdate()
397 if (node->GetString("role").ToString() == "textField") { in SetEditBoxIdAndRect()
/third_party/skia/third_party/externals/angle2/util/capture/
Dframe_capture_test_utils.cpp63 angle::SplitStringAlongWhitespace(arrayElement.GetString(), &traceAndVersion); in LoadTraceNamesFromJSON()
99 angle::HexStringToUInt(meta["DrawSurfaceColorSpace"].GetString(), in LoadTraceInfoFromJSON()
101 angle::HexStringToUInt(meta["DisplayPlatformType"].GetString(), in LoadTraceInfoFromJSON()
103 angle::HexStringToUInt(meta["DisplayDeviceType"].GetString(), in LoadTraceInfoFromJSON()
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_shading_language_100.txt104 RESOLVED: Yes. The other GetString queries (VERSION, EXTENSIONS,
121 Accepted by the <name> parameter of GetString:
161 The error INVALID_ENUM may be generated by GetString if <name> is
174 EXTENSIONS S GetString - Supported extensions 6.1.11 -
175 RENDERER S GetString - Renderer string 6.1.11 -
176 SHADING_LANGUAGE_VERSION S GetString - Shading Language 6.1.11 -
178 VENDOR S GetString - Vendor string 6.1.11 -
179 VERSION S GetString - OpenGL version 6.1.11 -
221 Corrected omission of other GetString queries from the state tables.
/third_party/openGLES/extensions/ARB/
DARB_shading_language_100.txt114 RESOLVED: Yes. The other GetString queries (VERSION, EXTENSIONS,
131 Accepted by the <name> parameter of GetString:
171 The error INVALID_ENUM may be generated by GetString if <name> is
184 EXTENSIONS S GetString - Supported extensions 6.1.11 -
185 RENDERER S GetString - Renderer string 6.1.11 -
186 SHADING_LANGUAGE_VERSION S GetString - Shading Language 6.1.11 -
188 VENDOR S GetString - Vendor string 6.1.11 -
189 VERSION S GetString - OpenGL version 6.1.11 -
231 Corrected omission of other GetString queries from the state tables.
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglcontext.c594 const GLubyte *(GSTGLAPI * GetString) (GLenum name); in gst_gl_context_get_current_gl_api()
606 GetString = in gst_gl_context_get_current_gl_api()
614 if (!GetString) { in gst_gl_context_get_current_gl_api()
618 version = (const gchar *) GetString (GL_VERSION); in gst_gl_context_get_current_gl_api()
1107 if (!gl->GetString || !gl->GetString (GL_VERSION)) { in _create_context_info()
1113 if (!gl->GetString (GL_SHADING_LANGUAGE_VERSION)) { in _create_context_info()
1120 GST_STR_NULL ((const gchar *) gl->GetString (GL_VERSION))); in _create_context_info()
1123 gl->GetString (GL_SHADING_LANGUAGE_VERSION))); in _create_context_info()
1125 GST_STR_NULL ((const gchar *) gl->GetString (GL_VENDOR))); in _create_context_info()
1127 GST_STR_NULL ((const gchar *) gl->GetString (GL_RENDERER))); in _create_context_info()
[all …]
/third_party/gn/src/gn/
Dohos_components_checker.cc91 all_deps_config_.push_back(value.GetString()); in LoadAllDepsConfigWhitelist()
98 includes_over_range_.push_back(value.GetString()); in LoadIncludesOverRangeWhitelist()
106 innerapi_public_deps_inner_[info.first].push_back(value_tmp.GetString()); in LoadInnerApiPublicDepsInnerWhitelist()
114 innerapi_not_lib_.push_back(value.GetString()); in LoadInnerApiNotLibWhitelist()
121 innerapi_not_declare_.push_back(value.GetString()); in LoadInnerApiNotDeclareWhitelist()
129 includes_absolute_deps_other_[info.first].push_back(value_tmp.GetString()); in LoadIncludesAbsoluteDepsOtherWhitelist()
138 target_absolute_deps_other_[info.first].push_back(value_tmp.GetString()); in LoadAbsoluteDepsOtherWhitelist()
147 import_other_[info.first].push_back(value_tmp.GetString()); in LoadImportOtherWhitelist()
/third_party/node/deps/v8/src/ast/
Dast-value-factory.cc324 one_character_strings_[key] = GetString(raw_hash_field, true, literal); in GetOneByteStringInternal()
330 return GetString(raw_hash_field, true, literal); in GetOneByteStringInternal()
337 return GetString(raw_hash_field, false, in GetTwoByteStringInternal()
341 const AstRawString* AstValueFactory::GetString( in GetString() function in v8::internal::AstValueFactory
387 const AstRawString* AstValueFactory::GetString( in GetString() function in v8::internal::AstValueFactory
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DBackendGL.cpp189 mPCIInfo.name = reinterpret_cast<const char*>(mFunctions.GetString(GL_RENDERER)); in InitializeImpl()
192 const char* vendor = reinterpret_cast<const char*>(mFunctions.GetString(GL_VENDOR)); in InitializeImpl()
196 reinterpret_cast<const char*>(mFunctions.GetString(GL_VERSION)); in InitializeImpl()

123456789