Home
last modified time | relevance | path

Searched refs:value_ (Results 301 - 325 of 715) sorted by relevance

1...<<11121314151617181920>>...29

/test/xts/hats/distributedhardware/distributedcameratest/
H A Ddcameraprovidercase.cpp98 result.value_ = "SettingValue"; in SetUpTestCase()
181 result1.value_ = "SettingValue"; in HWTEST_F()
189 result2.value_ = "SettingValue"; in HWTEST_F()
197 result3.value_ = "SettingValue"; in HWTEST_F()
205 result4.value_ = "SettingValue"; in HWTEST_F()
213 result5.value_ = "SettingValue"; in HWTEST_F()
221 result6.value_ = "SettingValue"; in HWTEST_F()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler.h64 : characters_(0), mask_(0), value_(0), cannot_match_(false) {} in QuickCheckDetails()
66 : characters_(characters), mask_(0), value_(0), cannot_match_(false) {} in QuickCheckDetails()
89 uint32_t value() { return value_; } in value()
98 uint32_t value_; member in v8::internal::QuickCheckDetails
270 value_(value) {} in DeferredSetRegisterForLoop()
271 int value() { return value_; } in value()
274 int value_; member in v8::internal::Trace::DeferredSetRegisterForLoop
/third_party/skia/third_party/externals/libwebp/src/utils/
H A Dbit_writer_utils.c57 const int32_t bits = bw->value_ >> s; in Flush()
59 bw->value_ -= bits << s; in Flush()
111 bw->value_ += split + 1; in VP8PutBit()
119 bw->value_ <<= shift; in VP8PutBit()
129 bw->value_ += split + 1; in VP8PutBitUniform()
136 bw->value_ <<= 1; in VP8PutBitUniform()
164 bw->value_ = 0; in VP8BitWriterInit()
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/
H A Daudio_policy_parser.cpp188 audioModuleInfo.fileName = config.value_; in GetCommontAudioModuleInfo()
461 configInfo.value_ = ExtractPropertyValue("value", *configNode); in ParseConfigs()
476 auto it = audioFlagStrToEnum.find(configInfo.value_); in HandleConfigFlagAndUsage()
481 auto it = audioUsageStrToEnum.find(configInfo.value_); in HandleConfigFlagAndUsage()
670 configInfo.value_ = ExtractPropertyValue("value", *currNode); in ParseOutputMaxInstances()
689 configInfo.value_ = ExtractPropertyValue("value", *currNode); in ParseInputMaxInstances()
707 configInfo.value_ = ExtractPropertyValue("value", *currNode); in ParseCommonConfigs()
710 AUDIO_INFO_LOG("update route support: %{public}s", configInfo.value_.c_str()); in ParseCommonConfigs()
711 HandleUpdateRouteSupportParsed(configInfo.value_); in ParseCommonConfigs()
713 AUDIO_INFO_LOG("anahs pc support: %{public}s", configInfo.value_ in ParseCommonConfigs()
[all...]
/foundation/ability/idl_tool/idl_tool_2/ast/
H A Dast_expr.h77 std::string value_; member in OHOS::Idl::ASTNumExpr
90 std::string value_; member in OHOS::Idl::ASTEnumExpr
H A Dast_expr.cpp105 sb.AppendFormat("%s", value_.c_str()); in Dump()
122 sb.AppendFormat("%s", value_.c_str()); in Dump()
/foundation/ability/ability_base/interfaces/inner_api/base/include/
H A Dzchar_wrapper.h25 Char(zchar value) : value_(value) in Char()
81 zchar value_; member in OHOS::AAFwk::final
/third_party/protobuf/src/google/protobuf/
H A Dany.cc53 message.SerializeToString(value_->MutableNoArena( in PackFrom()
61 return message->ParseFromString(value_->GetNoArena()); in UnpackTo()
/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64.cc718 if (is_int8(src.value_) && RelocInfo::IsNoInfo(src.rmode_)) { in immediate_arithmetic_op()
721 emit(src.value_); in immediate_arithmetic_op()
736 if (is_int8(src.value_) && RelocInfo::IsNoInfo(src.rmode_)) { in immediate_arithmetic_op()
739 emit(src.value_); in immediate_arithmetic_op()
752 if (is_int8(src.value_)) { in immediate_arithmetic_op_16()
755 emit(src.value_); in immediate_arithmetic_op_16()
758 emitw(src.value_); in immediate_arithmetic_op_16()
762 emitw(src.value_); in immediate_arithmetic_op_16()
771 if (is_int8(src.value_)) { in immediate_arithmetic_op_16()
774 emit(src.value_); in immediate_arithmetic_op_16()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/data_panel/
H A Ddata_panel_component.h91 return value_; in GetValue()
96 value_ = value; in SetValue()
104 double value_ = 0.0; member in OHOS::Ace::final
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dlock_test.cc165 MutexLockTestThread(Lock* lock, int* value) : lock_(lock), value_(value) {} in MutexLockTestThread()
179 DoStuff(lock_, value_); in ThreadMain()
184 int* value_; member in sfntly::MutexLockTestThread
/third_party/node/deps/v8/src/torque/
H A Dutils.h430 : value_(value), in ResidueClass()
433 value_ %= size_t{1} << modulus_log_2_; in ResidueClass()
443 if (modulus_log_2_ == kMaxModulusLog2) return value_; in SingleValue()
448 return ResidueClass{a.value_ + b.value_, in operator +()
460 return ResidueClass{a.value_ * b.value_, in operator *()
488 size_t value_; member in v8::internal::torque::ResidueClass
/third_party/gn/src/gn/
H A Dparse_tree.cc807 IdentifierNode::IdentifierNode(const Token& token) : value_(token) {} in IdentifierNode()
818 scope->GetValueWithScope(value_.value(), true, &found_in_scope); in Execute()
834 return value_.range(); in GetRange()
839 return Err(value_, msg, help); in MakeErrorDescribing()
843 return CreateJSONNode(kDumpNodeName, value_.value(), GetRange()); in GetJSONNode()
856 Location old = value_.location(); in SetNewLocation()
857 value_.set_location(Location(old.file(), line_number, old.column_number())); in SetNewLocation()
1076 LiteralNode::LiteralNode(const Token& token) : value_(token) {} in LiteralNode()
1085 switch (value_.type()) { in Execute()
1091 std::string_view s = value_ in Execute()
[all...]
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/common/
H A Dnapi_data_utils.cpp381 descriptor = descriptorNapi->value_; in GetValue()
442 object->value_[attributeName] = std::vector<uint8_t>( in GetValue()
450 object->value_[attributeName] = std::make_shared<Object>(); in GetValue()
453 object->value_[attributeName] = double(); in GetValue()
456 object->value_[attributeName] = std::string(); in GetValue()
459 object->value_[attributeName] = bool(); in GetValue()
462 object->value_[attributeName] = std::monostate(); in GetValue()
465 object->value_[attributeName] = nullptr; in GetValue()
472 object->value_[attributeName]); in GetValue()
484 for (auto &[key, value] : object->value_) { in SetValue()
[all...]
/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/dcameracontrol/
H A Ddcamera_source_controller.cpp80 cmd.value_.assign(captureInfos.begin(), captureInfos.end()); in StartCapture()
183 cmd.value_ = info; in ChannelNeg()
252 cmd.value_.assign(settings.begin(), settings.end()); in UpdateSettings()
310 camInfo = cmd.value_; in GetCameraInfo()
336 cmd.value_ = openInfo; in OpenChannel()
519 DCameraNotify(cmd.value_); in HandleReceivedData()
540 for (auto iter = cmd.value_.begin(); iter != cmd.value_.end(); iter++) { in HandleMetaDataResult()
543 setting.value_ = (*iter)->value_; in HandleMetaDataResult()
[all...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dchecked_math_impl.h569 value_(WellDefinedConversionOrZero(value, is_valid_)) in CheckedNumericState()
581 constexpr T value() const { return value_; } in value()
592 // is_valid_ precedes value_ because member intializers in the constructors
594 // value_.
596 T value_; member in angle::base::internal::CheckedNumericState
606 : value_( in CheckedNumericState()
618 return MustTreatAsConstexpr(value_) ? value_ <= std::numeric_limits<T>::max() && in is_valid()
619 value_ >= std::numeric_limits<T>::lowest() in is_valid()
620 : std::isfinite(value_); in is_valid()
637 T value_; global() member in angle::base::internal::CheckedNumericState
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dstate_attributes.h49 : StateAttributeBase<AttributeID>(id), value_(value) in StateAttributeValue()
52 Attribute value_; member in OHOS::Ace::StateAttributeValue
/foundation/arkui/ace_engine/frameworks/core/components/marquee/
H A Drender_marquee.h41 return value_; in GetValue()
108 std::string value_; member in OHOS::Ace::RenderMarquee
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/progress/
H A Dprogress_date.h112 : CommonConfiguration(enabled), value_(value), total_(total) {} in ProgressConfiguration()
113 float value_ = 0.0f; member in OHOS::Ace::NG::ProgressConfiguration
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_tool_bar_item.h40 if (icon_.empty() && value_.empty()) {
83 std::string value_; member in OHOS::Ace::Framework::final
/foundation/arkui/napi/native_engine/impl/ark/
H A Dark_native_reference.h76 value_.SetWeakCallback(reinterpret_cast<void*>(this), FreeGlobalCallBack, NativeFinalizeCallBack); in ArkNativeReferenceConstructor()
92 Global<JSValueRef> value_; member in ArkNativeReference
/third_party/node/deps/v8/src/objects/
H A Dproperty.h30 MaybeObjectHandle GetValue() const { return value_; } in GetValue()
57 MaybeObjectHandle value_; member in v8::internal::final
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Dmoon_progress_modifier.cpp44 value_(AceType::MakeRefPtr<AnimatablePropertyFloat>(.0f)), in MoonProgressModifier()
52 AttachProperty(value_); in MoonProgressModifier()
89 double angle = (modifier->value_->Get() / modifier->maxValue_->Get()) * 1; in SetValue()
108 [weak = AceType::WeakClaim(AceType::RawPtr(value_)), valueTo = value]() { in SetValue()
167 if (GreatOrEqual(value_->Get(), maxValue_->Get()) && !animationEnd_) { in StartPictureAnimate()
221 double angle = value_->Get() / maxValue_->Get(); in PaintSquareMoon()
/third_party/gn/src/base/numerics/
H A Dsafe_conversions.h254 constexpr StrictNumeric() : value_(0) {} in StrictNumeric()
259 : value_(strict_cast<T>(rhs.value_)) {} in StrictNumeric()
265 : value_(strict_cast<T>(value)) {} in StrictNumeric()
283 return static_cast<typename ArithmeticOrUnderlyingEnum<Dst>::type>(value_); in operator Dst()
287 const T value_; member in base::internal::StrictNumeric
/third_party/node/deps/v8/src/base/
H A Dsafe_conversions.h278 constexpr StrictNumeric() : value_(0) {} in StrictNumeric()
283 : value_(strict_cast<T>(rhs.value_)) {} in StrictNumeric()
289 : value_(strict_cast<T>(value)) {} in StrictNumeric()
306 return static_cast<typename ArithmeticOrUnderlyingEnum<Dst>::type>(value_); in operator Dst()
310 const T value_; member in v8::base::internal::StrictNumeric

Completed in 24 milliseconds

1...<<11121314151617181920>>...29