/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkTimelineSemaphore.hpp | 36 // for the payload to become a certain value. When a thread signals the timeline, it provides 39 // There is no way to reset a timeline or to decrease the payload's value. A user must instead 49 // Block until this semaphore is signaled with the specified value; 50 void wait(uint64_t value); 52 // Wait until a certain amount of time has passed or until the specified value is signaled. 54 VkResult wait(uint64_t value, const std::chrono::time_point<CLOCK, DURATION> end_ns); 56 // Set the payload to the specified value and signal all waiting threads. 57 void signal(uint64_t value); 60 // as there's no guarantee that the value returned here matches the actual payload's value 146 wait(uint64_t value, const std::chrono::time_point<Clock, Duration> timeout) wait() argument 153 wait(uint64_t value, const std::chrono::time_point<Clock, Duration> timeout) wait() argument [all...] |
/third_party/skia/src/xml/ |
H A D | SkDOM.h | 82 bool findS32(const Node*, const char name[], int32_t* value) const; 83 bool findScalars(const Node*, const char name[], SkScalar value[], int count) const; 84 bool findHex(const Node*, const char name[], uint32_t* value) const; 88 bool findScalar(const Node* node, const char name[], SkScalar value[]) const { in findScalar() 89 return this->findScalars(node, name, value, 1); in findScalar() 92 bool hasAttr(const Node*, const char name[], const char value[]) const; 93 bool hasS32(const Node*, const char name[], int32_t value) const; 94 bool hasScalar(const Node*, const char name[], SkScalar value) const; 95 bool hasHex(const Node*, const char name[], uint32_t value) const; 96 bool hasBool(const Node*, const char name[], bool value) cons [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-var-avar-table.hh | 53 // F2DOT14 fromCoord; /* A normalized coordinate value obtained using 55 // F2DOT14 toCoord; /* The modified, normalized coordinate value. */ 63 int map (int value, unsigned int from_offset = 0, unsigned int to_offset = 1) const in map() 73 return value; in map() 75 return value - arrayZ[0].fromCoord + arrayZ[0].toCoord; in map() 78 if (value <= arrayZ[0].fromCoord) in map() 79 return value - arrayZ[0].fromCoord + arrayZ[0].toCoord; in map() 83 for (i = 1; i < count && value > arrayZ[i].fromCoord; i++) in map() 86 if (value >= arrayZ[i].fromCoord) in map() 87 return value in map() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | constructorWithParameterPropertiesAndPrivateFields.es2015.js | 34 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
38 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
43 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
51 (_a = this, { key: ({ set value(_b) { __classPrivateFieldSet(_a, _A_privateField, _b, "f"); } }).value } = arg);
65 (_a = this, { key: ({ set value(_ [all...] |
H A D | privateNamesInGenericClasses.js | 6 set #prop(value : T) { this.#foo = value; } 35 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
37 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
41 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
59 _C_foo = new WeakMap(), _C_instances = new WeakSet(), _C_method = function _C_method() { return __classPrivateFieldGet(this, _C_foo, "f"); }, _C_prop_get = function _C_prop_get() { return __classPrivateFieldGet(this, _C_foo, "f"); }, _C_prop_set = function _C_prop_set(value) { __classPrivateFieldSe [all...] |
H A D | importCallExpressionAsyncES6UMD.js | 33 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
35 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
36 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
37 function step(result) { result.done ? resolve(result.value) : adopt(result.value) [all...] |
H A D | infiniteConstraints.js | 18 declare function value<V extends string>(val: V): Value<V>; 28 const noError = ensureNoDuplicates({main: value("test"), alternate: value("test2")}); 30 const shouldBeNoError = ensureNoDuplicates({main: value("test")}); 32 const shouldBeError = ensureNoDuplicates({main: value("dup"), alternate: value("dup")}); 57 var noError = ensureNoDuplicates({ main: value("test"), alternate: value("test2") });
58 var shouldBeNoError = ensureNoDuplicates({ main: value("test") });
59 var shouldBeError = ensureNoDuplicates({ main: value("du [all...] |
/third_party/vixl/tools/ |
H A D | printer.py | 57 if __last_line_type__.value >= LINE_TYPE_OVERWRITABLE: 59 __last_line_type__.value = LINE_TYPE_NONE 64 spaces = __last_overwritable_line_length__.value - len(string) 72 if __last_line_type__.value != LINE_TYPE_NONE: 77 __last_overwritable_line_length__.value = 0 78 __last_line_type__.value = LINE_TYPE_NONE 88 if (__last_line_type__.value != type) and \ 89 (__last_line_type__.value >= LINE_TYPE_OVERWRITABLE): 99 __last_overwritable_line_length__.value = len(string) 100 __last_line_type__.value [all...] |
/third_party/spirv-tools/tools/link/ |
H A D | linker.cpp | 96 if (flags::h.value() || flags::help.value()) { in main() 101 if (flags::version.value()) { in main() 117 if (!spvParseTargetEnv(flags::target_env.value().c_str(), &target_env)) { in main() 119 flags::target_env.value().c_str()); in main() 124 flags::o.value().empty() ? "out.spv" : flags::o.value(); in main() 128 options.SetAllowPartialLinkage(flags::allow_partial_linkage.value()); in main() 129 options.SetCreateLibrary(flags::create_library.value()); in main() 130 options.SetVerifyIds(flags::verify_ids.value()); in main() [all...] |
/drivers/peripheral/user_auth/test/unittest/attribute_test/ |
H A D | attribute_test.cpp | 121 constexpr uint32_t value = 6036; in HWTEST_F() local 122 ASSERT_EQ(SetAttributeUint32(nullptr, ATTR_LOCKOUT_DURATION, value), RESULT_BAD_PARAM); in HWTEST_F() 123 ASSERT_EQ(SetAttributeUint32(attribute, ATTR_LOCKOUT_DURATION, value), RESULT_SUCCESS); in HWTEST_F() 160 constexpr int32_t value = 6036; in HWTEST_F() local 161 ASSERT_EQ(SetAttributeInt32(nullptr, ATTR_RESULT_CODE, value), RESULT_BAD_PARAM); in HWTEST_F() 162 ASSERT_EQ(SetAttributeInt32(attribute, ATTR_RESULT_CODE, value), RESULT_SUCCESS); in HWTEST_F() 199 constexpr uint64_t value = 6036; in HWTEST_F() local 200 ASSERT_EQ(SetAttributeUint64(nullptr, ATTR_TEMPLATE_ID, value), RESULT_BAD_PARAM); in HWTEST_F() 201 ASSERT_EQ(SetAttributeUint64(attribute, ATTR_TEMPLATE_ID, value), RESULT_SUCCESS); in HWTEST_F() 227 Uint8Array value in HWTEST_F() local 241 Uint8Array value = {}; HWTEST_F() local 311 Uint8Array value = { array.data(), static_cast<uint32_t>(array.size()) }; HWTEST_F() local 334 Uint64Array value = { out.data(), size }; HWTEST_F() local 348 Uint64Array value = {}; HWTEST_F() local 417 Uint64Array value = { array.data(), static_cast<uint32_t>(array.size()) }; HWTEST_F() local 495 std::vector<uint8_t> value; HWTEST_F() local 511 Uint8Array value = { out.data(), static_cast<uint32_t>(out.size()) }; HWTEST_F() local [all...] |
/kernel/linux/linux-6.6/sound/isa/ad1816a/ |
H A D | ad1816a_lib.c | 39 unsigned char value) in snd_ad1816a_out() 42 outb(value, AD1816A_REG(reg)); in snd_ad1816a_out() 46 unsigned char mask, unsigned char value) in snd_ad1816a_out_mask() 49 (value & mask) | (snd_ad1816a_in(chip, reg) & ~mask)); in snd_ad1816a_out_mask() 60 unsigned short value) in snd_ad1816a_write() 63 snd_ad1816a_out(chip, AD1816A_INDIR_DATA_LOW, value & 0xff); in snd_ad1816a_write() 64 snd_ad1816a_out(chip, AD1816A_INDIR_DATA_HIGH, (value >> 8) & 0xff); in snd_ad1816a_write() 68 unsigned short mask, unsigned short value) in snd_ad1816a_write_mask() 71 (value & mask) | (snd_ad1816a_read(chip, reg) & ~mask)); in snd_ad1816a_write_mask() 688 ucontrol->value in snd_ad1816a_get_mux() 38 snd_ad1816a_out(struct snd_ad1816a *chip, unsigned char reg, unsigned char value) snd_ad1816a_out() argument 45 snd_ad1816a_out_mask(struct snd_ad1816a *chip, unsigned char reg, unsigned char mask, unsigned char value) snd_ad1816a_out_mask() argument 59 snd_ad1816a_write(struct snd_ad1816a *chip, unsigned char reg, unsigned short value) snd_ad1816a_write() argument 67 snd_ad1816a_write_mask(struct snd_ad1816a *chip, unsigned char reg, unsigned short mask, unsigned short value) snd_ad1816a_write_mask() argument [all...] |
/third_party/elfio/tests/ |
H A D | ELFIOTest1.cpp | 583 ELFIO::Elf64_Addr value; in TEST() local 596 EXPECT_EQ( true, symbols.get_symbol( "main", value, size, bind, type, in TEST() 598 EXPECT_EQ( 0x402560, value ); in TEST() 600 EXPECT_EQ( true, symbols.get_symbol( "frame_dummy", value, size, bind, type, in TEST() 602 EXPECT_EQ( 0x402550, value ); in TEST() 612 ELFIO::Elf64_Addr value = 0; in TEST() local 641 value = 1; in TEST() 642 symbols.add_symbol( str_writer, name.c_str(), value, size, bind, type, in TEST() 646 value = 2; in TEST() 647 symbols.add_symbol( str_writer, name.c_str(), value, siz in TEST() 724 ELFIO::Elf64_Addr value = 0; TEST() local [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-async-generator-gen.cc | 116 TNode<Object> receiver, TNode<Object> value, 134 TNode<Context> context, TNode<Object> value, 142 TNode<Object> value, JSAsyncGeneratorObject::ResumeMode resume_mode, in AsyncGeneratorEnqueue() 160 AllocateAsyncGeneratorRequest(resume_mode, value, promise); in AsyncGeneratorEnqueue() 212 TNode<Context> context, TNode<Object> value, in AsyncGeneratorAwaitResumeClosure() 243 CallStub(CodeFactory::ResumeGenerator(isolate()), context, value, in AsyncGeneratorAwaitResumeClosure() 254 auto value = Parameter<Object>(Descriptor::kValue); in AsyncGeneratorAwait() local 262 Await(context, async_generator_object, value, outer_promise, in AsyncGeneratorAwait() 277 Branch(IsUndefined(var_current.value()), &empty, &loop); in AddAsyncGeneratorRequestToQueue() 288 TNode<AsyncGeneratorRequest> current = CAST(var_current.value()); in AddAsyncGeneratorRequestToQueue() 140 AsyncGeneratorEnqueue( CodeStubArguments* args, TNode<Context> context, TNode<Object> receiver, TNode<Object> value, JSAsyncGeneratorObject::ResumeMode resume_mode, const char* method_name) AsyncGeneratorEnqueue() argument 211 AsyncGeneratorAwaitResumeClosure( TNode<Context> context, TNode<Object> value, JSAsyncGeneratorObject::ResumeMode resume_mode) AsyncGeneratorAwaitResumeClosure() argument 334 TNode<Object> value = args.GetOptionalArgumentValue(kValueArg); TF_BUILTIN() local 352 TNode<Object> value = args.GetOptionalArgumentValue(kValueArg); TF_BUILTIN() local 370 TNode<Object> value = args.GetOptionalArgumentValue(kValueArg); TF_BUILTIN() local 379 auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 386 auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 495 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 565 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 578 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 596 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 628 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 666 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 676 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local 694 const auto value = Parameter<Object>(Descriptor::kValue); TF_BUILTIN() local [all...] |
/third_party/openssl/test/ |
H A D | params_api_test.c | 49 unsigned char value[MAX_LEN]; member 157 le_copy(buf, raw_values[n].value, sizeof(in)); in test_param_int() 163 if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) in test_param_int() 169 if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) in test_param_int() 172 return test_param_type_extra(¶m, raw_values[n].value, sizeof(int)); in test_param_int() 184 le_copy(buf, raw_values[n].value, sizeof(in)); in test_param_long() 190 if (!TEST_mem_eq(cmp, len, raw_values[n].value, len)) in test_param_long() 196 if (!TEST_mem_eq(cmp, sizeof(in), raw_values[n].value, sizeof(in))) in test_param_long() 199 return test_param_type_extra(¶m, raw_values[n].value, sizeof(long int)); in test_param_long() 210 le_copy(buf, raw_values[n].value, sizeo in test_param_uint() [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
H A D | ViewableTaggedData.java | 54 // shades of blue hue 221.8 saturation 5% to 35% value 93.5 (yafla) 167 public void tagField(int position, int width, int value, String alt, String label) { in tagField() argument 168 markers.add(new Field(position, width, value, alt, label)); in tagField() 172 public void tagTarget(int position, int value, int targetPosition, String label) { in tagTarget() argument 174 markers.add(new ReferenceSource(reference, value, label)); in tagTarget() 256 int value; in tagRangeField() 260 value = data.readUShort(pos); in tagRangeField() 261 if (value == 0) { in tagRangeField() 268 value = data.readUShort(pos); in tagRangeField() 269 alt = String.format("#%04x", base + value); in tagRangeField() 506 drawLine(int position, int value, int width, String alt, String label) drawLine() argument 796 private final int value; global() field in ViewableTaggedData.Field 800 Field(int position, int width, int value, String alt, String label) Field() argument 821 private final int value; global() field in ViewableTaggedData.ReferenceSource 824 ReferenceSource(Reference ref, int value, String label) ReferenceSource() argument [all...] |
/device/board/hihope/dayu210/audio_drivers/accessory/es8323/src/ |
H A D | es8323_impl.c | 27 #define ES8323_I2C_REG_DATA_LEN (1) // reg value length is 8 bits 91 AUDIO_DRIVER_LOG_ERR("invalid rwFlag value: %d.", rwFlag); in Es8323I2cMsgFill() 107 msgBuf[1] = (uint8_t)regAttr->value; in Es8323I2cMsgFill() 109 msgBuf[1] = (regAttr->value >> ES8323_COMM_SHIFT_8BIT); // High 8 bits in Es8323I2cMsgFill() 110 msgBuf[ES8323_I2C_MSG_BUF_SIZE] = (uint8_t)(regAttr->value & ES8323_COMM_MASK_FF); // Low 8 bits in Es8323I2cMsgFill() 113 //AUDIO_DRIVER_LOG_DEBUG("msgs[0].buf=0x%x.", regAttr->value); in Es8323I2cMsgFill() 167 regAttr->value = msgs[1].buf[0]; in Es8323I2cReadWrite() 169 regAttr->value = (msgs[1].buf[0] << ES8323_COMM_SHIFT_8BIT) | msgs[1].buf[1]; // result value 16 bits in Es8323I2cReadWrite() 171 AUDIO_DRIVER_LOG_DEBUG("[read]: regAttr->regValue=0x%x.\n", regAttr->value); in Es8323I2cReadWrite() 214 uint32_t newValue, newMask, value; Es8323RegBitsUpdate() local 447 Es8323DeviceRegWrite(const struct CodecDevice *codec, uint32_t reg, uint32_t value) Es8323DeviceRegWrite() argument [all...] |
/kernel/linux/linux-6.6/arch/powerpc/perf/ |
H A D | isa207-common.c | 98 * requires that we set a non-zero value. in mmcra_sdar_mode() 111 static int p10_thresh_cmp_val(u64 value) in p10_thresh_cmp_val() argument 114 u64 result = value; in p10_thresh_cmp_val() 116 if (!value) in p10_thresh_cmp_val() 117 return value; in p10_thresh_cmp_val() 120 * Incase of P10, thresh_cmp value is not part of raw event code in p10_thresh_cmp_val() 129 if (value > 261120) in p10_thresh_cmp_val() 130 value = 261120; in p10_thresh_cmp_val() 131 while ((64 - __builtin_clzl(value)) > 8) { in p10_thresh_cmp_val() 133 value >> in p10_thresh_cmp_val() 149 thresh_cmp_val(u64 value) thresh_cmp_val() argument 404 unsigned long mask, value; isa207_get_constraint() local [all...] |
/kernel/linux/linux-5.10/drivers/platform/x86/ |
H A D | lg-laptop.c | 95 args[0].integer.value = arg0; in ggov() 118 res = r->integer.value; in ggov() 133 args[0].integer.value = method; in lg_wmab() 135 args[1].integer.value = arg1; in lg_wmab() 137 args[2].integer.value = arg2; in lg_wmab() 170 args[0].integer.value = 0; /* ignored */ in lg_wmbb() 172 args[1].integer.value = 1; /* Must be 1 or 2. Does not matter which */ in lg_wmbb() 195 static void wmi_notify(u32 value, void *context) in wmi_notify() argument 203 status = wmi_get_event_data(value, &response); in wmi_notify() 214 int eventcode = obj->integer.value; in wmi_notify() 276 bool value; fan_mode_store() local 329 bool value; usb_charge_store() local 371 bool value; reader_mode_store() local 413 bool value; fn_lock_store() local 454 unsigned long value; battery_care_limit_store() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/shmobile/ |
H A D | shmob_drm_crtc.c | 67 u32 value; in shmob_drm_crtc_setup_geometry() local 69 value = sdev->ldmt1r in shmob_drm_crtc_setup_geometry() 77 lcdc_write(sdev, LDMT1R, value); in shmob_drm_crtc_setup_geometry() 82 value = (idata->sys.cs_setup << LDMT2R_CSUP_SHIFT) in shmob_drm_crtc_setup_geometry() 88 lcdc_write(sdev, LDMT2R, value); in shmob_drm_crtc_setup_geometry() 90 value = (idata->sys.read_latch << LDMT3R_RDLC_SHIFT) in shmob_drm_crtc_setup_geometry() 94 lcdc_write(sdev, LDMT3R, value); in shmob_drm_crtc_setup_geometry() 97 value = ((mode->hdisplay / 8) << 16) /* HDCN */ in shmob_drm_crtc_setup_geometry() 99 lcdc_write(sdev, LDHCNR, value); in shmob_drm_crtc_setup_geometry() 101 value in shmob_drm_crtc_setup_geometry() 122 u32 value; shmob_drm_crtc_start_stop() local 160 u32 value; shmob_drm_crtc_start() local [all...] |
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/ |
H A D | hwmon.c | 87 * kernel since 5.6 (enum values were incremented by 1 by adding a new enable value). in adjust_hwmon_flags() 569 int sensor_index, u32 attr, long *value) in hl_get_temperature() 588 *value = (long) result; in hl_get_temperature() 594 *value = 0; in hl_get_temperature() 601 int sensor_index, u32 attr, long value) in hl_set_temperature() 612 pkt.value = __cpu_to_le64(value); in hl_set_temperature() 626 int sensor_index, u32 attr, long *value) in hl_get_voltage() 642 *value = (long) result; in hl_get_voltage() 648 *value in hl_get_voltage() 568 hl_get_temperature(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_temperature() argument 600 hl_set_temperature(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_temperature() argument 625 hl_get_voltage(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_voltage() argument 654 hl_get_current(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_current() argument 683 hl_get_fan_speed(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_fan_speed() argument 712 hl_get_pwm_info(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_pwm_info() argument 741 hl_set_pwm_info(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_pwm_info() argument 764 hl_set_voltage(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_voltage() argument 789 hl_set_current(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_current() argument 814 hl_set_power(struct hl_device *hdev, int sensor_index, u32 attr, long value) hl_set_power() argument 845 hl_get_power(struct hl_device *hdev, int sensor_index, u32 attr, long *value) hl_get_power() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/renesas/shmobile/ |
H A D | shmob_drm_crtc.c | 70 u32 value; in shmob_drm_crtc_setup_geometry() local 72 value = sdev->ldmt1r in shmob_drm_crtc_setup_geometry() 80 lcdc_write(sdev, LDMT1R, value); in shmob_drm_crtc_setup_geometry() 85 value = (idata->sys.cs_setup << LDMT2R_CSUP_SHIFT) in shmob_drm_crtc_setup_geometry() 91 lcdc_write(sdev, LDMT2R, value); in shmob_drm_crtc_setup_geometry() 93 value = (idata->sys.read_latch << LDMT3R_RDLC_SHIFT) in shmob_drm_crtc_setup_geometry() 97 lcdc_write(sdev, LDMT3R, value); in shmob_drm_crtc_setup_geometry() 100 value = ((mode->hdisplay / 8) << 16) /* HDCN */ in shmob_drm_crtc_setup_geometry() 102 lcdc_write(sdev, LDHCNR, value); in shmob_drm_crtc_setup_geometry() 104 value in shmob_drm_crtc_setup_geometry() 125 u32 value; shmob_drm_crtc_start_stop() local 163 u32 value; shmob_drm_crtc_start() local [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | TrieMap.java | 29 // can you store the same string twice, eg add(bytes1, value), add(bytes1, value)? What happens? If an error, 70 static public <K extends CharSequence, V> Builder<V> with(Style style, K key, V value) { in with() argument 71 return with(style, Option.SMALL, key, value); in with() 74 static public <K extends CharSequence, V> Builder<V> with(Style style, Option option, K key, V value) { in with() argument 78 return result.add(key, value); in with() 81 public abstract Builder<V> add(CharSequence key, V value); in add() argument 206 return intToValue[bytesEntry.value]; in getValue() 209 public V setValue(V value) { in setValue() argument 216 private V value field in TrieMap.BytesTrieMap.BytesMatcher 281 add(CharSequence key, V value) add() argument 393 setValue(V value) setValue() argument 399 private V value = null; global() field in TrieMap.CharsTrieMap.CharsMatcher 457 add(CharSequence key, V value) add() argument [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | TrieMap.java | 28 // can you store the same string twice, eg add(bytes1, value), add(bytes1, value)? What happens? If an error, 69 static public <K extends CharSequence, V> Builder<V> with(Style style, K key, V value) { in with() argument 70 return with(style, Option.SMALL, key, value); in with() 73 static public <K extends CharSequence, V> Builder<V> with(Style style, Option option, K key, V value) { in with() argument 77 return result.add(key, value); in with() 80 public abstract Builder<V> add(CharSequence key, V value); in add() argument 205 return intToValue[bytesEntry.value]; in getValue() 208 public V setValue(V value) { in setValue() argument 215 private V value field in TrieMap.BytesTrieMap.BytesMatcher 280 add(CharSequence key, V value) add() argument 392 setValue(V value) setValue() argument 398 private V value = null; global() field in TrieMap.CharsTrieMap.CharsMatcher 456 add(CharSequence key, V value) add() argument [all...] |
/third_party/protobuf/php/src/GPBMetadata/Google/Protobuf/Internal/ |
H A D | Descriptor.php | 79 ->value("TYPE_DOUBLE", 1) 80 ->value("TYPE_FLOAT", 2) 81 ->value("TYPE_INT64", 3) 82 ->value("TYPE_UINT64", 4) 83 ->value("TYPE_INT32", 5) 84 ->value("TYPE_FIXED64", 6) 85 ->value("TYPE_FIXED32", 7) 86 ->value("TYPE_BOOL", 8) 87 ->value("TYPE_STRING", 9) 88 ->value("TYPE_GROU [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | container_memory.h | 127 std::tuple_size<typename std::decay<T>::type>::value>())) { in make_index_sequence() 131 std::tuple_size<typename std::decay<T>::type>::value>()); in make_index_sequence() 152 std::tuple_size<typename std::decay<Tuple>::type>::value>()); in ConstructFromTuple() 156 // constructed value. 163 std::tuple_size<typename std::decay<Tuple>::type>::value>(), in WithConstructed() 293 static constexpr bool value = std::is_standard_layout<K>() && member 302 // The internal storage type for key-value containers like flat_hash_map. 316 // If kMutableKeys is false, only the value member can be accessed. 318 // If kMutableKeys is true, key can be accessed through all slots while value 334 value_type value; [all...] |