/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/modifier/ |
H A D | rs_render_property.cpp | 174 float value; in Unmarshalling() local 175 if (!RSMarshallingHelper::Unmarshalling(parcel, value)) { in Unmarshalling() 178 val.reset(new RSRenderAnimatableProperty<float>(value, id, type, unit)); in Unmarshalling() 182 Color value; in Unmarshalling() local 183 if (!RSMarshallingHelper::Unmarshalling(parcel, value)) { in Unmarshalling() 186 val.reset(new RSRenderAnimatableProperty<Color>(value, id, type, unit)); in Unmarshalling() 190 Matrix3f value; in Unmarshalling() local 191 if (!RSMarshallingHelper::Unmarshalling(parcel, value)) { in Unmarshalling() 194 val.reset(new RSRenderAnimatableProperty<Matrix3f>(value, id, type, unit)); in Unmarshalling() 198 Quaternion value; in Unmarshalling() local 206 std::shared_ptr<RSFilter> value; Unmarshalling() local 214 Vector2f value; Unmarshalling() local 222 Vector4f value; Unmarshalling() local 230 Vector4<Color> value; Unmarshalling() local 238 RRect value; Unmarshalling() local 296 operator *=(const std::shared_ptr<RSRenderPropertyBase>& value, const float scale) operator *=() argument 325 operator *( const std::shared_ptr<const RSRenderPropertyBase>& value, const float scale) operator *() argument 660 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 672 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 684 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 696 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 708 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 720 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 733 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 762 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument 780 IsNearEqual( const std::shared_ptr<RSRenderPropertyBase>& value, float zeroThreshold) const IsNearEqual() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dce120/ |
H A D | dce120_timing_generator.c | 90 uint32_t value = dm_read_reg_soc15( in dce120_timing_generator_is_in_vertical_blank() local 95 field = get_reg_field_value(value, CRTC0_CRTC_STATUS, CRTC_V_BLANK); in dce120_timing_generator_is_in_vertical_blank() 142 * This is needed for DRR, and also suggested to be default value by Syed.*/ in dce120_timing_generator_enable_crtc() 173 uint32_t value = dm_read_reg_soc15( in dce120_timing_generator_get_vblank_counter() local 178 value, CRTC0_CRTC_STATUS_FRAME_COUNT, CRTC_FRAME_COUNT); in dce120_timing_generator_get_vblank_counter() 189 uint32_t value = dm_read_reg_soc15( in dce120_timing_generator_get_crtc_position() local 194 position->horizontal_count = get_reg_field_value(value, in dce120_timing_generator_get_crtc_position() 197 position->vertical_count = get_reg_field_value(value, in dce120_timing_generator_get_crtc_position() 200 value = dm_read_reg_soc15( in dce120_timing_generator_get_crtc_position() 205 position->nominal_vcount = get_reg_field_value(value, in dce120_timing_generator_get_crtc_position() 374 uint32_t value = dm_read_reg_soc15( dce120_timing_generator_did_triggered_reset_occur() local 390 uint32_t value = 0; dce120_timing_generator_disable_vga() local 506 uint32_t value = 0; dce120_timing_generator_set_overscan_color_black() local 630 uint32_t value = dm_read_reg_soc15( dce120_timing_generator_enable_advanced_request() local 663 uint32_t value = 0; dce120_tg_program_blank_color() local 712 uint32_t value = dm_read_reg_soc15( dce120_tg_is_blanked() local 802 uint32_t value; dce120_timing_generator_set_test_pattern() local 1083 uint32_t value, field; dce120_is_tg_enabled() local 1143 uint32_t value, field; dce120_get_crc() local [all...] |
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/ |
H A D | index.js | 5 Object.defineProperty(exports, "__esModule", { value: true }); 23 const toEnvVal = (value, delim = '\n') => { 24 const str = typeof value === 'string' 25 ? value 26 : typeof value === 'boolean' 27 ? value 30 : typeof value === 'number' 31 ? String(value) 32 : Array.isArray(value) 33 ? value [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract_model_ng.h | 201 void SetPadding(const CalcDimension& value) override 203 if (value.Unit() == DimensionUnit::CALC) { 206 NG::CalcLength(value.IsNonNegative() ? value.CalcValue() : CalcDimension().CalcValue())); 209 ViewAbstract::SetPadding(NG::CalcLength(value.IsNonNegative() ? value : CalcDimension())); 230 void SetSafeAreaPadding(const CalcDimension& value) override 232 if (value.Unit() == DimensionUnit::CALC) { 233 ViewAbstract::SetSafeAreaPadding(NG::CalcLength(value.CalcValue())); 236 ViewAbstract::SetSafeAreaPadding(NG::CalcLength(value 1470 SetKeyboardShortcut(FrameNode* frameNode, const std::string& value, const std::vector<ModifierKey>& keys, std::function<void()>&& onKeyboardShortcutAction) SetKeyboardShortcut() argument [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_maps.c | 39 long long key, next_key, first_key, value; in test_hashmap() local 42 fd = bpf_map_create(BPF_MAP_TYPE_HASH, NULL, sizeof(key), sizeof(value), 2, &map_opts); in test_hashmap() 49 value = 1234; in test_hashmap() 51 assert(bpf_map_update_elem(fd, &key, &value, BPF_ANY) == 0); in test_hashmap() 53 value = 0; in test_hashmap() 55 assert(bpf_map_update_elem(fd, &key, &value, BPF_NOEXIST) < 0 && in test_hashmap() 60 assert(bpf_map_update_elem(fd, &key, &value, -1) < 0 && in test_hashmap() 64 assert(bpf_map_lookup_elem(fd, &key, &value) == 0 && value == 1234); in test_hashmap() 67 value in test_hashmap() 271 long long key, value[VALUE_SIZE] = {}; helper_fill_hashmap() local 293 long long key, value[VALUE_SIZE], next_key; test_hashmap_walk() local 364 long long value; test_arraymap() local 514 __u32 key, value; test_devmap() local 528 __u32 key, value; test_devmap_hash() local 670 __u32 key, value; test_sockmap() local 1316 int fd, i, value; test_map_large() local 1403 map_update_retriable(int map_fd, const void *key, const void *value, int flags, int attempts) map_update_retriable() argument 1444 int i, key, value, err; test_update_delete() local 1471 int i, fd, key = 0, value = 0, j = 0; test_map_parallel() local 1529 int fd, key = 0, value = 0; test_map_rdonly() local 1558 int fd, key = 0, value = 0; test_map_wronly_hash() local 1586 int fd, value = 0; test_map_wronly_stack_or_queue() local 1636 void *value; prepare_reuseport_grp() local [all...] |
/third_party/python/Lib/ |
H A D | ast.py | 73 if not isinstance(node, Constant) or type(node.value) not in (int, float, complex): 75 return node.value 86 return node.value 140 value = getattr(node, name) 144 if value is None and getattr(cls, name, ...) is None: 147 value, simple = _format(value, level) 150 args.append('%s=%s' % (name, value)) 152 args.append(value) 156 value [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/vcap/ |
H A D | vcap_api.c | 97 static void vcap_set_bit(u32 *stream, struct vcap_stream_iter *itr, bool value) in vcap_set_bit() argument 102 if (value) in vcap_set_bit() 111 * before continuing with the value bit in vcap_encode_bit() 118 vcap_set_bit(stream, itr, (itr->tg->value >> tg_bitpos) & 0x1); in vcap_encode_bit() 126 int width, const u8 *value) in vcap_encode_field() 130 /* Loop over the field value bits and add the value bits one by one to in vcap_encode_field() 136 /* Encode one field value bit */ in vcap_encode_field() 137 vcap_encode_bit(stream, itr, (value[idx / 8] >> bidx) & 0x1); in vcap_encode_field() 166 (iter.tg->value >> id in vcap_encode_typegroups() 125 vcap_encode_field(u32 *stream, struct vcap_stream_iter *itr, int width, const u8 *value) vcap_encode_field() argument 174 vcap_bitarray_zero(int width, u8 *value) vcap_bitarray_zero() argument 197 vcap_decode_field(u32 *stream, struct vcap_stream_iter *itr, int width, u8 *value) vcap_decode_field() argument 230 u32 value = 0; vcap_verify_keystream_keyset() local 281 u32 value = 0; vcap_verify_typegroups() local 454 const u8 *value, *mask; vcap_encode_keyfield() local 748 const u8 *value; vcap_encode_actionfield() local 1086 vcap_copy_action_bit_field(struct vcap_u1_action *field, u8 *value) vcap_copy_action_bit_field() argument 1098 vcap_copy_to_client_actionfield(struct vcap_rule_internal *ri, struct vcap_client_actionfield *field, u8 *value, u16 width) vcap_copy_to_client_actionfield() argument 1183 vcap_copy_key_bit_field(struct vcap_u1_key *field, u8 *value, u8 *mask) vcap_copy_key_bit_field() argument 1200 vcap_copy_to_client_keyfield(struct vcap_rule_internal *ri, struct vcap_client_keyfield *field, u8 *value, u8 *mask, u16 width) vcap_copy_to_client_keyfield() argument 1305 vcap_rule_alloc_keyfield(struct vcap_rule_internal *ri, const struct vcap_field *keyfield, enum vcap_key_field key, u8 *value, u8 *mask) vcap_rule_alloc_keyfield() argument 1414 vcap_rule_alloc_actionfield(struct vcap_rule_internal *ri, const struct vcap_field *actionfield, enum vcap_action_field action, u8 *value) vcap_rule_alloc_actionfield() argument 1442 u8 value[16]; vcap_decode_actionset() local 1488 u8 value[16]; vcap_decode_keyset() local 2732 vcap_rule_add_key_u32(struct vcap_rule *rule, enum vcap_key_field key, u32 value, u32 mask) vcap_rule_add_key_u32() argument 2776 vcap_rule_get_key_u32(struct vcap_rule *rule, enum vcap_key_field key, u32 *value, u32 *mask) vcap_rule_get_key_u32() argument 2899 vcap_rule_add_action_u32(struct vcap_rule *rule, enum vcap_action_field action, u32 value) vcap_rule_add_action_u32() argument 3335 u32 value, mask; vcap_rule_get_keysets() local 3428 vcap_rule_mod_key_u32(struct vcap_rule *rule, enum vcap_key_field key, u32 value, u32 mask) vcap_rule_mod_key_u32() argument 3473 vcap_rule_mod_action_u32(struct vcap_rule *rule, enum vcap_action_field action, u32 value) vcap_rule_mod_action_u32() argument [all...] |
/kernel/linux/linux-5.10/drivers/cpufreq/ |
H A D | speedstep-ich.c | 97 u8 value; in speedstep_set_state() local 107 value = inb(pmbase + 0x50); in speedstep_set_state() 109 pr_debug("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value); in speedstep_set_state() 112 value &= 0xFE; in speedstep_set_state() 113 value |= state; in speedstep_set_state() 115 pr_debug("writing 0x%x to pmbase 0x%x + 0x50\n", value, pmbase); in speedstep_set_state() 123 outb(value, (pmbase + 0x50)); in speedstep_set_state() 130 value = inb(pmbase + 0x50); in speedstep_set_state() 135 pr_debug("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value); in speedstep_set_state() 137 if (state == (value in speedstep_set_state() 160 u16 value = 0; speedstep_activate() local [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/mtk-jpeg/ |
H A D | mtk_jpeg_enc_hw.c | 48 u32 value; in mtk_jpeg_enc_start() local 50 value = readl(base + JPEG_ENC_CTRL); in mtk_jpeg_enc_start() 51 value |= JPEG_ENC_CTRL_INT_EN_BIT | JPEG_ENC_CTRL_ENABLE_BIT; in mtk_jpeg_enc_start() 52 writel(value, base + JPEG_ENC_CTRL); in mtk_jpeg_enc_start() 92 u32 value; in mtk_jpeg_set_enc_params() local 102 value = width << 16 | height; in mtk_jpeg_set_enc_params() 103 writel(value, base + JPEG_ENC_IMG_SIZE); in mtk_jpeg_set_enc_params() 140 value = readl(base + JPEG_ENC_CTRL); in mtk_jpeg_set_enc_params() 141 value &= ~JPEG_ENC_CTRL_YUV_FORMAT_MASK; in mtk_jpeg_set_enc_params() 142 value | in mtk_jpeg_set_enc_params() [all...] |
/kernel/linux/linux-5.10/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Core.pm | 33 my ($value) = @_; 40 if (!$value && !$idx) { 45 if ($idx && ($value & $idx) == $idx) { 51 $value &= ~$idx; 63 my ($event_name, $field_name, $value) = @_; 70 if (!$value && !$idx) { 74 if ($idx && ($value & $idx) == $idx) { 80 $value &= ~$idx; 97 my ($event_name, $field_name, $value, $field_str) = @_; 99 $flag_fields{$event_name}{$field_name}{"values"}{$value} [all...] |
/kernel/linux/linux-6.6/drivers/cpufreq/ |
H A D | speedstep-ich.c | 97 u8 value; in speedstep_set_state() local 107 value = inb(pmbase + 0x50); in speedstep_set_state() 109 pr_debug("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value); in speedstep_set_state() 112 value &= 0xFE; in speedstep_set_state() 113 value |= state; in speedstep_set_state() 115 pr_debug("writing 0x%x to pmbase 0x%x + 0x50\n", value, pmbase); in speedstep_set_state() 123 outb(value, (pmbase + 0x50)); in speedstep_set_state() 130 value = inb(pmbase + 0x50); in speedstep_set_state() 135 pr_debug("read at pmbase 0x%x + 0x50 returned 0x%x\n", pmbase, value); in speedstep_set_state() 137 if (state == (value in speedstep_set_state() 160 u16 value = 0; speedstep_activate() local [all...] |
/kernel/linux/linux-6.6/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | Core.pm | 33 my ($value) = @_; 40 if (!$value && !$idx) { 45 if ($idx && ($value & $idx) == $idx) { 51 $value &= ~$idx; 63 my ($event_name, $field_name, $value) = @_; 70 if (!$value && !$idx) { 74 if ($idx && ($value & $idx) == $idx) { 80 $value &= ~$idx; 97 my ($event_name, $field_name, $value, $field_str) = @_; 99 $flag_fields{$event_name}{$field_name}{"values"}{$value} [all...] |
/kernel/linux/linux-6.6/tools/lib/bpf/ |
H A D | hashmap.h | 51 * - these auxiliary macros cast the key and value parameters as 66 long value; member 96 * - HASHMAP_ADD - only add key/value if key doesn't exist yet; 97 * - HASHMAP_SET - add key/value pair if key doesn't exist yet; otherwise, 98 * update value; 99 * - HASHMAP_UPDATE - update value, if key already exists; otherwise, do 101 * - HASHMAP_APPEND - always add key/value pair, even if key already exists. 105 * used, it will return last inserted key/value entry (first in a bucket 123 * hashmap__insert() adds key/value entry w/ various semantics, depending on 124 * provided strategy value [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | hashmap.h | 51 * - these auxiliary macros cast the key and value parameters as 66 long value; member 96 * - HASHMAP_ADD - only add key/value if key doesn't exist yet; 97 * - HASHMAP_SET - add key/value pair if key doesn't exist yet; otherwise, 98 * update value; 99 * - HASHMAP_UPDATE - update value, if key already exists; otherwise, do 101 * - HASHMAP_APPEND - always add key/value pair, even if key already exists. 105 * used, it will return last inserted key/value entry (first in a bucket 123 * hashmap__insert() adds key/value entry w/ various semantics, depending on 124 * provided strategy value [all...] |
/third_party/libbpf/src/ |
H A D | hashmap.h | 51 * - these auxiliary macros cast the key and value parameters as 66 long value; member 96 * - HASHMAP_ADD - only add key/value if key doesn't exist yet; 97 * - HASHMAP_SET - add key/value pair if key doesn't exist yet; otherwise, 98 * update value; 99 * - HASHMAP_UPDATE - update value, if key already exists; otherwise, do 101 * - HASHMAP_APPEND - always add key/value pair, even if key already exists. 105 * used, it will return last inserted key/value entry (first in a bucket 123 * hashmap__insert() adds key/value entry w/ various semantics, depending on 124 * provided strategy value [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | option-utils.cc | 56 // 1. Let value be ? Get(options, property). in GetStringOption() 57 Handle<Object> value; in GetStringOption() local 59 isolate, value, in GetStringOption() 63 if (value->IsUndefined(isolate)) { in GetStringOption() 67 // 2. c. Let value be ? ToString(value). in GetStringOption() 70 isolate, value_str, Object::ToString(isolate, value), Nothing<bool>()); in GetStringOption() 75 // 2. d. i. If values does not contain an element equal to value, in GetStringOption() 79 // 2. e. return value in GetStringOption() 89 NewRangeError(MessageTemplate::kValueOutOfRange, value, method_st in GetStringOption() 108 Handle<Object> value; GetBoolOption() local 127 DefaultNumberOption(Isolate* isolate, Handle<Object> value, int min, int max, int fallback, Handle<String> property) DefaultNumberOption() argument 162 Handle<Object> value; GetNumberOption() local [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
H A D | ConstantFoldingTest.h | 44 ConstantFinder(const T &value) in ConstantFinder() argument 47 mConstantVector.push_back(value); in ConstantFinder() 73 bool isEqual(const TConstantUnion &node, const float &value) const in isEqual() 79 if (value == std::numeric_limits<float>::infinity()) in isEqual() 83 else if (value == -std::numeric_limits<float>::infinity()) in isEqual() 87 else if (gl::isNaN(value)) in isEqual() 92 return mFaultTolerance >= fabsf(node.getFConst() - value); in isEqual() 95 bool isEqual(const TConstantUnion &node, const int &value) const in isEqual() 102 // abs() returns 0 at least on some platforms when the minimum int value is passed in (it in isEqual() 104 return mFaultTolerance >= abs(node.getIConst() - value) in isEqual() [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
H A D | lock_test.cc | 165 MutexLockTestThread(Lock* lock, int* value) : lock_(lock), value_(value) {} in MutexLockTestThread() argument 168 static void DoStuff(Lock* lock, int* value) { in DoStuff() argument 171 int v = *value; in DoStuff() 173 *value = v + 1; in DoStuff() 191 int value = 0; in MutexTwoThreads() local 193 MutexLockTestThread thread(&lock, &value); in MutexTwoThreads() 198 MutexLockTestThread::DoStuff(&lock, &value); in MutexTwoThreads() 202 EXPECT_EQ(2 * 40, value); in MutexTwoThreads() 208 int value in MutexFourThreads() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | asyncImportedPromise_es5.js | 23 throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
29 Object.defineProperty(exports, "__esModule", { value: true });
42 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
44 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
45 function rejected(value) { try { step(generator["throw"](value)); } catc [all...] |
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_enum_lite.cc | 60 const EnumValueDescriptor* value = descriptor_->value(i); in EnumLiteGenerator() local 62 descriptor_->FindValueByNumber(value->number()); in EnumLiteGenerator() 64 if (value == canonical_value) { in EnumLiteGenerator() 65 canonical_values_.push_back(value); in EnumLiteGenerator() 68 alias.value = value; in EnumLiteGenerator() 113 vars["name"] = aliases_[i].value->name(); in Generate() 115 WriteEnumValueDocComment(printer, aliases_[i].value); in Generate() 118 printer->Annotate("name", aliases_[i].value); in Generate() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | substitute.cc | 98 Arg::Arg(const void* value) { in Arg() argument 99 static_assert(sizeof(scratch_) >= sizeof(value) * 2 + 2, in Arg() 101 if (value == nullptr) { in Arg() 105 uintptr_t num = reinterpret_cast<uintptr_t>(value); in Arg() 120 uint64_t value = hex.value; in Arg() local 122 *--writer = absl::numbers_internal::kHexChar[value & 0xF]; in Arg() 123 value >>= 4; in Arg() 124 } while (value != 0); in Arg() 143 uint64_t value in Arg() local [all...] |
/third_party/rust/crates/syn/tests/debug/ |
H A D | mod.rs | 19 value: T, 23 pub fn Lite<T: ?Sized>(value: &T) -> &Lite<T> { in Lite() 24 Lite::ref_cast(value) in Lite() 31 &self.value in deref() 37 write!(formatter, "{}", self.value) in fmt() 43 write!(formatter, "{}", self.value) in fmt() 49 write!(formatter, "{}", self.value) in fmt() 55 write!(formatter, "{:?}", self.value) in fmt() 61 write!(formatter, "{:?}", self.value.to_string()) in fmt() 67 write!(formatter, "{}", self.value) in fmt() [all...] |
/foundation/ability/dmsfwk/services/dtbschedmgr/src/distributedWant/ |
H A D | distributed_want_params.cpp | 44 const char* VALUE_PROPERTY = "value"; 450 sptr<IInterface> DistributedWantParams::GetInterfaceByType(int typeId, const std::string& value) in GetInterfaceByType() argument 453 return AAFwk::Boolean::Parse(value); in GetInterfaceByType() 455 return AAFwk::Byte::Parse(value); in GetInterfaceByType() 457 return AAFwk::Char::Parse(value); in GetInterfaceByType() 459 return AAFwk::Short::Parse(value); in GetInterfaceByType() 461 return AAFwk::Integer::Parse(value); in GetInterfaceByType() 463 return AAFwk::Long::Parse(value); in GetInterfaceByType() 465 return AAFwk::Float::Parse(value); in GetInterfaceByType() 467 return AAFwk::Double::Parse(value); in GetInterfaceByType() 488 SetParam(const std::string& key, IInterface* value) SetParam() argument 541 std::string value = AAFwk::String::Unbox(AAFwk::IString::Query(o)); WriteToParcelString() local 550 bool value = AAFwk::Boolean::Unbox(AAFwk::IBoolean::Query(o)); WriteToParcelBool() local 559 DistributedWantParams value = DistributedWantParamWrapper::Unbox(IDistributedWantParams::Query(o)); WriteToParcelWantParams() local 627 AAFwk::byte value = AAFwk::Byte::Unbox(AAFwk::IByte::Query(o)); WriteToParcelByte() local 636 AAFwk::zchar value = AAFwk::Char::Unbox(AAFwk::IChar::Query(o)); WriteToParcelChar() local 645 short value = AAFwk::Short::Unbox(AAFwk::IShort::Query(o)); WriteToParcelShort() local 654 int value = AAFwk::Integer::Unbox(AAFwk::IInteger::Query(o)); WriteToParcelInt() local 663 long value = AAFwk::Long::Unbox(AAFwk::ILong::Query(o)); WriteToParcelLong() local 672 float value = AAFwk::Float::Unbox(AAFwk::IFloat::Query(o)); WriteToParcelFloat() local 681 double value = AAFwk::Double::Unbox(AAFwk::IDouble::Query(o)); WriteToParcelDouble() local 775 SetArray(const AAFwk::InterfaceID& id, const std::vector<dataType>& value, sptr<AAFwk::IArray>& ao) SetArray() argument 994 std::vector<std::u16string> value; ReadFromParcelArrayString() local 1015 std::vector<int32_t> value; ReadFromParcelArrayBool() local 1030 std::vector<int8_t> value; ReadFromParcelArrayByte() local 1039 std::vector<int32_t> value; ReadFromParcelArrayChar() local 1048 std::vector<short> value; ReadFromParcelArrayShort() local 1057 std::vector<int> value; ReadFromParcelArrayInt() local 1066 std::vector<int64_t> value; ReadFromParcelArrayLong() local 1084 std::vector<float> value; ReadFromParcelArrayFloat() local 1093 std::vector<double> value; ReadFromParcelArrayDouble() local 1131 std::u16string value = parcel.ReadString16(); ReadFromParcelString() local 1142 int8_t value; ReadFromParcelBool() local 1156 int8_t value; ReadFromParcelInt8() local 1170 int32_t value; ReadFromParcelChar() local 1184 short value; ReadFromParcelShort() local 1198 int value; ReadFromParcelInt() local 1220 std::u16string value = parcel.ReadString16(); ReadFromParcelWantParamWrapper() local 1260 int64_t value; ReadFromParcelLong() local 1279 float value; ReadFromParcelFloat() local 1293 double value; ReadFromParcelDouble() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/loading_progress/ |
H A D | loading_progress_model_ng.cpp | 36 void LoadingProgressModelNG::SetColor(const Color& value) in SetColor() argument 38 ACE_UPDATE_PAINT_PROPERTY(LoadingProgressPaintProperty, Color, value); in SetColor() 39 ACE_UPDATE_RENDER_CONTEXT(ForegroundColor, value); in SetColor() 51 Color value; in GetColor() local 52 ACE_GET_NODE_PAINT_PROPERTY_WITH_DEFAULT_VALUE(LoadingProgressPaintProperty, Color, value, frameNode, value); in GetColor() 53 return value.GetValue(); in GetColor() 56 void LoadingProgressModelNG::SetColor(FrameNode* frameNode, const Color& value) in SetColor() argument 58 ACE_UPDATE_NODE_PAINT_PROPERTY(LoadingProgressPaintProperty, Color, value, frameNode); in SetColor() 59 ACE_UPDATE_NODE_RENDER_CONTEXT(ForegroundColor, value, frameNod in SetColor() 77 SetForegroundColor(FrameNode* frameNode, const Color& value) SetForegroundColor() argument [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_collection_ffi.h | 26 const char *value; member 32 std::string value; member 40 return NavigationItemFFI {.value = value.c_str(), .icon = icon.c_str(), .builder = builderFFI}; in ToFFI() 65 CJ_EXPORT void FFICJCommonVectorStringSetElement(VectorStringHandle vec, int64_t index, const char* value); 68 CJ_EXPORT void FFICJCommonVectorInt32SetElement(VectorInt32Handle vec, int64_t index, int32_t value); 71 CJ_EXPORT void FFICJCommonVectorInt64SetElement(VectorInt64Handle vec, int64_t index, int64_t value); 74 CJ_EXPORT void FFICJCommonVectorUInt8SetElement(VectorUInt8Handle vec, int64_t index, uint8_t value); 77 CJ_EXPORT void FFICJCommonVectorUInt32SetElement(VectorUInt32Handle vec, int64_t index, uint32_t value); 80 CJ_EXPORT void FFICJCommonVectorFloat32SetElement(VectorFloat32Handle vec, int64_t index, float value); [all...] |