Home
last modified time | relevance | path

Searched refs:value (Results 1 - 25 of 23585) sorted by relevance

12345678910>>...944

/third_party/typescript/tests/baselines/reference/
H A 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;
142 var value; global() variable
[all...]
H A DunionSubtypeReductionErrors.js5008 { value: 0 as 0 },
5009 { value: 1 as 1 },
5010 { value: 2 as 2 },
5011 { value: 3 as 3 },
5012 { value: 4 as 4 },
5013 { value: 5 as 5 },
5014 { value: 6 as 6 },
5015 { value: 7 as 7 },
5016 { value: 8 as 8 },
5017 { value
[all...]
H A 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;
90 var value; global() variable
[all...]
H A DcompoundExponentiationAssignmentLHSIsValue.js3 var value: any; variable
8 this **= value;
11 this **= value;
14 this **= value;
19 this **= value;
22 this **= value;
26 M **= value;
28 C **= value;
31 E **= value;
33 foo **= value;
106 var value; global() variable
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
H A 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, in TEST()
111 int16_t value; TEST() local
172 uint16_t value; TEST() local
228 int32_t value; TEST() local
289 uint32_t value; TEST() local
345 int64_t value; TEST() local
406 uint64_t value; TEST() local
460 float value; TEST() local
535 double value; TEST() local
614 std::string value; TEST() local
642 std::vector<std::string> value; TEST() local
670 int16_t value; TEST() local
687 uint16_t value; TEST() local
700 int32_t value; TEST() local
717 uint32_t value; TEST() local
730 int64_t value; TEST() local
751 uint64_t value; TEST() local
766 float value; TEST() local
781 double value; TEST() local
[all...]
/third_party/libevdev/include/
H A Devent-names.h869 unsigned int value; member
873 { .name = "MT_TOOL_DIAL", .value = MT_TOOL_DIAL },
874 { .name = "MT_TOOL_FINGER", .value = MT_TOOL_FINGER },
875 { .name = "MT_TOOL_MAX", .value = MT_TOOL_MAX },
876 { .name = "MT_TOOL_PALM", .value = MT_TOOL_PALM },
877 { .name = "MT_TOOL_PEN", .value = MT_TOOL_PEN },
881 { .name = "EV_ABS", .value = EV_ABS },
882 { .name = "EV_FF", .value = EV_FF },
883 { .name = "EV_FF_STATUS", .value = EV_FF_STATUS },
884 { .name = "EV_KEY", .value
[all...]
/third_party/pulseaudio/src/tests/
H A 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), in START_TEST()
96 int32_t value; START_TEST() local
123 uint32_t value; START_TEST() local
146 uint64_t value; START_TEST() local
170 long value; START_TEST() local
196 int64_t value; START_TEST() local
224 double value; START_TEST() local
245 char* value; START_TEST() local
281 char* value; START_TEST() local
303 char* value; START_TEST() local
[all...]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/exif_metadata_accessor_test/
H A Ddng_exif_metadata_accessor_test.cpp60 std::string value; in HWTEST_F() local
61 ASSERT_EQ(exifMetadata->GetValue("BitsPerSample", value), SUCCESS); in HWTEST_F()
62 ASSERT_EQ(value, "8, 8, 8"); in HWTEST_F()
63 ASSERT_EQ(exifMetadata->GetValue("Orientation", value), SUCCESS); in HWTEST_F()
64 ASSERT_EQ(value, "Right-top"); in HWTEST_F()
65 ASSERT_EQ(exifMetadata->GetValue("ImageLength", value), SUCCESS); in HWTEST_F()
66 ASSERT_EQ(value, "3024"); in HWTEST_F()
67 ASSERT_EQ(exifMetadata->GetValue("ImageWidth", value), SUCCESS); in HWTEST_F()
68 ASSERT_EQ(value, "4032"); in HWTEST_F()
69 ASSERT_EQ(exifMetadata->GetValue("GPSLatitude", value), SUCCES in HWTEST_F()
117 std::string value; HWTEST_F() local
174 std::string value; HWTEST_F() local
230 std::string value; HWTEST_F() local
287 std::string value; HWTEST_F() local
344 std::string value; HWTEST_F() local
399 std::string value; HWTEST_F() local
456 std::string value; HWTEST_F() local
538 std::string value; HWTEST_F() local
560 std::string value; HWTEST_F() local
616 std::string value; HWTEST_F() local
[all...]
/third_party/python/Lib/email/
H A D_header_value_parser.py1 """Header value parser implementing various email-related RFC parsing rules.
35 All TokenList and Terminal objects have a 'value' attribute, which produces the
36 semantically meaningful value of that part of the parse subtree. The value of
41 the value of a 'bare-quoted-string' (a quoted-string with no leading or
43 is preserved in the returned value. Note that in all Terminal strings quoted
46 All TokenList and Terminal objects also have a string value, which attempts to
96 def quote_string(value):
97 return '"'+str(value).replace('\\', '\\\\').replace('"', r'\"')+'"'
133 def value(sel member in TokenList
185 def value(self): global() member in WhiteSpaceTokenList
259 def value(self): global() member in BareQuotedString
533 def value(self): global() member in AddrSpec
579 def value(self): global() member in DisplayName
604 def value(self): global() member in LocalPart
916 def value(self): global() member in WhiteSpaceTerminal
926 def value(self): global() member in ValueTerminal
936 def value(self): global() member in EWWhiteSpaceTerminal
[all...]
/third_party/protobuf/js/binary/
H A Dwriter.js288 * @param {jspb.AnyFieldType} value
290 jspb.BinaryWriter.prototype.writeAny = function(fieldType, field, value) {
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));
[all...]
H A Dencoder.js123 * @param {number} value The integer to convert.
125 jspb.BinaryEncoder.prototype.writeUnsignedVarint32 = function(value) {
126 goog.asserts.assert(value == Math.floor(value));
127 goog.asserts.assert((value >= 0) &&
128 (value < jspb.BinaryConstants.TWO_TO_32));
130 while (value > 127) {
131 this.buffer_.push((value & 0x7f) | 0x80);
132 value = value >>>
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBWire.php103 // that those with a small absolute value will have smaller encoded values,
166 public static function readInt32(&$input, &$value)
168 return $input->readVarint32($value);
171 public static function readInt64(&$input, &$value)
173 $success = $input->readVarint64($value);
174 if (PHP_INT_SIZE == 4 && bccomp($value, "9223372036854775807") > 0) {
175 $value = bcsub($value, "18446744073709551616"); variable
180 public static function readUint32(&$input, &$value)
182 return self::readInt32($input, $value);
195 $value = GPBWire::zigZagDecode32($value); global() variable
204 $value = GPBWire::zigZagDecode64($value); global() variable
233 $value = bcsub($value, "18446744073709551616"); global() variable
244 $value = unpack('f', $data)[1]; global() variable
254 $value = unpack('d', $data)[1]; global() variable
264 $value = false; global() variable
266 $value = true; global() variable
322 $value = GPBWire::zigZagEncode32($value); global() variable
328 $value = GPBWire::zigZagEncode64($value); global() variable
433 $value = self::zigZagEncode32($value); global() variable
439 $value = self::zigZagEncode64($value); global() variable
[all...]
/third_party/json/tests/src/
H A Dunit-pointer_access.cpp19 json value = {{"one", 1}, {"two", 2}};
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
48 const json value = {{"one", 1}, {"two", 2}}; global() variable
106 const json value = {1, 2, 3, 4}; global() variable
164 const json value = "hello"; global() variable
222 const json value = false; global() variable
280 const json value = 23; global() variable
338 const json value = 23u; global() variable
396 const json value = 42.23; global() variable
425 const json value = json::binary({1, 2, 3}); global() variable
454 const json value = json::binary({}); global() variable
[all...]
H A Dunit-reference_access.cpp16 // create a JSON value with different types
34 json value = {{"one", 1}, {"two", 2}};
37 auto& p1 = value.get_ref<test_type&>();
38 CHECK(&p1 == value.get_ptr<test_type*>());
39 CHECK(p1 == value.get<test_type>());
41 const auto& p2 = value.get_ref<const test_type&>();
42 CHECK(&p2 == value.get_ptr<const test_type*>());
43 CHECK(p2 == value.get<test_type>());
46 CHECK_NOTHROW(value.get_ref<json::object_t&>());
47 CHECK_THROWS_WITH_AS(value
64 const json value = {{"one", 1}, {"two", 2}}; global() variable
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js100 function isResourceEqual(stageValue, value) {
101 return (stageValue.bundleName === value.bundleName) &&
102 (stageValue.moduleName === value.moduleName) &&
103 (stageValue.id === value.id) &&
104 (stageValue.params === value.params) &&
105 (stageValue.type === value.type);
107 function isBaseOrResourceEqual(stageValue, value) {
108 if (isResource(stageValue) && isResource(value)) {
109 return isResourceEqual(stageValue, value);
111 else if (!isResource(stageValue) && !isResource(value)) {
[all...]
/test/xts/acts/startup_lite/syspara_hal/src/
H A Ddeviceinfo_func_test.c66 const char *value = GetDeviceType(); variable
67 printf("Device Type=%s\n", value);
68 AssertNotEmpty(value); variable
81 const char *value = GetDeviceType(); variable
82 printf("Device Type=%s\n", value);
83 TEST_ASSERT_NOT_NULL(value); variable
84 if (value != NULL)
86 TEST_ASSERT_TRUE(strlen(value) <= 32);
99 const char *value = GetManufacture(); variable
100 printf("Manufacture=%s\n", value);
101 AssertNotEmpty(value); global() variable
114 const char *value = GetManufacture(); global() variable
116 TEST_ASSERT_NOT_NULL(value); global() variable
132 const char *value = GetBrand(); global() variable
134 AssertNotEmpty(value); global() variable
147 const char *value = GetBrand(); global() variable
149 TEST_ASSERT_NOT_NULL(value); global() variable
165 const char *value = GetMarketName(); global() variable
167 AssertNotEmpty(value); global() variable
180 const char *value = GetMarketName(); global() variable
182 TEST_ASSERT_NOT_NULL(value); global() variable
198 const char *value = GetProductSeries(); global() variable
200 AssertNotEmpty(value); global() variable
213 const char *value = GetProductSeries(); global() variable
215 TEST_ASSERT_NOT_NULL(value); global() variable
231 const char *value = GetProductModel(); global() variable
233 AssertNotEmpty(value); global() variable
246 const char *value = GetProductModel(); global() variable
248 TEST_ASSERT_NOT_NULL(value); global() variable
264 const char *value = GetHardwareModel(); global() variable
266 AssertNotEmpty(value); global() variable
279 const char *value = GetHardwareModel(); global() variable
281 TEST_ASSERT_NOT_NULL(value); global() variable
297 const char *value = GetSerial(); global() variable
299 AssertNotEmpty(value); global() variable
312 const char *value = GetSerial(); global() variable
314 TEST_ASSERT_NOT_NULL(value); global() variable
330 const char *value = GetOSFullName(); global() variable
332 AssertNotEmpty(value); global() variable
345 const char *value = GetOSFullName(); global() variable
347 TEST_ASSERT_NOT_NULL(value); global() variable
363 const char *value = GetDisplayVersion(); global() variable
365 AssertNotEmpty(value); global() variable
378 const char *value = GetDisplayVersion(); global() variable
380 TEST_ASSERT_NOT_NULL(value); global() variable
396 const char *value = GetBootloaderVersion(); global() variable
398 AssertNotEmpty(value); global() variable
411 const char *value = GetBootloaderVersion(); global() variable
413 TEST_ASSERT_NOT_NULL(value); global() variable
429 const char *value = GetSecurityPatchTag(); global() variable
431 AssertNotEmpty(value); global() variable
444 const char *value = GetSecurityPatchTag(); global() variable
446 TEST_ASSERT_NOT_NULL(value); global() variable
463 const char *value = GetSecurityPatchTag(); global() variable
498 const char *value = GetAbiList(); global() variable
500 AssertNotEmpty(value); global() variable
513 const char *value = GetAbiList(); global() variable
515 TEST_ASSERT_NOT_NULL(value); global() variable
531 int value = GetSdkApiVersion(); global() variable
545 int value = GetFirstApiVersion(); global() variable
559 const char *value = GetIncrementalVersion(); global() variable
561 AssertNotEmpty(value); global() variable
573 const char *value = GetVersionId(); global() variable
575 AssertNotEmpty(value); global() variable
588 const char *value = GetVersionId(); global() variable
590 TEST_ASSERT_NOT_NULL(value); global() variable
606 const char *value = GetBuildType(); global() variable
608 AssertNotEmpty(value); global() variable
621 const char *value = GetBuildType(); global() variable
623 TEST_ASSERT_NOT_NULL(value); global() variable
639 const char *value = GetBuildUser(); global() variable
641 AssertNotEmpty(value); global() variable
654 const char *value = GetBuildUser(); global() variable
656 TEST_ASSERT_NOT_NULL(value); global() variable
672 const char *value = GetBuildHost(); global() variable
674 AssertNotEmpty(value); global() variable
687 const char *value = GetBuildHost(); global() variable
689 TEST_ASSERT_NOT_NULL(value); global() variable
705 const char *value = GetBuildTime(); global() variable
707 AssertNotEmpty(value); global() variable
720 const char *value = GetBuildTime(); global() variable
722 TEST_ASSERT_NOT_NULL(value); global() variable
738 const char *value = GetSoftwareModel(); global() variable
740 AssertNotEmpty(value); global() variable
753 const char *value = GetSoftwareModel(); global() variable
755 TEST_ASSERT_NOT_NULL(value); global() variable
771 const char *value = GetBuildRootHash(); global() variable
773 TEST_ASSERT_NOT_NULL(value); global() variable
785 const char *value = GetHardwareProfile(); global() variable
787 AssertNotEmpty(value); global() variable
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedOutputStream.java176 * keys, the order is based on comparing the Unicode value of each character in the strings.
234 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 writeUInt64(int fieldNumber, long value) writeUInt64() argument
264 writeSInt64(final int fieldNumber, final long value) writeSInt64() argument
270 writeFixed64(int fieldNumber, long value) writeFixed64() argument
273 writeSFixed64(final int fieldNumber, final long value) writeSFixed64() argument
278 writeFloat(final int fieldNumber, final float value) writeFloat() argument
283 writeDouble(final int fieldNumber, final double value) writeDouble() argument
289 writeBool(int fieldNumber, boolean value) writeBool() argument
295 writeEnum(final int fieldNumber, final int value) writeEnum() argument
301 writeString(int fieldNumber, String value) writeString() argument
305 writeBytes(int fieldNumber, ByteString value) writeBytes() argument
309 writeByteArray(int fieldNumber, byte[] value) writeByteArray() argument
313 writeByteArray(int fieldNumber, byte[] value, int offset, int length) writeByteArray() argument
325 writeByteBuffer(int fieldNumber, ByteBuffer value) writeByteBuffer() argument
328 writeRawByte(final byte value) writeRawByte() argument
333 writeRawByte(final int value) writeRawByte() argument
338 writeRawBytes(final byte[] value) writeRawBytes() argument
343 writeRawBytes(final byte[] value, int offset, int length) writeRawBytes() argument
348 writeRawBytes(final ByteString value) writeRawBytes() argument
360 writeRawBytes(final ByteBuffer value) writeRawBytes() argument
364 writeMessage(final int fieldNumber, final MessageLite value) writeMessage() argument
369 writeMessage(final int fieldNumber, final MessageLite value, Schema schema) writeMessage() argument
377 writeMessageSetExtension(final int fieldNumber, final MessageLite value) writeMessageSetExtension() argument
385 writeRawMessageSetExtension(final int fieldNumber, final ByteString value) writeRawMessageSetExtension() argument
392 writeInt32NoTag(final int value) writeInt32NoTag() argument
396 writeUInt32NoTag(int value) writeUInt32NoTag() argument
399 writeSInt32NoTag(final int value) writeSInt32NoTag() argument
405 writeFixed32NoTag(int value) writeFixed32NoTag() argument
408 writeSFixed32NoTag(final int value) writeSFixed32NoTag() argument
413 writeInt64NoTag(final long value) writeInt64NoTag() argument
419 writeUInt64NoTag(long value) writeUInt64NoTag() argument
422 writeSInt64NoTag(final long value) writeSInt64NoTag() argument
428 writeFixed64NoTag(long value) writeFixed64NoTag() argument
431 writeSFixed64NoTag(final long value) writeSFixed64NoTag() argument
436 writeFloatNoTag(final float value) writeFloatNoTag() argument
441 writeDoubleNoTag(final double value) writeDoubleNoTag() argument
446 writeBoolNoTag(final boolean value) writeBoolNoTag() argument
454 writeEnumNoTag(final int value) writeEnumNoTag() argument
461 writeStringNoTag(String value) writeStringNoTag() argument
465 writeBytesNoTag(final ByteString value) writeBytesNoTag() argument
468 writeByteArrayNoTag(final byte[] value) writeByteArrayNoTag() argument
474 writeMessageNoTag(final MessageLite value) writeMessageNoTag() argument
478 writeMessageNoTag(final MessageLite value, Schema schema) writeMessageNoTag() argument
484 write(byte value) write() argument
488 write(byte[] value, int offset, int length) write() argument
492 writeLazy(byte[] value, int offset, int length) writeLazy() argument
495 write(ByteBuffer value) write() argument
499 writeLazy(ByteBuffer value) writeLazy() argument
508 computeInt32Size(final int fieldNumber, final int value) computeInt32Size() argument
516 computeUInt32Size(final int fieldNumber, final int value) computeUInt32Size() argument
524 computeSInt32Size(final int fieldNumber, final int value) computeSInt32Size() argument
532 computeFixed32Size(final int fieldNumber, final int value) computeFixed32Size() argument
540 computeSFixed32Size(final int fieldNumber, final int value) computeSFixed32Size() argument
548 computeInt64Size(final int fieldNumber, final long value) computeInt64Size() argument
556 computeUInt64Size(final int fieldNumber, final long value) computeUInt64Size() argument
564 computeSInt64Size(final int fieldNumber, final long value) computeSInt64Size() argument
572 computeFixed64Size(final int fieldNumber, final long value) computeFixed64Size() argument
580 computeSFixed64Size(final int fieldNumber, final long value) computeSFixed64Size() argument
588 computeFloatSize(final int fieldNumber, final float value) computeFloatSize() argument
596 computeDoubleSize(final int fieldNumber, final double value) computeDoubleSize() argument
603 computeBoolSize(final int fieldNumber, final boolean value) computeBoolSize() argument
612 computeEnumSize(final int fieldNumber, final int value) computeEnumSize() argument
620 computeStringSize(final int fieldNumber, final String value) computeStringSize() argument
628 computeBytesSize(final int fieldNumber, final ByteString value) computeBytesSize() argument
636 computeByteArraySize(final int fieldNumber, final byte[] value) computeByteArraySize() argument
644 computeByteBufferSize(final int fieldNumber, final ByteBuffer value) computeByteBufferSize() argument
652 computeLazyFieldSize(final int fieldNumber, final LazyFieldLite value) computeLazyFieldSize() argument
660 computeMessageSize(final int fieldNumber, final MessageLite value) computeMessageSize() argument
668 computeMessageSize( final int fieldNumber, final MessageLite value, final Schema schema) computeMessageSize() argument
677 computeMessageSetExtensionSize(final int fieldNumber, final MessageLite value) computeMessageSetExtensionSize() argument
687 computeRawMessageSetExtensionSize( final int fieldNumber, final ByteString value) computeRawMessageSetExtensionSize() argument
699 computeLazyFieldMessageSetExtensionSize( final int fieldNumber, final LazyFieldLite value) computeLazyFieldMessageSetExtensionSize() argument
717 computeInt32SizeNoTag(final int value) computeInt32SizeNoTag() argument
727 computeUInt32SizeNoTag(final int value) computeUInt32SizeNoTag() argument
744 computeSInt32SizeNoTag(final int value) computeSInt32SizeNoTag() argument
762 computeInt64SizeNoTag(final long value) computeInt64SizeNoTag() argument
770 computeUInt64SizeNoTag(long value) computeUInt64SizeNoTag() argument
795 computeSInt64SizeNoTag(final long value) computeSInt64SizeNoTag() argument
834 computeEnumSizeNoTag(final int value) computeEnumSizeNoTag() argument
839 computeStringSizeNoTag(final String value) computeStringSizeNoTag() argument
856 computeLazyFieldSizeNoTag(final LazyFieldLite value) computeLazyFieldSizeNoTag() argument
861 computeBytesSizeNoTag(final ByteString value) computeBytesSizeNoTag() argument
866 computeByteArraySizeNoTag(final byte[] value) computeByteArraySizeNoTag() argument
871 computeByteBufferSizeNoTag(final ByteBuffer value) computeByteBufferSizeNoTag() argument
876 computeMessageSizeNoTag(final MessageLite value) computeMessageSizeNoTag() argument
881 computeMessageSizeNoTag(final MessageLite value, final Schema schema) computeMessageSizeNoTag() argument
979 writeByteArrayNoTag(final byte[] value, final int offset, final int length) writeByteArrayNoTag() argument
982 inefficientWriteStringNoTag(String value, UnpairedSurrogateException cause) inefficientWriteStringNoTag() argument
1012 writeGroup(final int fieldNumber, final MessageLite value) writeGroup() argument
1024 writeGroup(final int fieldNumber, final MessageLite value, Schema schema) writeGroup() argument
1037 writeGroupNoTag(final MessageLite value) writeGroupNoTag() argument
1047 writeGroupNoTag(final MessageLite value, Schema schema) writeGroupNoTag() argument
1058 computeGroupSize(final int fieldNumber, final MessageLite value) computeGroupSize() argument
1069 computeGroupSize(final int fieldNumber, final MessageLite value, Schema schema) computeGroupSize() argument
1075 computeGroupSizeNoTag(final MessageLite value) computeGroupSizeNoTag() argument
1081 computeGroupSizeNoTag(final MessageLite value, Schema schema) computeGroupSizeNoTag() argument
1092 writeRawVarint32(int value) writeRawVarint32() argument
1102 writeRawVarint64(long value) writeRawVarint64() argument
1113 computeRawVarint32Size(final int value) computeRawVarint32Size() argument
1123 computeRawVarint64Size(long value) computeRawVarint64Size() argument
1133 writeRawLittleEndian32(final int value) writeRawLittleEndian32() argument
1143 writeRawLittleEndian64(final long value) writeRawLittleEndian64() argument
1178 writeInt32(final int fieldNumber, final int value) writeInt32() argument
1184 writeUInt32(final int fieldNumber, final int value) writeUInt32() argument
1190 writeFixed32(final int fieldNumber, final int value) writeFixed32() argument
1196 writeUInt64(final int fieldNumber, final long value) writeUInt64() argument
1202 writeFixed64(final int fieldNumber, final long value) writeFixed64() argument
1208 writeBool(final int fieldNumber, final boolean value) writeBool() argument
1214 writeString(final int fieldNumber, final String value) writeString() argument
1220 writeBytes(final int fieldNumber, final ByteString value) writeBytes() argument
1226 writeByteArray(final int fieldNumber, final byte[] value) writeByteArray() argument
1231 writeByteArray( final int fieldNumber, final byte[] value, final int offset, final int length) writeByteArray() argument
1239 writeByteBuffer(final int fieldNumber, final ByteBuffer value) writeByteBuffer() argument
1247 writeBytesNoTag(final ByteString value) writeBytesNoTag() argument
1253 writeByteArrayNoTag(final byte[] value, int offset, int length) writeByteArrayNoTag() argument
1260 writeRawBytes(final ByteBuffer value) writeRawBytes() argument
1271 writeMessage(final int fieldNumber, final MessageLite value) writeMessage() argument
1278 writeMessage(final int fieldNumber, final MessageLite value, Schema schema) writeMessage() argument
1286 writeMessageSetExtension(final int fieldNumber, final MessageLite value) writeMessageSetExtension() argument
1295 writeRawMessageSetExtension(final int fieldNumber, final ByteString value) writeRawMessageSetExtension() argument
1304 writeMessageNoTag(final MessageLite value) writeMessageNoTag() argument
1310 writeMessageNoTag(final MessageLite value, Schema schema) writeMessageNoTag() argument
1316 write(byte value) write() argument
1326 writeInt32NoTag(int value) writeInt32NoTag() argument
1336 writeUInt32NoTag(int value) writeUInt32NoTag() argument
1384 writeFixed32NoTag(int value) writeFixed32NoTag() argument
1397 writeUInt64NoTag(long value) writeUInt64NoTag() argument
1427 writeFixed64NoTag(long value) writeFixed64NoTag() argument
1444 write(byte[] value, int offset, int length) write() argument
1455 writeLazy(byte[] value, int offset, int length) writeLazy() argument
1460 write(ByteBuffer value) write() argument
1472 writeLazy(ByteBuffer value) writeLazy() argument
1477 writeStringNoTag(String value) writeStringNoTag() argument
1571 writeInt32(final int fieldNumber, final int value) writeInt32() argument
1577 writeUInt32(final int fieldNumber, final int value) writeUInt32() argument
1583 writeFixed32(final int fieldNumber, final int value) writeFixed32() argument
1589 writeUInt64(final int fieldNumber, final long value) writeUInt64() argument
1595 writeFixed64(final int fieldNumber, final long value) writeFixed64() argument
1601 writeBool(final int fieldNumber, final boolean value) writeBool() argument
1607 writeString(final int fieldNumber, final String value) writeString() argument
1613 writeBytes(final int fieldNumber, final ByteString value) writeBytes() argument
1619 writeByteArray(final int fieldNumber, final byte[] value) writeByteArray() argument
1624 writeByteArray( final int fieldNumber, final byte[] value, final int offset, final int length) writeByteArray() argument
1632 writeByteBuffer(final int fieldNumber, final ByteBuffer value) writeByteBuffer() argument
1639 writeMessage(final int fieldNumber, final MessageLite value) writeMessage() argument
1645 writeMessage(final int fieldNumber, final MessageLite value, Schema schema) writeMessage() argument
1652 writeMessageSetExtension(final int fieldNumber, final MessageLite value) writeMessageSetExtension() argument
1661 writeRawMessageSetExtension(final int fieldNumber, final ByteString value) writeRawMessageSetExtension() argument
1670 writeMessageNoTag(final MessageLite value) writeMessageNoTag() argument
1676 writeMessageNoTag(final MessageLite value, Schema schema) writeMessageNoTag() argument
1682 write(byte value) write() argument
1691 writeBytesNoTag(final ByteString value) writeBytesNoTag() argument
1697 writeByteArrayNoTag(final byte[] value, int offset, int length) writeByteArrayNoTag() argument
1703 writeRawBytes(final ByteBuffer value) writeRawBytes() argument
1714 writeInt32NoTag(int value) writeInt32NoTag() argument
1724 writeUInt32NoTag(int value) writeUInt32NoTag() argument
1741 writeFixed32NoTag(int value) writeFixed32NoTag() argument
1750 writeUInt64NoTag(long value) writeUInt64NoTag() argument
1767 writeFixed64NoTag(long value) writeFixed64NoTag() argument
1776 write(byte[] value, int offset, int length) write() argument
1787 writeLazy(byte[] value, int offset, int length) writeLazy() argument
1792 write(ByteBuffer value) write() argument
1801 writeLazy(ByteBuffer value) writeLazy() argument
1806 writeStringNoTag(String value) writeStringNoTag() argument
1863 encode(String value) encode() argument
1905 writeInt32(int fieldNumber, int value) writeInt32() argument
1911 writeUInt32(int fieldNumber, int value) writeUInt32() argument
1917 writeFixed32(int fieldNumber, int value) writeFixed32() argument
1923 writeUInt64(int fieldNumber, long value) writeUInt64() argument
1929 writeFixed64(int fieldNumber, long value) writeFixed64() argument
1935 writeBool(int fieldNumber, boolean value) writeBool() argument
1941 writeString(int fieldNumber, String value) writeString() argument
1947 writeBytes(int fieldNumber, ByteString value) writeBytes() argument
1953 writeByteArray(int fieldNumber, byte[] value) writeByteArray() argument
1958 writeByteArray(int fieldNumber, byte[] value, int offset, int length) writeByteArray() argument
1965 writeByteBuffer(int fieldNumber, ByteBuffer value) writeByteBuffer() argument
1972 writeMessage(int fieldNumber, MessageLite value) writeMessage() argument
1978 writeMessage(int fieldNumber, MessageLite value, Schema schema) writeMessage() argument
1984 writeMessageSetExtension(int fieldNumber, MessageLite value) writeMessageSetExtension() argument
1992 writeRawMessageSetExtension(int fieldNumber, ByteString value) writeRawMessageSetExtension() argument
2000 writeMessageNoTag(MessageLite value) writeMessageNoTag() argument
2006 writeMessageNoTag(MessageLite value, Schema schema) writeMessageNoTag() argument
2012 write(byte value) write() argument
2021 writeBytesNoTag(ByteString value) writeBytesNoTag() argument
2027 writeByteArrayNoTag(byte[] value, int offset, int length) writeByteArrayNoTag() argument
2033 writeRawBytes(ByteBuffer value) writeRawBytes() argument
2044 writeInt32NoTag(int value) writeInt32NoTag() argument
2054 writeUInt32NoTag(int value) writeUInt32NoTag() argument
2082 writeFixed32NoTag(int value) writeFixed32NoTag() argument
2088 writeUInt64NoTag(long value) writeUInt64NoTag() argument
2116 writeFixed64NoTag(long value) writeFixed64NoTag() argument
2122 write(byte[] value, int offset, int length) write() argument
2140 writeLazy(byte[] value, int offset, int length) writeLazy() argument
2145 write(ByteBuffer value) write() argument
2157 writeLazy(ByteBuffer value) writeLazy() argument
2162 writeStringNoTag(String value) writeStringNoTag() argument
2268 buffer(byte value) buffer() argument
2285 bufferInt32NoTag(final int value) bufferInt32NoTag() argument
2298 bufferUInt32NoTag(int value) bufferUInt32NoTag() argument
2331 bufferUInt64NoTag(long value) bufferUInt64NoTag() argument
2364 bufferFixed32NoTag(int value) bufferFixed32NoTag() argument
2376 bufferFixed64NoTag(long value) bufferFixed64NoTag() argument
2411 writeInt32(final int fieldNumber, final int value) writeInt32() argument
2418 writeUInt32(final int fieldNumber, final int value) writeUInt32() argument
2425 writeFixed32(final int fieldNumber, final int value) writeFixed32() argument
2432 writeUInt64(final int fieldNumber, final long value) writeUInt64() argument
2439 writeFixed64(final int fieldNumber, final long value) writeFixed64() argument
2446 writeBool(final int fieldNumber, final boolean value) writeBool() argument
2453 writeString(final int fieldNumber, final String value) writeString() argument
2459 writeBytes(final int fieldNumber, final ByteString value) writeBytes() argument
2465 writeByteArray(final int fieldNumber, final byte[] value) writeByteArray() argument
2470 writeByteArray( final int fieldNumber, final byte[] value, final int offset, final int length) writeByteArray() argument
2478 writeByteBuffer(final int fieldNumber, final ByteBuffer value) writeByteBuffer() argument
2485 writeBytesNoTag(final ByteString value) writeBytesNoTag() argument
2491 writeByteArrayNoTag(final byte[] value, int offset, int length) writeByteArrayNoTag() argument
2497 writeRawBytes(final ByteBuffer value) writeRawBytes() argument
2508 writeMessage(final int fieldNumber, final MessageLite value) writeMessage() argument
2514 writeMessage(final int fieldNumber, final MessageLite value, Schema schema) writeMessage() argument
2521 writeMessageSetExtension(final int fieldNumber, final MessageLite value) writeMessageSetExtension() argument
2530 writeRawMessageSetExtension(final int fieldNumber, final ByteString value) writeRawMessageSetExtension() argument
2539 writeMessageNoTag(final MessageLite value) writeMessageNoTag() argument
2545 writeMessageNoTag(final MessageLite value, Schema schema) writeMessageNoTag() argument
2551 write(byte value) write() argument
2560 writeInt32NoTag(int value) writeInt32NoTag() argument
2570 writeUInt32NoTag(int value) writeUInt32NoTag() argument
2576 writeFixed32NoTag(final int value) writeFixed32NoTag() argument
2582 writeUInt64NoTag(long value) writeUInt64NoTag() argument
2588 writeFixed64NoTag(final long value) writeFixed64NoTag() argument
2594 writeStringNoTag(String value) writeStringNoTag() argument
2663 write(byte[] value, int offset, int length) write() argument
2670 writeLazy(byte[] value, int offset, int length) writeLazy() argument
2677 write(ByteBuffer value) write() argument
2685 writeLazy(ByteBuffer value) writeLazy() argument
2725 writeInt32(final int fieldNumber, final int value) writeInt32() argument
2732 writeUInt32(final int fieldNumber, final int value) writeUInt32() argument
2739 writeFixed32(final int fieldNumber, final int value) writeFixed32() argument
2746 writeUInt64(final int fieldNumber, final long value) writeUInt64() argument
2753 writeFixed64(final int fieldNumber, final long value) writeFixed64() argument
2760 writeBool(final int fieldNumber, final boolean value) writeBool() argument
2767 writeString(final int fieldNumber, final String value) writeString() argument
2773 writeBytes(final int fieldNumber, final ByteString value) writeBytes() argument
2779 writeByteArray(final int fieldNumber, final byte[] value) writeByteArray() argument
2784 writeByteArray( final int fieldNumber, final byte[] value, final int offset, final int length) writeByteArray() argument
2792 writeByteBuffer(final int fieldNumber, final ByteBuffer value) writeByteBuffer() argument
2799 writeBytesNoTag(final ByteString value) writeBytesNoTag() argument
2805 writeByteArrayNoTag(final byte[] value, int offset, int length) writeByteArrayNoTag() argument
2811 writeRawBytes(final ByteBuffer value) writeRawBytes() argument
2822 writeMessage(final int fieldNumber, final MessageLite value) writeMessage() argument
2828 writeMessage(final int fieldNumber, final MessageLite value, Schema schema) writeMessage() argument
2835 writeMessageSetExtension(final int fieldNumber, final MessageLite value) writeMessageSetExtension() argument
2844 writeRawMessageSetExtension(final int fieldNumber, final ByteString value) writeRawMessageSetExtension() argument
2853 writeMessageNoTag(final MessageLite value) writeMessageNoTag() argument
2859 writeMessageNoTag(final MessageLite value, Schema schema) writeMessageNoTag() argument
2865 write(byte value) write() argument
2874 writeInt32NoTag(int value) writeInt32NoTag() argument
2884 writeUInt32NoTag(int value) writeUInt32NoTag() argument
2890 writeFixed32NoTag(final int value) writeFixed32NoTag() argument
2896 writeUInt64NoTag(long value) writeUInt64NoTag() argument
2902 writeFixed64NoTag(final long value) writeFixed64NoTag() argument
2908 writeStringNoTag(String value) writeStringNoTag() argument
2979 write(byte[] value, int offset, int length) write() argument
3012 writeLazy(byte[] value, int offset, int length) writeLazy() argument
3017 write(ByteBuffer value) write() argument
3051 writeLazy(ByteBuffer value) writeLazy() argument
[all...]
/third_party/vixl/src/
H A Dcompiler-intrinsics-vixl.cc34 int CountLeadingSignBitsFallBack(int64_t value, int width) { in CountLeadingSignBitsFallBack() argument
36 if (width < 64) VIXL_ASSERT(IsIntN(width, value)); in CountLeadingSignBitsFallBack()
37 if (value >= 0) { in CountLeadingSignBitsFallBack()
38 return CountLeadingZeros(value, width) - 1; in CountLeadingSignBitsFallBack()
40 return CountLeadingZeros(~value, width) - 1; in CountLeadingSignBitsFallBack()
45 int CountLeadingZerosFallBack(uint64_t value, int width) { in CountLeadingZerosFallBack() argument
47 if (value == 0) { in CountLeadingZerosFallBack()
51 value = value << (64 - width); in CountLeadingZerosFallBack()
52 if ((value in CountLeadingZerosFallBack()
80 CountSetBitsFallBack(uint64_t value, int width) CountSetBitsFallBack() argument
115 CountTrailingZerosFallBack(uint64_t value, int width) CountTrailingZerosFallBack() argument
[all...]
/test/xts/acts/distributeddatamgr_lite/dbm_kv_store_hal/src/
H A Ddbm_kv_store_func_test.c96 } value, value1; in PutKVs() local
107 memset_s(&value, sizeof(value), 0, sizeof(value)); in PutKVs()
108 value.num = i; in PutKVs()
110 int ret = strcpy_s(value.content, sizeof(value.content), content); in PutKVs()
113 status = DBM_Put(g_KVStoreHandle, keytemp, (void*)&value, sizeof(value)); in PutKVs()
126 TEST_ASSERT_EQUAL_INT(value1.num, value in PutKVs()
149 } value, value1; GetKVs() local
224 } value; global() variable
256 } value; global() variable
280 } value; global() variable
304 } value; global() variable
328 } value; global() variable
349 } value; global() variable
370 } value; global() variable
391 } value; global() variable
412 } value; global() variable
433 } value; global() variable
454 } value; global() variable
478 } value; global() variable
499 } value; global() variable
520 } value; global() variable
541 } value; global() variable
565 } value; global() variable
586 } value; global() variable
610 } value, value1; global() variable
643 } value, value1; global() variable
676 } value, value1, value2; global() variable
720 } value; global() variable
740 } value, value1; global() variable
783 char value[] = "It is never too old to learn"; global() variable
812 char value[] = "It is never too old to learn"; global() variable
840 char value[] = "It is never too old to learn"; global() variable
869 char value[] = "It is never too old to learn"; global() variable
[all...]
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-helpers-value.c67 * Get type field of ecma value
72 ecma_get_value_type_field (ecma_value_t value) /**< ecma value */ in ecma_get_value_type_field() argument
74 return value & ECMA_VALUE_TYPE_MASK; in ecma_get_value_type_field()
78 * Convert a pointer into an ecma value.
80 * @return ecma value
102 * Get a pointer from an ecma value
107 ecma_get_pointer_from_ecma_value (ecma_value_t value) /**< value */ in ecma_get_pointer_from_ecma_value() argument
110 void *ptr = (void *) (uintptr_t) ((value) in ecma_get_pointer_from_ecma_value()
125 ecma_is_value_direct(ecma_value_t value) ecma_is_value_direct() argument
137 ecma_is_value_simple(ecma_value_t value) ecma_is_value_simple() argument
149 ecma_is_value_equal_to_simple_value(ecma_value_t value, ecma_value_t simple_value) ecma_is_value_equal_to_simple_value() argument
162 ecma_is_value_empty(ecma_value_t value) ecma_is_value_empty() argument
174 ecma_is_value_undefined(ecma_value_t value) ecma_is_value_undefined() argument
186 ecma_is_value_null(ecma_value_t value) ecma_is_value_null() argument
198 ecma_is_value_boolean(ecma_value_t value) ecma_is_value_boolean() argument
210 ecma_is_value_true(ecma_value_t value) ecma_is_value_true() argument
222 ecma_is_value_false(ecma_value_t value) ecma_is_value_false() argument
234 ecma_is_value_found(ecma_value_t value) ecma_is_value_found() argument
246 ecma_is_value_array_hole(ecma_value_t value) ecma_is_value_array_hole() argument
258 ecma_is_value_integer_number(ecma_value_t value) ecma_is_value_integer_number() argument
286 ecma_is_value_float_number(ecma_value_t value) ecma_is_value_float_number() argument
298 ecma_is_value_number(ecma_value_t value) ecma_is_value_number() argument
314 ecma_is_value_string(ecma_value_t value) ecma_is_value_string() argument
327 ecma_is_value_symbol(ecma_value_t value) ecma_is_value_symbol() argument
340 ecma_is_value_prop_name(ecma_value_t value) ecma_is_value_prop_name() argument
356 ecma_is_value_direct_string(ecma_value_t value) ecma_is_value_direct_string() argument
368 ecma_is_value_non_direct_string(ecma_value_t value) ecma_is_value_non_direct_string() argument
380 ecma_is_value_object(ecma_value_t value) ecma_is_value_object() argument
392 ecma_is_value_error_reference(ecma_value_t value) ecma_is_value_error_reference() argument
402 ecma_check_value_type_is_spec_defined(ecma_value_t value) ecma_check_value_type_is_spec_defined() argument
685 ecma_get_integer_from_value(ecma_value_t value) ecma_get_integer_from_value() argument
698 ecma_get_float_from_value(ecma_value_t value) ecma_get_float_from_value() argument
711 ecma_get_pointer_from_float_value(ecma_value_t value) ecma_get_pointer_from_float_value() argument
724 ecma_get_number_from_value(ecma_value_t value) ecma_get_number_from_value() argument
740 ecma_get_string_from_value(ecma_value_t value) ecma_get_string_from_value() argument
759 ecma_get_symbol_from_value(ecma_value_t value) ecma_get_symbol_from_value() argument
773 ecma_get_prop_name_from_value(ecma_value_t value) ecma_get_prop_name_from_value() argument
791 ecma_get_object_from_value(ecma_value_t value) ecma_get_object_from_value() argument
804 ecma_get_error_reference_from_value(ecma_value_t value) ecma_get_error_reference_from_value() argument
817 ecma_invert_boolean_value(ecma_value_t value) ecma_invert_boolean_value() argument
830 ecma_copy_value(ecma_value_t value) ecma_copy_value() argument
879 ecma_fast_copy_value(ecma_value_t value) ecma_fast_copy_value() argument
890 ecma_copy_value_if_not_object(ecma_value_t value) ecma_copy_value_if_not_object() argument
904 ecma_ref_if_object(ecma_value_t value) ecma_ref_if_object() argument
916 ecma_deref_if_object(ecma_value_t value) ecma_deref_if_object() argument
1049 ecma_free_value(ecma_value_t value) ecma_free_value() argument
1100 ecma_fast_free_value(ecma_value_t value) ecma_fast_free_value() argument
1112 ecma_free_value_if_not_object(ecma_value_t value) ecma_free_value_if_not_object() argument
1124 ecma_free_number(ecma_value_t value) ecma_free_number() argument
1148 ecma_get_typeof_lit_id(ecma_value_t value) ecma_get_typeof_lit_id() argument
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_to_string.hpp28 VULKAN_HPP_INLINE std::string to_string( FormatFeatureFlags value ) in to_string()
30 if ( !value ) in to_string()
34 if ( value & FormatFeatureFlagBits::eSampledImage ) in to_string()
36 if ( value & FormatFeatureFlagBits::eStorageImage ) in to_string()
38 if ( value & FormatFeatureFlagBits::eStorageImageAtomic ) in to_string()
40 if ( value & FormatFeatureFlagBits::eUniformTexelBuffer ) in to_string()
42 if ( value & FormatFeatureFlagBits::eStorageTexelBuffer ) in to_string()
44 if ( value & FormatFeatureFlagBits::eStorageTexelBufferAtomic ) in to_string()
46 if ( value & FormatFeatureFlagBits::eVertexBuffer ) in to_string()
48 if ( value in to_string()
[all...]
/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2_V4.h35 SK_OT_USHORT value; member
48 } value; variable
75 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
76 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
77 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
78 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
79 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
80 SK_OT_USHORT value;
263 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
264 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all...]
H A DSkOTTable_OS_2_V3.h35 SK_OT_USHORT value; member
48 } value; variable
75 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
76 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
77 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
78 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
79 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
80 SK_OT_USHORT value;
263 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
264 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all...]
H A DSkOTTable_OS_2_V2.h35 SK_OT_USHORT value; member
48 } value; variable
75 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
76 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
77 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
78 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
79 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
80 SK_OT_USHORT value;
263 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
264 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
[all...]
/third_party/node/lib/internal/
H A Dvalidators.js40 * @param {*} value
43 function isInt32(value) {
44 return value === (value | 0);
48 * @param {*} value
51 function isUint32(value) {
52 return value === (value >>> 0);
62 * C++ land, but any value higher than 0o777 will result in platform-specific
64 * @param {*} value Value
[all...]

Completed in 36 milliseconds

12345678910>>...944