Home
last modified time | relevance | path

Searched refs:value_ (Results 76 - 100 of 732) sorted by relevance

12345678910>>...30

/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/utils/
H A Dblock_integer.cpp21 value_++; in operator ++()
29 temp.value_ = value_; in operator ++()
30 value_++; in operator ++()
37 value_ = value; in operator =()
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/
H A Dsystem_defined_form_napi.cpp53 sdForm->value_ = std::make_shared<SystemDefinedForm>(); in New()
64 sdForm->value_ = std::static_pointer_cast<SystemDefinedForm>(in); in NewInstance()
91 ctxt->env, (sdForm != nullptr && sdForm->value_ != nullptr), Status::E_ERROR, "invalid object!"); in GetFormId()
92 ctxt->status = NapiDataUtils::SetValue(env, sdForm->value_->GetFormId(), ctxt->output); in GetFormId()
113 ctxt->env, (sdForm != nullptr && sdForm->value_ != nullptr), Status::E_ERROR, "invalid object!"); in SetFormId()
114 sdForm->value_->SetFormId(formId); in SetFormId()
124 ctxt->env, (sdForm != nullptr && sdForm->value_ != nullptr), Status::E_ERROR, "invalid object!"); in GetFormName()
125 ctxt->status = NapiDataUtils::SetValue(env, sdForm->value_->GetFormName(), ctxt->output); in GetFormName()
146 ctxt->env, (sdForm != nullptr && sdForm->value_ != nullptr), Status::E_ERROR, "invalid object!"); in SetFormName()
147 sdForm->value_ in SetFormName()
[all...]
H A Dunified_data_napi.cpp60 ASSERT_BUSINESS_ERR(ctxt, (ctxt->status == napi_ok && uRecord != nullptr && uRecord->value_ != nullptr), in New()
62 ctxt->status = UnifiedDataUtils::IsValidType(uRecord->value_->GetType()) ? napi_ok : napi_invalid_arg; in New()
79 uData->value_ = std::make_shared<UnifiedData>(propertiesNapi->value_); in New()
81 uData->value_->AddRecord(uRecord->value_); in New()
104 unifiedData->value_ = in; in NewInstance()
127 ASSERT_BUSINESS_ERR(ctxt, (ctxt->status == napi_ok && uRecord != nullptr && uRecord->value_ != nullptr), in AddRecord()
129 ctxt->status = UnifiedDataUtils::IsValidType(uRecord->value_->GetType()) ? napi_ok : napi_invalid_arg; in AddRecord()
136 ctxt->env, (uData != nullptr && uData->value_ ! in AddRecord()
[all...]
H A Dtype_descriptor_napi.cpp51 descriptorNapi->value_ = nullptr; in New()
70 descriptorNapi->value_ = in; in NewInstance()
100 Status status = reinterpret_cast<TypeDescriptorNapi*>(ctxt->native)->value_->BelongsTo(typeId, checkRet); in BelongsTo()
123 Status status = reinterpret_cast<TypeDescriptorNapi*>(ctxt->native)->value_->IsLowerLevelType(typeId, checkRet); in IsLowerLevelType()
146 Status status = reinterpret_cast<TypeDescriptorNapi*>(ctxt->native)->value_->IsHigherLevelType(typeId, checkRet); in IsHigherLevelType()
168 bool equalsRet = reinterpret_cast<TypeDescriptorNapi*>(ctxt->native)->value_->Equals(typeDescriptor); in Equals()
178 ASSERT_ERR(ctxt->env, (descriptorNapi != nullptr && descriptorNapi->value_ != nullptr), in GetTypeId()
180 ctxt->status = NapiDataUtils::SetValue(env, descriptorNapi->value_->GetTypeId(), ctxt->output); in GetTypeId()
190 ASSERT_ERR(ctxt->env, (descriptorNapi != nullptr && descriptorNapi->value_ != nullptr), in GetBelongingToTypes()
192 std::vector<std::string> belongingTypes = descriptorNapi->value_ in GetBelongingToTypes()
[all...]
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction.h61 Kind kind() const { return KindField::decode(value_); } in kind()
118 return this->value_ == that.value_; in Equals()
122 return this->value_ < that.value_; in Compare()
147 explicit InstructionOperand(Kind kind) : value_(KindField::encode(kind)) {} in InstructionOperand()
153 uint64_t value_;
207 value_ |= BasicPolicyField::encode(EXTENDED_POLICY); in UnallocatedOperand()
208 value_ |= ExtendedPolicyField::encode(policy); in UnallocatedOperand()
209 value_ | in UnallocatedOperand()
1187 int64_t value_; global() member in v8::internal::compiler::final
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/time/time_gtest/
H A Dtimer_test.cpp46 std::atomic<int> value_; member in Scaler
61 explicit Scaler(void (*fn)(sigval)) : value_(0), timerValid_(false) in Scaler()
83 return value_.load(); in Value()
113 int currentValue = value_; in ValUpdate()
115 while (currentValue == value_ && (time(nullptr) - start) < 5) { in ValUpdate()
118 return currentValue != value_; in ValUpdate()
121 static void ScalerFunc(sigval value_) in ScalerFunc() argument
123 Scaler* cd = reinterpret_cast<Scaler*>(value_.sival_ptr); in ScalerFunc()
124 ++cd->value_; in ScalerFunc()
127 static void ScaNotifyFunc(sigval value_) in ScaNotifyFunc() argument
[all...]
/foundation/ability/idl_tool/idl_tool_2/ast/
H A Dast_attribute.cpp24 if (value_ & ASTAttr::MINI) { in ToString()
28 if (value_ & ASTAttr::LITE) { in ToString()
32 if (value_ & ASTAttr::FULL) { in ToString()
36 if (value_ & ASTAttr::ONEWAY) { in ToString()
40 if (value_ & ASTAttr::CALLBACK) { in ToString()
78 if (value_ & ASTParamAttr::PARAM_IN) { in ToString()
82 if (value_ & ASTParamAttr::PARAM_OUT) { in ToString()
/foundation/graphic/graphic_3d/lume/metaobject/src/engine/
H A Dengine_value.cpp25 : params_(p), access_(BASE_NS::move(access)), name_(BASE_NS::move(name)), value_(access_->CreateAny()) in EngineValue()
36 return access_->SyncToEngine(*value_, params_) ? AnyReturn::NOTHING_TO_DO : AnyReturn::FAIL; in Sync()
40 return access_->SyncFromEngine(params_, *value_); in Sync()
44 AnyReturnValue res = value_->CopyFrom(value); in SetValue()
52 res = access_->SyncToEngine(*value_, params_) ? AnyReturn::NOTHING_TO_DO : AnyReturn::FAIL; in SetValue()
59 return *value_; in GetValue()
63 return META_NS::IsCompatible(*value_, id); in IsCompatible()
/third_party/protobuf/src/google/protobuf/
H A Dwrappers.pb.cc191 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::DoubleValue, value_),
197 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::FloatValue, value_),
203 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int64Value, value_),
209 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt64Value, value_),
215 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Int32Value, value_),
221 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::UInt32Value, value_),
227 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BoolValue, value_),
233 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::StringValue, value_),
239 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::BytesValue, value_),
321 value_ in DoubleValue()
[all...]
/third_party/gn/src/base/numerics/
H A Dclamped_math.h26 constexpr ClampedNumeric() : value_(0) {} in ClampedNumeric()
31 : value_(saturated_cast<T>(rhs.value_)) {} in ClampedNumeric()
40 : value_(saturated_cast<T>(value)) { in ClampedNumeric()
49 : value_(saturated_cast<T>(static_cast<Src>(value))) {} in ClampedNumeric()
83 return ClampedNumeric<T>(SaturatedNegWrapper(value_)); in operator -()
87 return ClampedNumeric<decltype(InvertWrapper(T()))>(InvertWrapper(value_)); in operator ~()
93 return ClampedNumeric<T>(SaturatedAbsWrapper(value_)); in Abs()
101 ClampedMaxOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Max()
109 ClampedMinOp<T, U>::Do(value_, Wrappe in Min()
175 T value_; global() member in base::internal::ClampedNumeric
[all...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dclamped_math.h30 constexpr ClampedNumeric() : value_(0) {} in ClampedNumeric()
34 constexpr ClampedNumeric(const ClampedNumeric<Src> &rhs) : value_(saturated_cast<T>(rhs.value_)) in ClampedNumeric()
44 : value_(saturated_cast<T>(value)) in ClampedNumeric()
53 : value_(saturated_cast<T>(static_cast<Src>(value))) in ClampedNumeric()
90 return ClampedNumeric<T>(SaturatedNegWrapper(value_)); in operator -()
95 return ClampedNumeric<decltype(InvertWrapper(T()))>(InvertWrapper(value_)); in operator ~()
102 return ClampedNumeric<T>(SaturatedAbsWrapper(value_)); in Abs()
109 return ClampedNumeric<result_type>(ClampedMaxOp<T, U>::Do(value_, Wrapper<U>::value(rhs))); in Max()
116 return ClampedNumeric<result_type>(ClampedMinOp<T, U>::Do(value_, Wrappe in Min()
184 T value_; global() member in angle::base::internal::ClampedNumeric
[all...]
/foundation/communication/netstack/utils/tlv_utils/src/
H A Dtlv_utils.cpp48 tlv->value_ = const_cast<uint8_t *>(buffer) + TLV_TLV_HEAD_LEN; in ParseTlv()
65 if (tlv->len_ != 0 && tlv->value_ != nullptr) { in AppendTlv()
66 if (memcpy_s(buffer + TLV_TLV_HEAD_LEN, boundary - buffer - TLV_TLV_HEAD_LEN, tlv->value_, tlv->len_) != in AppendTlv()
160 msg.requestBeginTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
161 msg.dnsEndTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
162 msg.tcpConnectEndTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
163 msg.tlsHandshakeEndTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
164 msg.firstSendTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
165 msg.firstRecvTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
166 msg.requestEndTime_ = *(static_cast<uint64_t *>(tlvs[index++].value_)); in Parse()
[all...]
/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast_attribute.cpp17 if (value_ & ASTAttr::MINI) { in ToString()
21 if (value_ & ASTAttr::LITE) { in ToString()
25 if (value_ & ASTAttr::FULL) { in ToString()
29 if (value_ & ASTAttr::ONEWAY) { in ToString()
33 if (value_ & ASTAttr::CALLBACK) { in ToString()
70 return StringHelper::Format("[%s]", (value_ == ParamAttr::PARAM_IN) ? "in" : "out"); in ToString()
/foundation/ability/ability_lite/services/abilitymgr_lite/src/slite/
H A Dability_record_observer_manager.cpp29 if (it->value_ == observer) { in AddObserver()
39 if (it->value_ == observer) { in RemoveObserver()
49 if (it->value_ != nullptr) { in NotifyAbilityRecordStateChanged()
50 it->value_->OnAbilityRecordStateChanged(data); in NotifyAbilityRecordStateChanged()
58 if (it->value_ != nullptr) { in NotifyAbilityRecordCleanup()
59 it->value_->OnAbilityRecordCleanup(appName); in NotifyAbilityRecordCleanup()
/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dparam_transfer.h28 explicit ParamTransfer(double value) : value_(value) {} in ParamTransfer()
39 return value_; in GetParam()
44 value_ = value; in SetParam()
48 double value_ = 0.0; member in OHOS::Ace::ParamTransfer
61 return value - value_ * delta;
75 return std::pow(delta + 1, -value_ * CURVE_COEFFICIENT) * value;
/third_party/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp2724 value_.int_ = 0; in Value()
2727 value_.real_ = 0.0; in Value()
2730 value_.string_ = 0; in Value()
2734 value_.map_ = new ObjectValues(); in Value()
2737 value_.bool_ = false; in Value()
2746 value_.int_ = value; in Value()
2751 value_.uint_ = value; in Value()
2756 value_.int_ = value; in Value()
2760 value_.uint_ = value; in Value()
2766 value_ in Value()
[all...]
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp2700 value_.int_ = 0;
2703 value_.real_ = 0.0;
2706 value_.string_ = 0;
2710 value_.map_ = new ObjectValues();
2713 value_.bool_ = false;
2722 value_.int_ = value;
2727 value_.uint_ = value;
2732 value_.int_ = value;
2736 value_.uint_ = value;
2742 value_
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp2700 value_.int_ = 0;
2703 value_.real_ = 0.0;
2706 value_.string_ = 0;
2710 value_.map_ = new ObjectValues();
2713 value_.bool_ = false;
2722 value_.int_ = value;
2727 value_.uint_ = value;
2732 value_.int_ = value;
2736 value_.uint_ = value;
2742 value_
[all...]
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/
H A Djsoncpp.cpp2700 value_.int_ = 0;
2703 value_.real_ = 0.0;
2706 value_.string_ = 0;
2710 value_.map_ = new ObjectValues();
2713 value_.bool_ = false;
2722 value_.int_ = value;
2727 value_.uint_ = value;
2732 value_.int_ = value;
2736 value_.uint_ = value;
2742 value_
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DWrappers.cs89 value_ = other.value_; in DoubleValue()
100 private double value_; field in Google.Protobuf.WellKnownTypes.DoubleValue
106 get { return value_; }
108 value_ = value;
269 value_ = other.value_; in FloatValue()
280 private float value_; field in Google.Protobuf.WellKnownTypes.FloatValue
286 get { return value_; }
288 value_
460 private long value_; global() field in Google.Protobuf.WellKnownTypes.Int64Value
640 private ulong value_; global() field in Google.Protobuf.WellKnownTypes.UInt64Value
820 private int value_; global() field in Google.Protobuf.WellKnownTypes.Int32Value
1000 private uint value_; global() field in Google.Protobuf.WellKnownTypes.UInt32Value
1180 private bool value_; global() field in Google.Protobuf.WellKnownTypes.BoolValue
1360 private string value_ = ""; global() field in Google.Protobuf.WellKnownTypes.StringValue
1540 private pb::ByteString value_ = pb::ByteString.Empty; global() field in Google.Protobuf.WellKnownTypes.BytesValue
[all...]
/third_party/node/deps/v8/include/
H A Dv8-function-callback.h34 V8_INLINE ReturnValue(const ReturnValue<S>& that) : value_(that.value_) { in ReturnValue()
74 V8_INLINE void SetInternal(internal::Address value) { *value_ = value; } in SetInternal()
77 internal::Address* value_; member in v8::ReturnValue
256 ReturnValue<T>::ReturnValue(internal::Address* slot) : value_(slot) {} in ReturnValue()
263 *value_ = GetDefaultValue(); in Set()
265 *value_ = *reinterpret_cast<internal::Address*>(*handle); in Set()
274 *value_ = GetDefaultValue(); in Set()
276 *value_ = *reinterpret_cast<internal::Address*>(handle.val_); in Set()
286 *value_ in Set()
[all...]
/third_party/node/deps/v8/include/v8-include/
H A Dv8-function-callback.h35 V8_INLINE ReturnValue(const ReturnValue<S>& that) : value_(that.value_) { in ReturnValue()
75 V8_INLINE void SetInternal(internal::Address value) { *value_ = value; } in SetInternal()
82 internal::Address* value_; member in v8::ReturnValue
278 ReturnValue<T>::ReturnValue(internal::Address* slot) : value_(slot) {} in ReturnValue()
285 *value_ = GetDefaultValue(); in Set()
287 *value_ = handle.ptr(); in Set()
296 *value_ = GetDefaultValue(); in Set()
298 *value_ = handle.ptr(); in Set()
308 *value_ in Set()
[all...]
/foundation/distributeddatamgr/pasteboard/interfaces/cj/src/
H A Dpaste_data_impl.cpp36 value_ = std::make_shared<PasteData>(); in PasteDataImpl()
41 value_ = pasteData; in PasteDataImpl()
59 value_ = PasteboardClient::GetInstance()->CreateKvData(mimeType, arrayBuf); in PasteDataImpl()
65 return value_; in GetRealPasteData()
70 value_ = PasteboardClient::GetInstance()->CreateHtmlData(value.stringValue); in CreateHtmlData()
75 value_ = PasteboardClient::GetInstance()->CreatePlainTextData(value.stringValue); in CreatePlainTextData()
80 value_ = PasteboardClient::GetInstance()->CreateUriData(OHOS::Uri(value.stringValue)); in CreateUriData()
85 value_ = PasteboardClient::GetInstance()->CreatePixelMapData(value.pixelMap); in CreatePixelMapData()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/utils/
H A Dblock_integer.h23 API_EXPORT BlockInteger(const BlockInteger &integer) : interval_(integer.interval_), value_(integer.value_) {}; in BlockInteger()
30 return value_; in operator int()
34 return value_ < other; in operator <()
45 int value_ = 0; member in OHOS::DistributedData::BlockInteger
/third_party/gn/src/gn/
H A Dsource_file.cc131 SourceFile::SourceFile(StringAtom value) : value_(value) {} in SourceFile()
134 return GetSourceFileType(value_.str()); in GetType()
138 std::string_view v = value_.str(); in IsDefType()
143 std::string_view v = value_.str(); in IsObjectType()
148 std::string_view v = value_.str(); in IsModuleMapType()
153 std::string_view v = value_.str(); in IsSwiftType()
158 std::string_view v = value_.str(); in IsSwiftModuleType()
166 const std::string& value = value_.str(); in GetName()
176 const std::string& value = value_.str(); in GetDir()
183 return ResolvePath(value_ in Resolve()
[all...]

Completed in 26 milliseconds

12345678910>>...30