| /third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
| H A D | Struct.cs | 44 new pbr::GeneratedClrTypeInfo(new[] {typeof(global::Google.Protobuf.WellKnownTypes.NullValue), }, null, new pbr::GeneratedClrTypeInfo[] { in StructReflection() 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() 55 /// `NullValue` is a singleton enumeration to represent the null value for the 58 /// The JSON representation for `NullValue` is JSON `null`. 60 public enum NullValue { enum 64 [pbr::OriginalName("NULL_VALUE")] NullValue = 0, enumerator 282 case KindOneofCase.NullValue: in Value() 283 NullValue = other.NullValue; in Value() 316 public global::Google.Protobuf.WellKnownTypes.NullValue NullValu property in Google.Protobuf.WellKnownTypes.Value 398 NullValue = 1, global() enumerator [all...] |
| H A D | ValuePartial.cs | 74 return new Value { NullValue = 0 }; in ForNull()
|
| /third_party/skia/tests/ |
| H A D | JSONTest.cpp | 135 const auto success = !dom.root().is<NullValue>(); in DEF_TEST() 205 REPORTER_ASSERT(reporter, v.is<NullValue>()); in DEF_TEST() 217 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 229 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 241 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 253 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 265 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 277 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 293 REPORTER_ASSERT(reporter, !v.is<NullValue>()); in DEF_TEST() 315 REPORTER_ASSERT(reporter, v.as<ObjectValue>()[""].is<NullValue>()); in DEF_TEST() [all...] |
| /third_party/skia/src/utils/ |
| H A D | SkJSON.cpp | 53 NullValue::NullValue() { in NullValue() function in skjson::NullValue 224 static const Value g_null = NullValue(); in operator []() 304 return this->error(NullValue(), p, "invalid empty input"); in parse() 315 return this->error(NullValue(), p_stop, "invalid top-level value"); in parse() 326 return this->error(NullValue(), p, "invalid top-level value"); in parse() 340 if (*p != '"') return this->error(NullValue(), p, "expected object key"); in parse() 345 if (!p) return NullValue(); in parse() 348 if (*p != ':') return this->error(NullValue(), p, "expected ':' separator"); in parse() 358 return this->error(NullValue(), in parse() [all...] |
| H A D | SkJSON.h | 212 class NullValue final : public Value { 216 NullValue();
|
| /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() 75 new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.NullValueNotInOneof), global::UnitTest.Issues.TestProtos.NullValueNotInOneof.Parser, new[]{ "NullValue" }, null, null, null, null), in UnittestIssuesReflection() 2930 case ValueOneofCase.NullValue: in NullValueOutsideStruct() 2931 NullValue = other.NullValue; in NullValueOutsideStruct() 2957 public global::Google.Protobuf.WellKnownTypes.NullValue NullValue { property in UnitTest.Issues.TestProtos.NullValueOutsideStruct 2958 get { return valueCase_ == ValueOneofCase.NullValue ? (global::Google.Protobuf.WellKnownTypes.NullValue) value_ : global::Google.Protobuf.WellKnownTypes.NullValue 2970 NullValue = 2, global() enumerator 3180 public global::Google.Protobuf.WellKnownTypes.NullValue NullValue { global() property in UnitTest.Issues.TestProtos.NullValueNotInOneof [all...] |
| /third_party/protobuf/src/google/protobuf/ |
| H A D | struct.pb.h | 83 enum NullValue : int { 89 constexpr NullValue NullValue_MIN = NULL_VALUE; 90 constexpr NullValue NullValue_MAX = NULL_VALUE; 96 static_assert(::std::is_same<T, NullValue>::value || in NullValue_Name() 103 ::PROTOBUF_NAMESPACE_ID::ConstStringParam name, NullValue* value) { in NullValue_Parse() 104 return ::PROTOBUF_NAMESPACE_ID::internal::ParseNamedEnum<NullValue>( in NullValue_Parse() 422 // .google.protobuf.NullValue null_value = 1; 427 PROTOBUF_NAMESPACE_ID::NullValue null_value() const; 428 void set_null_value(PROTOBUF_NAMESPACE_ID::NullValue value); 430 PROTOBUF_NAMESPACE_ID::NullValue _internal_null_valu [all...] |
| /third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
| H A D | Values.java | 34 import com.google.protobuf.NullValue; 42 Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build();
|
| /third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
| H A D | JsonParserTest.cs | 678 Assert.AreEqual(new Value { NullValue = 0 }, Value.Parser.ParseJson("null")); in StructValue_Null() 983 Assert.AreEqual(NullValueOutsideStruct.ValueOneofCase.NullValue, message.ValueCase); in NullValueOutsideStruct_NullLiteral() 992 Assert.AreEqual(NullValue.NullValue, message.NullValue); in NullValueNotInOneof_NullLiteral() 995 // NullValue used to only be converted to the null literal when part of a struct. 1003 Assert.AreEqual(NullValueOutsideStruct.ValueOneofCase.NullValue, message.ValueCase); in NullValueOutsideStruct_Compatibility() 1012 Assert.AreEqual(NullValue.NullValue, message.NullValue); in NullValueNotInOneof_Compatibility() [all...] |
| H A D | JsonFormatterTest.cs | 232 var message = new NullValueOutsideStruct { NullValue = NullValue.NullValue }; in NullValueOutsideStruct()
|
| H A D | JsonTokenizerTest.cs | 220 public void NullValue() in NullValue() method in Google.Protobuf.JsonTokenizerTest
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| H A D | CacheValue.java | 54 private static final CacheValue NULL_VALUE = new NullValue(); 103 private static final class NullValue<V> extends CacheValue<V> { class in CacheValue
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
| H A D | CacheValue.java | 57 private static final CacheValue NULL_VALUE = new NullValue(); 106 private static final class NullValue<V> extends CacheValue<V> { class in CacheValue
|
| /third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
| H A D | ValuesTest.java | 36 import com.google.protobuf.NullValue; 46 .isEqualTo(Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build()); in testOfNull_IsNullValue()
|
| H A D | JsonFormatTest.java | 47 import com.google.protobuf.NullValue; 475 assertEquals(NullValue.NULL_VALUE, message.getOneofNullValue()); in testNullInOneof() 1085 anyMessage = Any.pack(Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build()); in testAnyFields() 1110 Value nullValue = Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build(); in testAnyInMaps()
|
| /third_party/protobuf/php/src/Google/Protobuf/ |
| H A D | NullValue.php | 10 * `NullValue` is a singleton enumeration to represent the null value for the 12 * The JSON representation for `NullValue` is JSON `null`. 14 * Protobuf type <code>google.protobuf.NullValue</code> 16 class NullValue class
|
| H A D | Value.php | 52 * Generated from protobuf field <code>.google.protobuf.NullValue null_value = 1;</code> 68 * Generated from protobuf field <code>.google.protobuf.NullValue null_value = 1;</code> 74 GPBUtil::checkEnum($var, \Google\Protobuf\NullValue::class);
|
| /third_party/protobuf/php/tests/ |
| H A D | WellKnownTest.php | 27 use Google\Protobuf\NullValue; 276 $m->setNullValue(NullValue::NULL_VALUE); 277 $this->assertSame(NullValue::NULL_VALUE, $m->getNullValue()); 416 ['\Google\Protobuf\NullValue'],
|
| /third_party/skia/modules/skottie/src/animator/ |
| H A D | Animator.cpp | 85 if (!jpropA.is<skjson::NullValue>()) { in bindImpl()
|
| /third_party/skia/modules/skottie/src/ |
| H A D | Camera.cpp | 62 , fType(jtransform["a"].is<skjson::NullValue>() ? CameraType::kOneNode in CameraAdaper()
|
| H A D | Transform.cpp | 112 if (jrotation->is<skjson::NullValue>()) { in attachMatrix2D()
|
| /third_party/skia/bench/ |
| H A D | JSONBench.cpp | 43 if (dom.root().is<skjson::NullValue>()) {
|
| /third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
| H A D | JsonTokenizerTest.cs | 220 public void NullValue() in NullValue() method in Google.Protobuf.JsonTokenizerTest
|
| /third_party/skia/modules/skottie/src/effects/ |
| H A D | Effects.cpp | 176 static skjson::NullValue kNull; in GetPropValue()
|
| /third_party/skia/modules/particles/include/ |
| H A D | SkParticleSerialization.h | 137 static skjson::NullValue gNull; in get()
|