/third_party/protobuf/php/tests/ |
H A D | WrapperTypeSettersTest.php | 13 use Google\Protobuf\StringValue; 110 [TestWrapperSetters::class, StringValue::class, "setStringValue", "setStringValueUnwrapped", "getStringValue", "getStringValueUnwrapped", [ 111 ["asdf", new StringValue(["value" => "asdf"])], 112 ["", new StringValue(["value" => ""])], 114 ["", new StringValue()], 115 [5, new StringValue(["value" => "5"])], // Test conversion from number to string 116 [5.5, new StringValue(["value" => "5.5"])], // Test conversion from number to string 117 [-7, new StringValue(["value" => "-7"])], // Test conversion from number to string 118 [-7.5, new StringValue(["value" => "-7.5"])], // Test conversion from number to string 136 [TestWrapperSetters::class, StringValue [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MIRYamlMapping.h | 34 struct StringValue { struct 38 StringValue() = default; 39 StringValue(std::string Value) : Value(std::move(Value)) {} in StringValue() function 40 StringValue(const char Val[]) : Value(Val) {} in StringValue() function 42 bool operator==(const StringValue &Other) const { in operator ==() 47 template <> struct ScalarTraits<StringValue> { 48 static void output(const StringValue &S, void *, raw_ostream &OS) { in output() 52 static StringRef input(StringRef Scalar, void *Ctx, StringValue &S) { in input() 63 struct FlowStringValue : StringValue { 65 FlowStringValue(std::string Value) : StringValue(st [all...] |
/third_party/skia/dm/ |
H A D | DMJsonWriter.cpp | 126 br.name = key["name"].as<StringValue>().begin(); in ReadJson() 127 br.config = key["config"].as<StringValue>().begin(); in ReadJson() 128 br.sourceType = key["source_type"].as<StringValue>().begin(); in ReadJson() 129 br.ext = options["ext"].as<StringValue>().begin(); in ReadJson() 130 br.gamut = options["gamut"].as<StringValue>().begin(); in ReadJson() 131 br.transferFn = options["transfer_fn"].as<StringValue>().begin(); in ReadJson() 132 br.colorType = options["color_type"].as<StringValue>().begin(); in ReadJson() 133 br.alphaType = options["alpha_type"].as<StringValue>().begin(); in ReadJson() 134 br.colorDepth = options["color_depth"].as<StringValue>().begin(); in ReadJson() 135 br.md5 = (*r)["md5"].as<StringValue>() in ReadJson() [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | JsonParser.cs | 91 { StringValue.Descriptor.FullName, MergeWrapperField }, 189 string name = token.StringValue; in Merge() 304 object key = ParseMapKey(keyField, token.StringValue); in MergeMapField() 375 case JsonToken.TokenType.StringValue: in ParseSingleValue() 376 return ParseSingleStringValue(field, token.StringValue); in ParseSingleValue() 454 case JsonToken.TokenType.StringValue: in MergeStructValue() 455 fields[Value.StringValueFieldNumber].Accessor.SetValue(message, firstToken.StringValue); in MergeStructValue() 516 token.StringValue != JsonFormatter.AnyTypeUrlField || in MergeAny() 530 if (token.Type != JsonToken.TokenType.StringValue) in MergeAny() 534 string typeUrl = token.StringValue; in MergeAny() [all...] |
H A D | JsonToken.cs | 65 return new JsonToken(TokenType.StringValue, stringValue: value); in Value() 78 StringValue, enumerator 98 internal string StringValue { get { return stringValue; } } property in Google.Protobuf.JsonToken 137 case TokenType.StringValue: in ToString()
|
/third_party/skia/tests/ |
H A D | JSONTest.cpp | 180 check_vector<StringValue>(reporter, v, s ? strlen(s) : 0, !!s); in check_string() 182 REPORTER_ASSERT(reporter, !strcmp(v.as<StringValue>().begin(), s)); in check_string() 288 check_vector<StringValue>(reporter, v.as<ArrayValue>()[2], 3, true); in DEF_TEST() 354 const auto v6 = StringValue(nullptr, 0, alloc); in DEF_TEST() 355 check_value<StringValue>(reporter, v6, "\"\""); in DEF_TEST() 357 const auto v7 = StringValue(" foo ", 5, alloc); in DEF_TEST() 358 check_value<StringValue>(reporter, v7, "\" foo \""); in DEF_TEST() 360 const auto v8 = StringValue(" foo bar baz ", 13, alloc); in DEF_TEST() 361 check_value<StringValue>(reporter, v8, "\" foo bar baz \""); in DEF_TEST() 374 { StringValue("key_ in DEF_TEST() [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | Struct.cs | 46 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Value), global::Google.Protobuf.WellKnownTypes.Value.Parser, new[]{ "NullValue", "NumberValue", "StringValue", "BoolValue", "StructValue", "ListValue" }, new[]{ "Kind" }, null, null, null), in StructReflection() 288 case KindOneofCase.StringValue: in Value() 289 StringValue = other.StringValue; in Value() 344 public string StringValue { property in Google.Protobuf.WellKnownTypes.Value 345 get { return kindCase_ == KindOneofCase.StringValue ? (string) kind_ : ""; } 348 kindCase_ = KindOneofCase.StringValue; 400 StringValue = 3, enumerator 432 if (StringValue != other.StringValue) retur in Equals() [all...] |
H A D | Wrappers.cs | 47 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.StringValue), global::Google.Protobuf.WellKnownTypes.StringValue.Parser, new[]{ "Value" }, null, null, null, null), in WrappersReflection() 1318 /// The JSON representation for `StringValue` is JSON string. 1320 public sealed partial class StringValue : pb::IMessage<StringValue> class 1325 private static readonly pb::MessageParser<StringValue> _parser = new pb::MessageParser<StringValue>(() => new StringValue()); 1328 public static pb::MessageParser<StringValue> Parser { get { return _parser; } } 1341 public StringValue() { in StringValue() method in Google.Protobuf.WellKnownTypes.StringValue 1348 public StringValue(StringValue other) : this() { StringValue() method in Google.Protobuf.WellKnownTypes.StringValue [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | wrappers.pb.cc | 48 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<StringValue> _instance; 144 new (ptr) PROTOBUF_NAMESPACE_ID::StringValue(); in InitDefaultsscc_info_StringValue_google_2fprotobuf_2fwrappers_2eproto() 147 PROTOBUF_NAMESPACE_ID::StringValue::InitAsDefaultInstance(); in InitDefaultsscc_info_StringValue_google_2fprotobuf_2fwrappers_2eproto() 229 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::StringValue, _internal_metadata_), 233 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::StringValue, value_), 249 { 42, -1, sizeof(PROTOBUF_NAMESPACE_ID::StringValue)}, 272 "\r\n\005value\030\001 \001(\010\"\034\n\013StringValue\022\r\n\005value\030\001" 1679 void StringValue::InitAsDefaultInstance() { in InitAsDefaultInstance() 1681 class StringValue::_Internal { 1685 StringValue function in StringValue 1691 StringValue::StringValue(const StringValue& from) StringValue() function in StringValue [all...] |
H A D | wrappers.pb.h | 76 class StringValue; 93 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::StringValue* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_ID::StringValue>(Arena*); 1060 class PROTOBUF_EXPORT StringValue PROTOBUF_FINAL : 1061 public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:google.protobuf.StringValue) */ { 1063 inline StringValue() : StringValue(nullptr) {} in StringValue() function in PROTOBUF_FINAL 1064 virtual ~StringValue(); 1066 StringValue(const StringValue 1068 : StringValue() { StringValue() function in PROTOBUF_FINAL [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIMachineFunctionInfo.h | 121 StringValue RegisterName; 132 StringValue(Other.RegisterName); in SIArgument() 141 StringValue(Other.RegisterName); in operator =() 149 RegisterName.~StringValue(); in ~SIArgument() 278 StringValue ScratchRSrcReg = "$private_rsrc_reg"; 279 StringValue ScratchWaveOffsetReg = "$scratch_wave_offset_reg"; 280 StringValue FrameOffsetReg = "$fp_reg"; 281 StringValue StackPtrOffsetReg = "$sp_reg"; 305 StringValue("$private_rsrc_reg")); in mapping() 307 StringValue(" in mapping() [all...] |
/third_party/skia/modules/skottie/src/layers/ |
H A D | TextLayer.cpp | 213 const skjson::StringValue* jname = (*jfont)["fName"]; in parseFonts() 214 const skjson::StringValue* jfamily = (*jfont)["fFamily"]; in parseFonts() 215 const skjson::StringValue* jstyle = (*jfont)["fStyle"]; in parseFonts() 216 const skjson::StringValue* jpath = (*jfont)["fPath"]; in parseFonts() 320 const skjson::StringValue* jch = (*jchar)["ch"]; in resolveEmbeddedTypefaces() 325 const skjson::StringValue* jfamily = (*jchar)["fFamily"]; in resolveEmbeddedTypefaces() 326 const skjson::StringValue* jstyle = (*jchar)["style"]; // "style", not "fStyle"... in resolveEmbeddedTypefaces()
|
H A D | AudioLayer.cpp | 59 const skjson::StringValue* name = jaudio["p"]; in attachAudioLayer() 60 const skjson::StringValue* path = jaudio["u"]; in attachAudioLayer() 61 const skjson::StringValue* id = jaudio["id"]; in attachAudioLayer()
|
H A D | FootageLayer.cpp | 80 const skjson::StringValue* name = jimage["p"]; in loadFootageAsset() 81 const skjson::StringValue* path = jimage["u"]; in loadFootageAsset() 82 const skjson::StringValue* id = jimage["id"]; in loadFootageAsset()
|
H A D | PrecompLayer.cpp | 91 const skjson::StringValue* id = jlayer["refId"]; in attachExternalPrecompLayer() 92 const skjson::StringValue* nm = jlayer["nm"]; in attachExternalPrecompLayer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMELFStreamer.cpp | 94 StringRef StringValue) override; 207 StringRef StringValue) { 212 if (!StringValue.empty()) 213 OS << ", \"" << StringValue << "\""; 285 std::string StringValue; 347 Item->StringValue = Value; 362 StringRef StringValue, bool OverwriteExisting) { 369 Item->StringValue = StringValue; 378 StringValue [all...] |
/third_party/skia/src/utils/ |
H A D | SkJSON.h | 48 * const StringValue* id = v.as<ObjectValue>()["id"]; 284 class StringValue final : public Value { 288 StringValue(); 289 StringValue(const char* src, size_t size, SkArenaAlloc& alloc); 320 StringValue fKey;
|
/third_party/skia/modules/particles/include/ |
H A D | SkParticleSerialization.h | 86 for (const skjson::StringValue* line : *lines) { 101 const skjson::StringValue* typeString = get("Type"); 159 if (const skjson::StringValue* str = v) { in TryParse()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-webdriver-serializer.cc | 34 protocol::StringValue::create(webDriver_value->getType())); in _serializeRecursively() 84 protocol::StringValue::create(toProtocolString( in _serializeRegexp() 90 protocol::StringValue::create(flags)); in _serializeRegexp() 103 (*result)->setValue(protocol::StringValue::create( in _serializeDate() 175 key_protocol_value = protocol::StringValue::create( in _serializeMap() 190 // command->pushValue(protocol::StringValue::create(method)); in _serializeMap() 243 key_protocol_value = protocol::StringValue::create( in _serializeObjectValue()
|
/third_party/node/src/ |
H A D | env.cc | 296 #define VP(PropertyName, StringValue) V(Private, PropertyName) in Serialize() 297 #define VY(PropertyName, StringValue) V(Symbol, PropertyName) in Serialize() 298 #define VS(PropertyName, StringValue) V(String, PropertyName) in Serialize() 340 #define VP(PropertyName, StringValue) V(Private, PropertyName) in DeserializeProperties() 341 #define VY(PropertyName, StringValue) V(Symbol, PropertyName) in DeserializeProperties() 342 #define VS(PropertyName, StringValue) V(String, PropertyName) in DeserializeProperties() 414 #define V(PropertyName, StringValue) \ in CreateProperties() 420 reinterpret_cast<const uint8_t*>(StringValue), \ in CreateProperties() 422 sizeof(StringValue) - 1) \ in CreateProperties() 426 #define V(PropertyName, StringValue) \ in CreateProperties() [all...] |
H A D | env.h | 144 #define VP(PropertyName, StringValue) V(v8::Private, PropertyName) 145 #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) 146 #define VS(PropertyName, StringValue) V(v8::String, PropertyName) 181 #define VP(PropertyName, StringValue) V(v8::Private, PropertyName) 182 #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) 183 #define VS(PropertyName, StringValue) V(v8::String, PropertyName) 789 #define VP(PropertyName, StringValue) V(v8::Private, PropertyName) 790 #define VY(PropertyName, StringValue) V(v8::Symbol, PropertyName) 791 #define VS(PropertyName, StringValue) V(v8::String, PropertyName)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
H A D | MILexer.h | 168 StringRef StringValue; member 217 StringRef stringValue() const { return StringValue; } in stringValue()
|
/third_party/skia/modules/skottie/src/effects/ |
H A D | SkSLEffect.cpp | 73 const skjson::StringValue* jShader = (*jSkSL)["sh"]; in SkSLEffectAdapter() 90 const skjson::StringValue* uniformName = (*jprop)["nm"]; in SkSLEffectAdapter()
|
/third_party/skia/modules/skottie/src/text/ |
H A D | TextValue.cpp | 22 const skjson::StringValue* font_name = (*jtxt)["f"]; in Parse() 23 const skjson::StringValue* text = (*jtxt)["t"]; in Parse()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/ |
H A D | UnittestIssues.cs | 74 new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.NullValueOutsideStruct), global::UnitTest.Issues.TestProtos.NullValueOutsideStruct.Parser, new[]{ "StringValue", "NullValue" }, new[]{ "Value" }, null, null, null), in UnittestIssuesReflection() 2927 case ValueOneofCase.StringValue: in NullValueOutsideStruct() 2928 StringValue = other.StringValue; in NullValueOutsideStruct() 2946 public string StringValue { property in UnitTest.Issues.TestProtos.NullValueOutsideStruct 2947 get { return valueCase_ == ValueOneofCase.StringValue ? (string) value_ : ""; } 2950 valueCase_ = ValueOneofCase.StringValue; 2969 StringValue = 1, enumerator 2997 if (StringValue != other.StringValue) retur in Equals() [all...] |