Searched refs:numberValue (Results 1 - 4 of 4) sorted by relevance
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | JsonToken.cs | 70 return new JsonToken(TokenType.Number, numberValue: value); in Value() 95 private readonly double numberValue; field in Google.Protobuf.JsonToken 99 internal double NumberValue { get { return numberValue; } } 101 private JsonToken(TokenType type, string stringValue = null, double numberValue = 0) in JsonToken() 105 this.numberValue = numberValue; in JsonToken() 120 hash = hash * 31 + numberValue.GetHashCode(); in GetHashCode() 140 return "number (" + numberValue + ")"; in ToString() 162 // Note use of other.numberValue.Equals rather than ==, so that NaN compares appropriately. in Equals() 163 return other.type == type && other.stringValue == stringValue && other.numberValue in Equals() [all...] |
/third_party/node/test/node-api/test_reference_by_node_api_version/ |
H A D | test.js | 23 const numberValue = 42; 40 { value: numberValue, canBeWeak: false, canBeRefV8: false },
|
/third_party/protobuf/objectivec/ |
H A D | GPBStruct.pbobjc.h | 145 @property(nonatomic, readwrite) double numberValue; variable
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
H A D | JsonFormatTest.java | 1106 Value numberValue = Value.newBuilder().setNumberValue(1.125).build(); in testAnyInMaps() 1108 struct.putFields("number", numberValue); in testAnyInMaps() 1113 Any.pack(ListValue.newBuilder().addValues(numberValue).addValues(nullValue).build())); in testAnyInMaps() 1114 testAny.putAnyMap("number_value", Any.pack(numberValue)); in testAnyInMaps() 1115 testAny.putAnyMap("any_value_number", Any.pack(Any.pack(numberValue))); in testAnyInMaps()
|
Completed in 4 milliseconds