Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 13464) sorted by relevance

12345678910>>...539

/third_party/typescript/tests/cases/compiler/
DunionSubtypeReductionErrors.ts5009 { value: 0 as 0 },
5010 { value: 1 as 1 },
5011 { value: 2 as 2 },
5012 { value: 3 as 3 },
5013 { value: 4 as 4 },
5014 { value: 5 as 5 },
5015 { value: 6 as 6 },
5016 { value: 7 as 7 },
5017 { value: 8 as 8 },
5018 { value: 9 as 9 },
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dgl_enum_utils_autogen.cpp19 const char *UnknownGLenumToString(unsigned int value) in UnknownGLenumToString() argument
23 snprintf(sBuffer, kBufferSize, "0x%04X", value); in UnknownGLenumToString()
28 const char *GLenumToString(GLenumGroup enumGroup, unsigned int value) in GLenumToString() argument
34 switch (value) in GLenumToString()
53 return UnknownGLenumToString(value); in GLenumToString()
59 switch (value) in GLenumToString()
64 return UnknownGLenumToString(value); in GLenumToString()
70 switch (value) in GLenumToString()
79 return UnknownGLenumToString(value); in GLenumToString()
85 switch (value) in GLenumToString()
[all …]
/third_party/typescript/tests/baselines/reference/
DunionSubtypeReductionErrors.js5008 { 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 …]
DunionSubtypeReductionErrors.symbols5012 { value: 0 as 0 },
5013 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5006, 5))
5015 { value: 1 as 1 },
5016 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5007, 5))
5018 { value: 2 as 2 },
5019 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5008, 5))
5021 { value: 3 as 3 },
5022 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5009, 5))
5024 { value: 4 as 4 },
5025 >value : Symbol(value, Decl(unionSubtypeReductionErrors.ts, 5010, 5))
[all …]
DcompoundAssignmentLHSIsValue.js3 var value: any; variable
8 this *= value;
9 this += value;
12 this *= value;
13 this += value;
16 this *= value;
17 this += value;
22 this *= value;
23 this += value;
26 this *= value;
[all …]
DunionSubtypeReductionErrors.types20018value: 0 as 0 }, { value: 1 as 1 }, { value: 2 as 2 }, { value: 3 as 3 }, { value: 4 a…
20020 { value: 0 as 0 },
20021 >{ value: 0 as 0 } : { value: 0; }
20022 >value : 0
20026 { value: 1 as 1 },
20027 >{ value: 1 as 1 } : { value: 1; }
20028 >value : 1
20032 { value: 2 as 2 },
20033 >{ value: 2 as 2 } : { value: 2; }
20034 >value : 2
[all …]
DrecursiveConditionalCrash2.types7 value: T
8 >value : T
17 Expand__<O['value'], N, Depth> :
21value"] extends CanBeExpanded<any> ? T["value"]["value"] extends CanBeExpanded<any> ? T["value"]["
DcompoundAssignmentLHSIsValue.types3 var value: any;
4 >value : any
11 this *= value;
12 >this *= value : number
14 >value : any
16 this += value;
17 >this += value : any
19 >value : any
24 this *= value;
25 >this *= value : number
[all …]
DcompoundAssignmentLHSIsValue.symbols3 var value: any;
4 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
11 this *= value;
13 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
15 this += value;
17 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
22 this *= value;
24 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
26 this += value;
28 >value : Symbol(value, Decl(compoundAssignmentLHSIsValue.ts, 1, 3))
[all …]
DcompoundExponentiationAssignmentLHSIsValue.types3 var value: any;
4 >value : any
11 this **= value;
12 >this **= value : number
14 >value : any
19 this **= value;
20 >this **= value : number
22 >value : any
27 this **= value;
28 >this **= value : number
[all …]
DassignmentLHSIsValue.types3 var value: any;
4 >value : any
10 constructor() { this = value; }
11 >this = value : any
13 >value : any
15 foo() { this = value; }
17 >this = value : any
19 >value : any
21 static sfoo() { this = value; }
23 >this = value : any
[all …]
DassignmentLHSIsValue.js3 var value: any; variable
7 constructor() { this = value; }
8 foo() { this = value; }
9 static sfoo() { this = value; }
12 function foo() { this = value; }
14 this = value;
18 M = value;
20 C = value;
23 E = value;
25 foo = value;
[all …]
DrecursiveConditionalCrash3.types14 value: T
15 >value : T
92 KeysCanBeExpanded_<T['value'], N, Depth> :
122 Expand__<O[P extends Keys ? 'value' : 'default'], Keys, P, N, Depth> :
176value" : "default"] extends CanBeExpanded<object, string> ? T["" extends SplitAC<K> ? "value" : "d…
179value" : "default"] extends CanBeExpanded<object, string> ? T["" extends SplitAC<K> ? "value" : "d…
DunionSubtypeReductionErrors.errors.txt5012 { value: 0 as 0 },
5014 { value: 1 as 1 },
5016 { value: 2 as 2 },
5018 { value: 3 as 3 },
5020 { value: 4 as 4 },
5022 { value: 5 as 5 },
5024 { value: 6 as 6 },
5026 { value: 7 as 7 },
5028 { value: 8 as 8 },
5030 { value: 9 as 9 },
[all …]
DarrowFunctionParsingGenericInObject.types3 >fn1 : () => { test: <T = undefined>(value: T) => T; extraValue: () => void; }
4 …) => ({ test: <T = undefined>(value: T): T => value, extraValue: () => {},}) : () => { test:…
5 >({ test: <T = undefined>(value: T): T => value, extraValue: () => {},}) : { test: <T = undef…
6 >{ test: <T = undefined>(value: T): T => value, extraValue: () => {},} : { test: <T = undefin…
8 test: <T = undefined>(value: T): T => value,
9 >test : <T = undefined>(value: T) => T
10 ><T = undefined>(value: T): T => value : <T = undefined>(value: T) => T
11 >value : T
12 >value : T
21 >fn1async : () => { test: <T = undefined>(value: T) => Promise<T>; extraValue: () => void; }
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dmarshalling_test.cc31 bool value; in TEST() local
34 EXPECT_TRUE(absl::ParseFlag("True", &value, &err)); in TEST()
35 EXPECT_TRUE(value); in TEST()
36 EXPECT_TRUE(absl::ParseFlag("true", &value, &err)); in TEST()
37 EXPECT_TRUE(value); in TEST()
38 EXPECT_TRUE(absl::ParseFlag("TRUE", &value, &err)); in TEST()
39 EXPECT_TRUE(value); in TEST()
41 EXPECT_TRUE(absl::ParseFlag("Yes", &value, &err)); in TEST()
42 EXPECT_TRUE(value); in TEST()
43 EXPECT_TRUE(absl::ParseFlag("yes", &value, &err)); in TEST()
[all …]
/third_party/libevdev/include/
Devent-names.h853 unsigned int value; member
857 { .name = "MT_TOOL_DIAL", .value = MT_TOOL_DIAL },
858 { .name = "MT_TOOL_FINGER", .value = MT_TOOL_FINGER },
859 { .name = "MT_TOOL_MAX", .value = MT_TOOL_MAX },
860 { .name = "MT_TOOL_PALM", .value = MT_TOOL_PALM },
861 { .name = "MT_TOOL_PEN", .value = MT_TOOL_PEN },
865 { .name = "EV_ABS", .value = EV_ABS },
866 { .name = "EV_FF", .value = EV_FF },
867 { .name = "EV_FF_STATUS", .value = EV_FF_STATUS },
868 { .name = "EV_KEY", .value = EV_KEY },
[all …]
/third_party/pulseaudio/src/tests/
Dcore-util-test.c44 pa_volume_t value; in START_TEST() local
47 ck_assert_int_eq(pa_parse_volume("-20dB", &value), 0); in START_TEST()
48 ck_assert_int_eq(value, 30419); in START_TEST()
49 ck_assert_int_eq(pa_parse_volume("-10dB", &value), 0); in START_TEST()
50 ck_assert_int_eq(value, 44649); in START_TEST()
51 ck_assert_int_eq(pa_parse_volume("-1dB", &value), 0); in START_TEST()
52 ck_assert_int_eq(value, 63069); in START_TEST()
53 ck_assert_int_eq(pa_parse_volume("0dB", &value), 0); in START_TEST()
54 ck_assert_int_eq(value, 65536); in START_TEST()
55 ck_assert_int_eq(pa_parse_volume("1dB", &value), 0); in START_TEST()
[all …]
/third_party/python/Lib/email/
D_header_value_parser.py96 def quote_string(value): argument
97 return '"'+str(value).replace('\\', '\\\\').replace('"', r'\"')+'"'
133 def value(self): member in TokenList
134 return ''.join(x.value for x in self if x.value)
185 def value(self): member in WhiteSpaceTokenList
232 return x.value
241 res.append(x.value)
248 return token.value
259 def value(self): member in BareQuotedString
274 def quote(self, value): argument
[all …]
/third_party/elfutils/tests/
Drun-funcretval.sh34 () fun_char: return value location: {0x50, 0}
35 () fun_short: return value location: {0x50, 0}
36 () fun_int: return value location: {0x50, 0}
37 () fun_ptr: return value location: {0x50, 0}
38 () fun_iptr: return value location: {0x50, 0}
39 () fun_long: return value location: {0x50, 0}
40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8}
41 () fun_large_struct1: return value location: {0x70, 0}
42 () fun_large_struct2: return value location: {0x70, 0}
43 () fun_float: return value location: {0x90, 0x40}
[all …]
/third_party/typescript/tests/cases/conformance/expressions/assignmentOperator/
DcompoundAssignmentLHSIsValue.ts4 var value: any; variable
9 this *= value;
10 this += value;
13 this *= value;
14 this += value;
17 this *= value;
18 this += value;
23 this *= value;
24 this += value;
27 this *= value;
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java234 public abstract void writeInt32(int fieldNumber, int value) throws IOException; in writeInt32() argument
238 public abstract void writeUInt32(int fieldNumber, int value) throws IOException; in writeUInt32() argument
241 public final void writeSInt32(final int fieldNumber, final int value) throws IOException { in writeSInt32() argument
242 writeUInt32(fieldNumber, encodeZigZag32(value)); in writeSInt32()
247 public abstract void writeFixed32(int fieldNumber, int value) throws IOException; in writeFixed32() argument
250 public final void writeSFixed32(final int fieldNumber, final int value) throws IOException { in writeSFixed32() argument
251 writeFixed32(fieldNumber, value); in writeSFixed32()
255 public final void writeInt64(final int fieldNumber, final long value) throws IOException { in writeInt64() argument
256 writeUInt64(fieldNumber, value); in writeInt64()
261 public abstract void writeUInt64(int fieldNumber, long value) throws IOException; in writeUInt64() argument
[all …]
/third_party/protobuf/js/binary/
Dwriter.js290 jspb.BinaryWriter.prototype.writeAny = function(fieldType, field, value) { argument
294 this.writeDouble(field, /** @type {number} */(value));
297 this.writeFloat(field, /** @type {number} */(value));
300 this.writeInt64(field, /** @type {number} */(value));
303 this.writeUint64(field, /** @type {number} */(value));
306 this.writeInt32(field, /** @type {number} */(value));
309 this.writeFixed64(field, /** @type {number} */(value));
312 this.writeFixed32(field, /** @type {number} */(value));
315 this.writeBool(field, /** @type {boolean} */(value));
318 this.writeString(field, /** @type {string} */(value));
[all …]
/third_party/json/tests/src/
Dunit-pointer_access.cpp19 json value = {{"one", 1}, {"two", 2}}; variable
22 test_type* p1 = value.get_ptr<test_type*>();
23 CHECK(p1 == value.get_ptr<test_type*>());
24 CHECK(*p1 == value.get<test_type>());
26 const test_type* p2 = value.get_ptr<const test_type*>();
27 CHECK(p2 == value.get_ptr<const test_type*>());
28 CHECK(*p2 == value.get<test_type>());
30 const test_type* const p3 = value.get_ptr<const test_type* const>();
31 CHECK(p3 == value.get_ptr<const test_type* const>());
32 CHECK(*p3 == value.get<test_type>());
[all …]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php166 public static function readInt32(&$input, &$value) argument
168 return $input->readVarint32($value);
171 public static function readInt64(&$input, &$value) argument
173 $success = $input->readVarint64($value);
174 if (PHP_INT_SIZE == 4 && bccomp($value, "9223372036854775807") > 0) {
175 $value = bcsub($value, "18446744073709551616");
180 public static function readUint32(&$input, &$value) argument
182 return self::readInt32($input, $value);
185 public static function readUint64(&$input, &$value) argument
187 return self::readInt64($input, $value);
[all …]

12345678910>>...539