/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | content_slot_node.h | 48 … if (content_ && (RawPtr(content_) != content) && (content_->GetContentSlot().Upgrade() == this)) { in AttachNodeContent() 49 content_->DetachFromNode(); in AttachNodeContent() 51 content_ = content; in AttachNodeContent() 52 content_->AttachToNode(this); in AttachNodeContent() 57 if (content_) { in DetachNodeContent() 58 content_->DetachFromNode(); in DetachNodeContent() 60 content_ = nullptr; in DetachNodeContent() 66 if (content_) { in OnAttachToMainTree() 67 content_->OnAttachToMainTree(); in OnAttachToMainTree() 74 if (content_) { [all …]
|
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/ |
H A D | notification_content.cpp | 32 content_ = normalContent; in NotificationContent() 43 content_ = longTextContent; in NotificationContent() 54 content_ = pictureContent; in NotificationContent() 76 content_ = multiLineContent; in NotificationContent() 87 content_ = mediaContent; in NotificationContent() 110 content_ = liveViewContent; in NotificationContent() 123 return content_; in GetNotificationContent() 139 ", content = " + (content_ ? content_->Dump() : "null") + in Dump() 148 if (!content_) { in ToJson() 238 content_ = in ReadFromParcel() [all …]
|
H A D | notification_capsule.cpp | 63 content_ = content; in SetContent() 68 return content_; in GetContent() 76 ", content = " + content_ + in Dump() 85 jsonObject["content"] = content_; in ToJson() 114 capsule->content_ = jsonObject.at("content").get<std::string>(); in FromJson() 137 if (!parcel.WriteString(content_)) { in Marshalling() 162 content_ = parcel.ReadString(); in ReadFromParcel()
|
H A D | notification_unified_group_info.cpp | 49 return content_; in GetContent() 54 content_ = content; in SetContent() 86 …"NotificationUnifiedGroupInfo{ key = " + key_ + ", title = " + title_ + ", content = " + content_ + in Dump() 102 if (!parcel.WriteString(content_)) { in Marshalling() 151 if (!parcel.ReadString(content_)) { in ReadFromParcel()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | geometry_node.h | 52 …(content_ == geometryNode.content_) && (parentGlobalOffset_ == geometryNode.parentGlobalOffset_) && in CheckUnchanged() 214 if (!content_) { in SetContentSize() 217 content_->rect_.SetSize(size); in SetContentSize() 222 if (!content_) { in SetContentOffset() 225 content_->rect_.SetOffset(translate); in SetContentOffset() 230 return content_ ? content_->rect_ : RectF(); in GetContentRect() 235 return content_ ? content_->rect_.GetSize() : SizeF(); in GetContentSize() 240 return content_ ? content_->rect_.GetOffset() : OffsetF(); in GetContentOffset() 246 return content_ ? (content_->rect_.GetSize() + deltaSize) : SizeF(); in GetPixelRoundContentSize() 251 return content_ ? content_->rect_.GetOffset() : OffsetF(); in GetPixelRoundContentOffset() [all …]
|
H A D | geometry_node.cpp | 31 content_.reset(); in Reset() 49 if (content_) { in Clone() 50 node->content_ = std::make_unique<GeometryProperty>(*content_); in Clone()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | content_controller.h | 51 return StringUtils::ToWstring(content_); in GetWideText() 56 return content_; in GetTextValue() 61 return content_.empty(); in IsEmpty() 66 content_ = value; in SetTextValue() 72 content_ = value; in SetTextValue() 78 content_ = value; in SetTextValueOnly() 83 content_ = ""; in Reset() 102 std::string content_; variable
|
H A D | content_controller.cpp | 88 auto str = content_; in ReplaceSelectedValue() 91 auto len = content_.length(); in ReplaceSelectedValue() 94 if (value.length() == 1 && content_.length() < len) { in ReplaceSelectedValue() 95 content_ = str; in ReplaceSelectedValue() 167 auto result = content_; in FilterValue() 190 content_ = result; in FilterValue() 198 content_ = StringUtils::ToString(subWstring); in FilterValue() 353 content_ = StringUtils::ToString(wideText); in erase() 365 length, content_, true); in Delete() 370 length, content_, true); in Delete() [all …]
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/ |
H A D | plain_text.cpp | 30 this->content_ = content; in PlainText() 38 content_ = std::get<std::string>(value); in PlainText() 41 object->GetValue(TEXT_CONTENT, content_); in PlainText() 53 …return UnifiedDataUtils::GetDetailsSize(this->details_) + this->content_.size() + this->abstract_.… in GetSize() 58 return this->content_; in GetContent() 66 this->content_ = text; in SetContent() 69 object->value_[TEXT_CONTENT] = content_; in SetContent() 97 object->value_[TEXT_CONTENT] = content_; in InitObject()
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/picture/ |
H A D | auxiliary_picture.cpp | 37 dstAuxPicture->content_ = content; in Create() 72 return content_; in GetContentPixel() 77 content_ = content; in SetContentPixel() 82 if (content_ == nullptr) { in ReadPixels() 85 return content_->ReadPixels(bufferSize, dst); in ReadPixels() 90 if (content_ == nullptr) { in WritePixels() 93 return content_->WritePixels(source, bufferSize); in WritePixels() 165 if (content_ == nullptr) { in Marshalling() 170 if (!content_->Marshalling(data)) { in Marshalling() 275 if (content_ == nullptr) { in SetAuxiliaryPictureInfo() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/ |
H A D | content_object.h | 41 META_FORWARD_READONLY_PROPERTY(IObject::Ptr, Content, content_->PropertyContent()) in META_BEGIN_NAMESPACE() 42 META_FORWARD_PROPERTY(bool, ContentSearchable, content_->PropertyContentSearchable()) in META_BEGIN_NAMESPACE() 43 META_FORWARD_PROPERTY(IContentLoader::Ptr, ContentLoader, content_->PropertyContentLoader()) in META_BEGIN_NAMESPACE() 48 content_ = interface_cast<IContent>(super); in META_BEGIN_NAMESPACE() 49 assert(content_); in META_BEGIN_NAMESPACE() 72 IContent* content_ {}; in META_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_property_drawable_utilities.cpp | 33 RSSaveDrawable::RSSaveDrawable(std::shared_ptr<uint32_t> content) : content_(std::move(content)) {} in RSSaveDrawable() 36 *content_ = canvas.Save(); in Draw() 39 RSRestoreDrawable::RSRestoreDrawable(std::shared_ptr<uint32_t> content) : content_(std::move(conten… in RSRestoreDrawable() 42 canvas.RestoreToCount(*content_); in Draw() 47 : content_(std::move(content)), type_(type) in RSCustomSaveDrawable() 51 *content_ = canvas.SaveAllStatus(type_); in Draw() 55 : content_(std::move(content)) in RSCustomRestoreDrawable() 59 canvas.RestoreStatus(*content_); in Draw()
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/distributed_camera/ |
H A D | _d_camera_h_d_f_event.md | 22 | String [content_](#content_) | 扩展内容(可选)。 | 28 ### content_ subsection 31 String DCameraHDFEvent::content_
|
/ohos5.0/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/entity/ |
H A D | p2p_available_state.cpp | 58 P2pEntity::GetInstance().currentFrequency_, operation->content_.frequency); in CreateGroup() 59 if (operation->content_.frequency == P2pEntity::GetInstance().currentFrequency_) { in CreateGroup() 68 int ret = P2pAdapter::P2pCreateGroup(operation->content_); in CreateGroup() 76 int ret = P2pAdapter::P2pConnectGroup(operation->content_); in Connect() 86 int ret = P2pAdapter::DestroyGroup(operation->content_); in DestroyGroup() 97 auto ret = P2pAdapter::P2pShareLinkRemoveGroup(operation->content_); in RemoveLink()
|
H A D | p2p_connect_state.cpp | 47 if (connectOp->content_.isNeedDhcp) { in Enter() 144 if (operation->content_.isNeedDhcp) { in PreprocessP2pConnectionChangeEvent() 157 operation->content_.gcIp = localIpStr; in PreprocessP2pConnectionChangeEvent() 160 auto ret = P2pAdapter::P2pConfigGcIp(groupInfo->interface, operation->content_.gcIp); in PreprocessP2pConnectionChangeEvent() 193 if (operation == nullptr || !operation->content_.isNeedDhcp) { in DetectDhcpTimeout()
|
/ohos5.0/foundation/distributedhardware/device_manager/common/include/ipc/model/ |
H A D | ipc_notify_pin_holder_event_req.h | 49 return content_; in GetContent() 54 content_ = content; in SetContent() 60 std::string content_; variable
|
H A D | ipc_notify_bind_result_req.h | 95 return content_; in GetContent() 105 content_ = content; in SetContent() 112 std::string content_; variable
|
/ohos5.0/base/security/security_guard/interfaces/inner_api/collector/include/ |
H A D | security_event.h | 28 : eventId_(eventId), version_(version), content_(content) {}; 33 std::string GetContent() const { return content_; }; in GetContent() 41 std::string content_; variable
|
/ohos5.0/base/security/security_guard/test/unittest/data_collect/sa/ |
H A D | security_event.h | 28 : eventId_(eventId), version_(version), content_(content) {}; 33 std::string GetContent() const { return content_; }; in GetContent() 41 std::string content_; variable
|
/ohos5.0/base/security/security_guard/test/unittest/security_collector/include/ |
H A D | security_event.h | 28 : eventId_(eventId), version_(version), content_(content) {}; 33 std::string GetContent() const { return content_; }; in GetContent() 41 std::string content_; variable
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/ |
H A D | rs_property_drawable_utilities.h | 44 std::shared_ptr<uint32_t> content_; 54 std::shared_ptr<uint32_t> content_; 65 std::shared_ptr<RSPaintFilterCanvas::SaveStatus> content_; 76 std::shared_ptr<RSPaintFilterCanvas::SaveStatus> content_;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_option.cpp | 93 if (!content_) { in SetSpecializedAttr() 94 content_ = AceType::MakeRefPtr<TextComponent>(attr.second); in SetSpecializedAttr() 96 content_->SetData(attr.second); in SetSpecializedAttr() 98 selectOptionComponent_->SetText(content_); in SetSpecializedAttr()
|
/ohos5.0/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/event/ |
H A D | wifi_direct_event_wrapper.h | 23 Content content_; member 24 explicit WifiDirectEventWrapper(const Content &content) : content_(content) {}; in WifiDirectEventWrapper()
|
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/common/src/ |
H A D | av_trans_message.cpp | 32 : type_(type), content_(content), dstDevId_(dstDevId) in AVTransMessage() 47 cJSON_AddStringToObject(msgJson, KEY_CONTENT.c_str(), content_.c_str()); in MarshalMessage() 82 content_ = contentObj->valuestring; in UnmarshalMessage()
|
/ohos5.0/base/security/security_guard/interfaces/inner_api/collect/src/ |
H A D | event_info.cpp | 23 content_ = content; in EventInfo() 38 return content_; in GetContent()
|