| /third_party/typescript/tests/baselines/reference/ |
| D | unionSubtypeReductionErrors.js | 5008 { value: 0 as 0 }, property 5009 { value: 1 as 1 }, property 5010 { value: 2 as 2 }, property 5011 { value: 3 as 3 }, property 5012 { value: 4 as 4 }, property 5013 { value: 5 as 5 }, property 5014 { value: 6 as 6 }, property 5015 { value: 7 as 7 }, property 5016 { value: 8 as 8 }, property 5017 { value: 9 as 9 }, property [all …]
|
| D | recursiveConditionalTypes.js | 81 unbox({ value: { value: { value: { value: { value: { value: 5 }}}}}}); // number property 83 unbox({ value: { value: { get value() { return this; } }}}); // { readonly value: ... } getter 87 type Box1<T> = { value: T }; property 88 type Box2<T> = { value: T }; property 159 unbox({ value: { value: { value: { value: { value: { value: 5 } } } } } }); // number property 161 unbox({ value: { value: { get value() { return this; } } } }); // { readonly value: ... } property 222 value: T; property 225 value: T; property
|
| D | jsDeclarationsExportDefinePropertyEmit.js | 5 Object.defineProperty(module.exports.b, "cat", { value: "cat" }); property 13 Object.defineProperty(module.exports, "d", { value: d }); property 23 Object.defineProperty(module.exports, "e", { value: e }); property 32 Object.defineProperty(module.exports, "f", { value: f }); property 33 Object.defineProperty(module.exports.f, "self", { value: module.exports.f }); property 42 Object.defineProperty(module.exports, "g", { value: g }); property 52 Object.defineProperty(module.exports, "h", { value: hh }); property 55 Object.defineProperty(module.exports, "ii", { value: module.exports.i }); property 58 Object.defineProperty(module.exports, "jj", { value: module.exports.j }); property 65 Object.defineProperty(module.exports.b, "cat", { value: "cat" }); property [all …]
|
| D | optionalChainingInference.js | 3 declare function unbox<T>(box: { value: T | undefined }): T; property 9 const b1 = { value: su?.length }; property 12 const b2 = { value: su?.length as number | undefined }; property 15 const b3: { value: number | undefined } = { value: su?.length }; property 18 const b4 = { value: fnu?.() }; property 21 const b5 = { value: su?.["length"] }; property 24 const b6 = { value: osu?.prop.length }; property 27 const b7 = { value: osu?.prop["length"] }; property 30 const b8 = { value: ofnu?.prop() }; property 36 var b1 = { value: su === null || su === void 0 ? void 0 : su.length }; property [all …]
|
| /third_party/boost/boost/math/special_functions/detail/ |
| D | daubechies_scaling_integer_grid.hpp | 37 …teger_grid_imp <Real, 2, 0> { static inline constexpr std::array<Real, 4> value = { C_(0x0p+0), C_… member 38 …teger_grid_imp <Real, 2, 1> { static inline constexpr std::array<Real, 4> value = { C_(0x0p+0), C_… member 39 …teger_grid_imp <Real, 3, 0> { static inline constexpr std::array<Real, 6> value = { C_(0x0p+0), C_… member 40 …teger_grid_imp <Real, 3, 1> { static inline constexpr std::array<Real, 6> value = { C_(0x0p+0), C_… member 41 …teger_grid_imp <Real, 3, 2> { static inline constexpr std::array<Real, 6> value = { C_(0x0p+0), C_… member 42 …teger_grid_imp <Real, 4, 0> { static inline constexpr std::array<Real, 8> value = { C_(0x0p+0), C_… member 43 …teger_grid_imp <Real, 4, 1> { static inline constexpr std::array<Real, 8> value = { C_(0x0p+0), C_… member 44 …teger_grid_imp <Real, 4, 2> { static inline constexpr std::array<Real, 8> value = { C_(0x0p+0), C_… member 45 …teger_grid_imp <Real, 4, 3> { static inline constexpr std::array<Real, 8> value = { C_(0x0p+0), C_… member 46 …eger_grid_imp <Real, 5, 0> { static inline constexpr std::array<Real, 10> value = { C_(0x0p+0), C_… member [all …]
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| D | CodedOutputStream.java | 234 public abstract void writeInt32(int fieldNumber, int value) throws IOException; in writeInt32() 238 public abstract void writeUInt32(int fieldNumber, int value) throws IOException; in writeUInt32() 241 public final void writeSInt32(final int fieldNumber, final int value) throws IOException { in writeSInt32() 247 public abstract void writeFixed32(int fieldNumber, int value) throws IOException; in writeFixed32() 250 public final void writeSFixed32(final int fieldNumber, final int value) throws IOException { in writeSFixed32() 255 public final void writeInt64(final int fieldNumber, final long value) throws IOException { in writeInt64() 261 public abstract void writeUInt64(int fieldNumber, long value) throws IOException; in writeUInt64() 264 public final void writeSInt64(final int fieldNumber, final long value) throws IOException { in writeSInt64() 270 public abstract void writeFixed64(int fieldNumber, long value) throws IOException; in writeFixed64() 273 public final void writeSFixed64(final int fieldNumber, final long value) throws IOException { in writeSFixed64() [all …]
|
| D | Writer.java | 54 void writeSFixed32(int fieldNumber, int value) throws IOException; in writeSFixed32() 57 void writeInt64(int fieldNumber, long value) throws IOException; in writeInt64() 60 void writeSFixed64(int fieldNumber, long value) throws IOException; in writeSFixed64() 63 void writeFloat(int fieldNumber, float value) throws IOException; in writeFloat() 66 void writeDouble(int fieldNumber, double value) throws IOException; in writeDouble() 69 void writeEnum(int fieldNumber, int value) throws IOException; in writeEnum() 72 void writeUInt64(int fieldNumber, long value) throws IOException; in writeUInt64() 75 void writeInt32(int fieldNumber, int value) throws IOException; in writeInt32() 78 void writeFixed64(int fieldNumber, long value) throws IOException; in writeFixed64() 81 void writeFixed32(int fieldNumber, int value) throws IOException; in writeFixed32() [all …]
|
| D | BinaryWriter.java | 171 public final void writeSFixed32(int fieldNumber, int value) throws IOException { in writeSFixed32() 176 public final void writeInt64(int fieldNumber, long value) throws IOException { in writeInt64() 181 public final void writeSFixed64(int fieldNumber, long value) throws IOException { in writeSFixed64() 186 public final void writeFloat(int fieldNumber, float value) throws IOException { in writeFloat() 191 public final void writeDouble(int fieldNumber, double value) throws IOException { in writeDouble() 196 public final void writeEnum(int fieldNumber, int value) throws IOException { in writeEnum() 548 private void writeLazyString(int fieldNumber, Object value) throws IOException { in writeLazyString() 827 public final void writeMessageSetItem(int fieldNumber, Object value) throws IOException { in writeMessageSetItem() 866 abstract void writeVarint32(int value); in writeVarint32() 868 abstract void writeInt32(int value); in writeInt32() [all …]
|
| /third_party/jinja2/ |
| D | tests.py | 18 def test_odd(value): argument 23 def test_even(value): argument 28 def test_divisibleby(value, num): argument 33 def test_defined(value): argument 50 def test_undefined(value): argument 55 def test_none(value): argument 60 def test_boolean(value): argument 68 def test_false(value): argument 76 def test_true(value): argument 85 def test_integer(value): argument [all …]
|
| /third_party/skia/third_party/externals/jinja2/ |
| D | tests.py | 18 def test_odd(value): argument 23 def test_even(value): argument 28 def test_divisibleby(value, num): argument 33 def test_defined(value): argument 50 def test_undefined(value): argument 55 def test_none(value): argument 60 def test_boolean(value): argument 68 def test_false(value): argument 76 def test_true(value): argument 85 def test_integer(value): argument [all …]
|
| /third_party/protobuf/csharp/src/Google.Protobuf/ |
| D | CodedOutputStream.ComputeSize.cs | 53 public static int ComputeDoubleSize(double value) in ComputeDoubleSize() 62 public static int ComputeFloatSize(float value) in ComputeFloatSize() 71 public static int ComputeUInt64Size(ulong value) in ComputeUInt64Size() 80 public static int ComputeInt64Size(long value) in ComputeInt64Size() 89 public static int ComputeInt32Size(int value) in ComputeInt32Size() 106 public static int ComputeFixed64Size(ulong value) in ComputeFixed64Size() 115 public static int ComputeFixed32Size(uint value) in ComputeFixed32Size() 124 public static int ComputeBoolSize(bool value) in ComputeBoolSize() 133 public static int ComputeStringSize(String value) in ComputeStringSize() 143 public static int ComputeGroupSize(IMessage value) in ComputeGroupSize() [all …]
|
| /third_party/glib/gobject/ |
| D | gvaluetypes.h | 39 #define G_VALUE_HOLDS_CHAR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_CHAR)) argument 48 #define G_VALUE_HOLDS_UCHAR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UCHAR)) argument 57 #define G_VALUE_HOLDS_BOOLEAN(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_BOOLEAN)) argument 66 #define G_VALUE_HOLDS_INT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_INT)) argument 75 #define G_VALUE_HOLDS_UINT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UINT)) argument 84 #define G_VALUE_HOLDS_LONG(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_LONG)) argument 93 #define G_VALUE_HOLDS_ULONG(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ULONG)) argument 102 #define G_VALUE_HOLDS_INT64(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_INT64)) argument 111 #define G_VALUE_HOLDS_UINT64(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UINT64)) argument 120 #define G_VALUE_HOLDS_FLOAT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLOAT)) argument [all …]
|
| D | gvaluetypes.c | 39 value_init_long0 (GValue *value) in value_init_long0() 52 value_lcopy_char (const GValue *value, in value_lcopy_char() 67 value_lcopy_boolean (const GValue *value, in value_lcopy_boolean() 82 value_collect_int (GValue *value, in value_collect_int() 93 value_lcopy_int (const GValue *value, in value_lcopy_int() 108 value_collect_long (GValue *value, in value_collect_long() 119 value_lcopy_long (const GValue *value, in value_lcopy_long() 134 value_init_int64 (GValue *value) in value_init_int64() 147 value_collect_int64 (GValue *value, in value_collect_int64() 158 value_lcopy_int64 (const GValue *value, in value_lcopy_int64() [all …]
|
| /third_party/protobuf/js/binary/ |
| D | writer.js | 290 jspb.BinaryWriter.prototype.writeAny = function(fieldType, field, value) { argument 366 jspb.BinaryWriter.prototype.writeUnsignedVarint32_ = function(field, value) { argument 379 jspb.BinaryWriter.prototype.writeSignedVarint32_ = function(field, value) { argument 392 jspb.BinaryWriter.prototype.writeUnsignedVarint64_ = function(field, value) { argument 405 jspb.BinaryWriter.prototype.writeSignedVarint64_ = function(field, value) { argument 418 jspb.BinaryWriter.prototype.writeZigzagVarint32_ = function(field, value) { argument 431 jspb.BinaryWriter.prototype.writeZigzagVarint64_ = function(field, value) { argument 445 field, value) { argument 458 jspb.BinaryWriter.prototype.writeZigzagVarintHash64_ = function(field, value) { argument 471 jspb.BinaryWriter.prototype.writeInt32 = function(field, value) { argument [all …]
|
| D | encoder.js | 125 jspb.BinaryEncoder.prototype.writeUnsignedVarint32 = function(value) { argument 144 jspb.BinaryEncoder.prototype.writeSignedVarint32 = function(value) { argument 173 jspb.BinaryEncoder.prototype.writeUnsignedVarint64 = function(value) { argument 189 jspb.BinaryEncoder.prototype.writeSignedVarint64 = function(value) { argument 204 jspb.BinaryEncoder.prototype.writeZigzagVarint32 = function(value) { argument 218 jspb.BinaryEncoder.prototype.writeZigzagVarint64 = function(value) { argument 234 jspb.BinaryEncoder.prototype.writeZigzagVarint64String = function(value) { argument 259 jspb.BinaryEncoder.prototype.writeUint8 = function(value) { argument 271 jspb.BinaryEncoder.prototype.writeUint16 = function(value) { argument 284 jspb.BinaryEncoder.prototype.writeUint32 = function(value) { argument [all …]
|
| /third_party/node/tools/inspector_protocol/jinja2/ |
| D | tests.py | 28 def test_odd(value): argument 33 def test_even(value): argument 38 def test_divisibleby(value, num): argument 43 def test_defined(value): argument 60 def test_undefined(value): argument 65 def test_none(value): argument 70 def test_lower(value): argument 75 def test_upper(value): argument 80 def test_string(value): argument 85 def test_mapping(value): argument [all …]
|
| /third_party/jerryscript/jerry-core/ecma/base/ |
| D | ecma-helpers-value.c | 72 ecma_get_value_type_field (ecma_value_t value) /**< ecma value */ in ecma_get_value_type_field() 107 ecma_get_pointer_from_ecma_value (ecma_value_t value) /**< value */ in ecma_get_pointer_from_ecma_value() 125 ecma_is_value_direct (ecma_value_t value) /**< ecma value */ in ecma_is_value_direct() 137 ecma_is_value_simple (ecma_value_t value) /**< ecma value */ in ecma_is_value_simple() 149 ecma_is_value_equal_to_simple_value (ecma_value_t value, /**< ecma value */ in ecma_is_value_equal_to_simple_value() 162 ecma_is_value_empty (ecma_value_t value) /**< ecma value */ in ecma_is_value_empty() 174 ecma_is_value_undefined (ecma_value_t value) /**< ecma value */ in ecma_is_value_undefined() 186 ecma_is_value_null (ecma_value_t value) /**< ecma value */ in ecma_is_value_null() 198 ecma_is_value_boolean (ecma_value_t value) /**< ecma value */ in ecma_is_value_boolean() 210 ecma_is_value_true (ecma_value_t value) /**< ecma value */ in ecma_is_value_true() [all …]
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
| D | DataDrivenNumberFormatTestData.java | 244 T value = map.get(key); in fromString() local 254 public void setLocale(String value) { in setLocale() 258 public void setCurrency(String value) { in setCurrency() 262 public void setPattern(String value) { in setPattern() 266 public void setFormat(String value) { in setFormat() 270 public void setOutput(String value) { in setOutput() 274 public void setComment(String value) { in setComment() 278 public void setMinIntegerDigits(String value) { in setMinIntegerDigits() 282 public void setMaxIntegerDigits(String value) { in setMaxIntegerDigits() 286 public void setMinFractionDigits(String value) { in setMinFractionDigits() [all …]
|
| /third_party/boost/libs/gil/example/cmake/ |
| D | CMakeSettings.json | 34 { "name": "BUILD_TESTING", "value": "${env.DEFAULT_BUILD_TESTING}"}, string 35 … { "name": "Boost_ADDITIONAL_VERSIONS", "value": "${env.DEFAULT_Boost_ADDITIONAL_VERSIONS}" }, string 36 { "name": "Boost_ARCHITECTURE", "value": "-x64" }, string 37 { "name": "Boost_COMPILER", "value": "${env.DEFAULT_Boost_COMPILER}" }, string 38 { "name": "Boost_DEBUG", "value": "${env.DEFAULT_Boost_DEBUG}" }, string 39 { "name": "BOOST_GIL_BUILD_EXAMPLES", "value": "${env.DEFAULT_GIL_BUILD_EXAMPLES}" }, string 40 … { "name": "BOOST_GIL_BUILD_HEADER_TESTS", "value": "${env.DEFAULT_GIL_BUILD_HEADER_TESTS}" }, string 41 …{ "name": "BOOST_GIL_ENABLE_EXT_DYNAMIC_IMAGE", "value": "${env.DEFAULT_GIL_ENABLE_EXT_DYNAMIC_IMA… string 42 { "name": "BOOST_GIL_ENABLE_EXT_IO", "value": "${env.DEFAULT_GIL_ENABLE_EXT_IO}" }, string 43 … { "name": "BOOST_GIL_ENABLE_EXT_NUMERIC", "value": "${env.DEFAULT_GIL_ENABLE_EXT_NUMERIC}" }, string [all …]
|
| /third_party/node/test/fixtures/x509-escaping/ |
| D | create-certs.js | 56 { type: 'dNSName', value: 'good.example.com, DNS:evil.example.com' }, property 57 { type: 'uniformResourceIdentifier', value: 'http://example.com/' }, property 58 { type: 'uniformResourceIdentifier', value: 'http://example.com/?a=b&c=d' }, property 59 { type: 'uniformResourceIdentifier', value: 'http://example.com/a,b' }, property 60 { type: 'uniformResourceIdentifier', value: 'http://example.com/a%2Cb' }, property 63 value: 'http://example.com/a, DNS:good.example.com' property 65 { type: 'dNSName', value: Buffer.from('exämple.com', 'latin1') }, property 66 { type: 'dNSName', value: '"evil.example.com"' }, property 67 { type: 'iPAddress', value: Buffer.from('08080808', 'hex') }, property 68 { type: 'iPAddress', value: Buffer.from('08080404', 'hex') }, property [all …]
|
| /third_party/protobuf/src/google/protobuf/stubs/ |
| D | substitute.h | 91 inline SubstituteArg(const char* value) in SubstituteArg() 93 inline SubstituteArg(const string& value) in SubstituteArg() 106 inline SubstituteArg(char value) in SubstituteArg() 108 inline SubstituteArg(short value) in SubstituteArg() 110 inline SubstituteArg(unsigned short value) in SubstituteArg() 112 inline SubstituteArg(int value) in SubstituteArg() 114 inline SubstituteArg(unsigned int value) in SubstituteArg() 116 inline SubstituteArg(long value) in SubstituteArg() 118 inline SubstituteArg(unsigned long value) in SubstituteArg() 120 inline SubstituteArg(long long value) in SubstituteArg() [all …]
|
| /third_party/node/deps/npm/node_modules/JSONStream/test/fixtures/ |
| D | all_npm.json | 2 {"id":"","key":"","value":{"rev":"1-2f11e026763c10730d8b19ba5dce7565"}}, object 3 {"id":"3scale","key":"3scale","value":{"rev":"3-db3d574bf0ecdfdf627afeaa21b4bdaa"}}, object 4 {"id":"7digital-api","key":"7digital-api","value":{"rev":"20-21d11832780e2368aabc946598a41dd5"}}, object 5 {"id":"AMD","key":"AMD","value":{"rev":"7-3b4305a9c786ab4c5ce611e7f0de0aca"}}, object 6 {"id":"AriesNode","key":"AriesNode","value":{"rev":"3-9d88392bca6582c5c54784927dbfdee6"}}, object 7 {"id":"Array.prototype.forEachAsync","key":"Array.prototype.forEachAsync","value":{"rev":"3-8569644… object 8 {"id":"Babel","key":"Babel","value":{"rev":"5-9d8370c6ac6fd9cd3d530f26a9379814"}}, object 9 {"id":"Blaggie-System","key":"Blaggie-System","value":{"rev":"3-47782b1e5cbfa425170192799510e148"}}, object 10 {"id":"Blob","key":"Blob","value":{"rev":"3-cf5fb5d69da4dd00bc4f2be8870ca698"}}, object 11 {"id":"BlobBuilder","key":"BlobBuilder","value":{"rev":"3-eb977ff1713a915384fac994f9d8fa7c"}}, object [all …]
|
| /third_party/protobuf/php/src/Google/Protobuf/Internal/ |
| D | GPBWire.php | 166 public static function readInt32(&$input, &$value) 171 public static function readInt64(&$input, &$value) 180 public static function readUint32(&$input, &$value) 185 public static function readUint64(&$input, &$value) 190 public static function readSint32(&$input, &$value) 199 public static function readSint64(&$input, &$value) 208 public static function readFixed32(&$input, &$value) 213 public static function readFixed64(&$input, &$value) 218 public static function readSfixed32(&$input, &$value) 229 public static function readSfixed64(&$input, &$value) [all …]
|
| /third_party/skia/third_party/externals/dawn/src/dawn_node/interop/ |
| D | Core.cpp | 25 Result Converter<bool>::FromJS(Napi::Env env, Napi::Value value, bool& out) { in FromJS() 32 Napi::Value Converter<bool>::ToJS(Napi::Env env, bool value) { in ToJS() 36 Result Converter<std::string>::FromJS(Napi::Env env, Napi::Value value, std::string& out) { in FromJS() 43 Napi::Value Converter<std::string>::ToJS(Napi::Env env, std::string value) { in ToJS() 47 Result Converter<int8_t>::FromJS(Napi::Env env, Napi::Value value, int8_t& out) { in FromJS() 54 Napi::Value Converter<int8_t>::ToJS(Napi::Env env, int8_t value) { in ToJS() 58 Result Converter<uint8_t>::FromJS(Napi::Env env, Napi::Value value, uint8_t& out) { in FromJS() 65 Napi::Value Converter<uint8_t>::ToJS(Napi::Env env, uint8_t value) { in ToJS() 69 Result Converter<int16_t>::FromJS(Napi::Env env, Napi::Value value, int16_t& out) { in FromJS() 76 Napi::Value Converter<int16_t>::ToJS(Napi::Env env, int16_t value) { in ToJS() [all …]
|
| /third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
| D | CustomOptions.cs | 80 public bool TryGetBool(int field, out bool value) => TryGetPrimitiveValue(field, out value); in TryGetBool() 88 public bool TryGetInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetInt32() 96 … public bool TryGetInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetInt64() 105 public bool TryGetFixed32(int field, out uint value) => TryGetUInt32(field, out value); in TryGetFixed32() 114 public bool TryGetFixed64(int field, out ulong value) => TryGetUInt64(field, out value); in TryGetFixed64() 123 public bool TryGetSFixed32(int field, out int value) => TryGetInt32(field, out value); in TryGetSFixed32() 132 public bool TryGetSFixed64(int field, out long value) => TryGetInt64(field, out value); in TryGetSFixed64() 141 … public bool TryGetSInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetSInt32() 150 … public bool TryGetSInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetSInt64() 158 … public bool TryGetUInt32(int field, out uint value) => TryGetPrimitiveValue(field, out value); in TryGetUInt32() [all …]
|