Home
last modified time | relevance | path

Searched refs:others (Results 1 – 25 of 139) sorted by relevance

123456

/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/include/distributedcameramgr/dcamerainterface/
H A Dicamera_source_data_process.h42 bool operator == (const DCameraStreamConfig& others) const
44 …return this->width_ == others.width_ && this->height_ == others.height_ && this->format_ == others
45 this->dataspace_ == others.dataspace_ && this->encodeType_ == others.encodeType_ &&
46 this->type_ == others.type_;
49 bool operator < (const DCameraStreamConfig& others) const
51 …return (this->width_ < others.width_) || ((this->width_ == others.width_) && (this->height_ < othe…
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-gesture-events-gesture-judge.md158 for (let i = 0; i < others.length; i++) {
159 let target = others[i].getEventTargetInfo();
160 …if (target.getId() == "inner" && others[i].isBuiltIn() && others[i].getType() == GestureControl.Ge…
162 this.childRecognizer = others[i]; // 保存将要组成并行手势的识别器
163 return others[i]; // 返回和当前手势将要组成并行手势的识别器
176 for (let i = 0; i < others.length; i++) {
302 for (let i = 0; i < others.length; i++) {
303 let target = others[i].getEventTargetInfo();
304 …if (target.getId() == "inner" && others[i].isBuiltIn() && others[i].getType() == GestureControl.Ge…
307 return others[i]; // 返回和当前手势将要组成并行手势的识别器
[all …]
H A Darkts-common-components-text-input.md203 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
205 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
207 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
209 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
211 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/include/utils/
H A Dconstants.h132 bool operator ==(const DCResolution others) const
134 return (this->width_ == others.width_) && (this->height_ == others.height_);
137 bool operator <(const DCResolution others) const
139 return this->width_ < others.width_ ||
140 (this->width_ == others.width_ && this->height_ < others.height_);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/
H A Dparagraph.h143 bool operator==(const ParagraphStyle others) const
145 … return direction == others.direction && align == others.align && maxLines == others.maxLines &&
146 fontLocale == others.fontLocale && wordBreak == others.wordBreak &&
147 ellipsisMode == others.ellipsisMode && textOverflow == others.textOverflow &&
148 … leadingMargin == others.leadingMargin && fontSize == others.fontSize && indent == others.indent;
151 bool operator!=(const ParagraphStyle others) const
153 return !(*this == others);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-gesture-blocking-enhancement.md45 | others | Array\<[GestureRecognizer](#gesturerecognizer)\> | 是 | 响应链上更高优先级的其他组件相同类别的手势识别器。 |
334 | others | Array\<[GestureRecognizer](#gesturerecognizer)\> | 是 | 响应链上的其他手势识别器对象。 |
409 for (let i = 0; i < others.length; i++) {
410 let target = others[i].getEventTargetInfo();
412 …if (target.getId() == "inner" && others[i].isBuiltIn() && others[i].getType() == GestureControl.Ge…
414 this.childRecognizer = others[i]; // 保存将要组成并行手势的识别器
415 return others[i]; // 返回将要组成并行手势的识别器
426 if (others) {
427 for (let i = 0; i < others.length; i++) {
428 let target = others[i].getEventTargetInfo() as ScrollableTargetInfo;
[all …]
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-gesture-events-gesture-judge.md158 for (let i = 0; i < others.length; i++) {
159 let target = others[i].getEventTargetInfo();
160 …if (target.getId() == "inner" && others[i].isBuiltIn() && others[i].getType() == GestureControl.Ge…
162 this.childRecognizer = others[i]; // Save the recognizer to work in parallel.
176 for (let i = 0; i < others.length; i++) {
177 let target = others[i].getEventTargetInfo() as ScrollableTargetInfo;
302 for (let i = 0; i < others.length; i++) {
303 let target = others[i].getEventTargetInfo();
304 …if (target.getId() == "inner" && others[i].isBuiltIn() && others[i].getType() == GestureControl.Ge…
315 for (let i = 0; i < others.length; i++) {
[all …]
H A Darkts-common-components-text-input.md203 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
205 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
207 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
209 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
211 … we hardly know. As a result, what we do remember is anything that makes others happy, anything th…
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/test/
H A Dserializable_test.cpp204 std::vector<std::map<std::string, NormalEx>> others; member
214 SetValue(node[GET_NAME(others)], others); in Marshal()
222 GetValue(node, GET_NAME(others), others); in Unmarshal()
232 marData.others.push_back({ std::pair{ "test2", normalEx } });
241 ASSERT_TRUE((marData.others == unmarData.others)) << jsonData;
/ohos5.0/base/inputmethod/imf/common/include/
H A Ditypes_util.h126 static bool Marshal(MessageParcel &parcel, const T &first, const Types &... others);
128 static bool Unmarshal(MessageParcel &parcel, T &first, Types &... others);
179 bool ITypesUtil::Marshal(MessageParcel &parcel, const T &first, const Types &... others) in Marshal() argument
184 return Marshal(parcel, others...); in Marshal()
188 bool ITypesUtil::Unmarshal(MessageParcel &parcel, T &first, Types &... others) in Unmarshal() argument
193 return Unmarshal(parcel, others...); in Unmarshal()
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/dataobs_manager/include/
H A Ddataobs_utils.h145 bool Marshal(MessageParcel &parcel, const T &first, const Types &...others);
148 bool Unmarshal(MessageParcel &parcel, T &first, Types &...others);
308 bool DataObsUtils::Marshal(MessageParcel &parcel, const T &first, const Types &...others)
313 return DataObsUtils::Marshal(parcel, others...);
317 bool DataObsUtils::Unmarshal(MessageParcel &parcel, T &first, Types &...others)
322 return DataObsUtils::Unmarshal(parcel, others...);
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-gesture-blocking-enhancement.md32 type ShouldBuiltInRecognizerParallelWithCallback = (current: GestureRecognizer, others: Array\<Gest…
334 | others | Array\<[GestureRecognizer](#gesturerecognizer)\> | Yes | Other gesture recognizer objec…
408 ….shouldBuiltInRecognizerParallelWith((current: GestureRecognizer, others: Array<GestureRecognizer>…
409 for (let i = 0; i < others.length; i++) {
410 let target = others[i].getEventTargetInfo();
412 …if (target.getId() == "inner" && others[i].isBuiltIn() && others[i].getType() == GestureControl.Ge…
414 this.childRecognizer = others[i]; // Save the recognizer to form a parallel gesture.
415 return others[i]; // Return the recognizer to form a parallel gesture.
426 if (others) {
427 for (let i = 0; i < others.length; i++) {
[all …]
/ohos5.0/docs/zh-cn/design/ux-design/
H A Danimation-attributes.md45 …| ![动效曲线概况-spring.jpg](figures/动效曲线概况-spring.jpg) |![动效曲线概况-others.jpg](figures/动效曲线概况-others.jpg)|
47 | linear | easing | spring | others |
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/effect/test/unittest/
H A Dgaussian_blur_filter_unittest.cpp105 auto others = new float[3]; variable
106 std::shared_ptr<float> sOthers(others, [] (float *ptr) { in __anonf2f649920302()
H A Dhorizontal_blur_filter_unittest.cpp105 auto others = new float[3]; variable
106 std::shared_ptr<float> sOthers(others, [] (float *ptr) { in __anoncaf0de810302()
H A Dvertical_blur_filter_unittest.cpp105 auto others = new float[3]; variable
106 std::shared_ptr<float> sOthers(others, [] (float *ptr) { in __anonf2fc3bf10302()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/common/
H A Ditypes_util.h263 bool Marshal(MessageParcel &parcel, const T &first, const Types &...others);
266 bool Unmarshal(MessageParcel &parcel, T &first, Types &...others);
586 bool ITypesUtil::Marshal(MessageParcel &parcel, const T &first, const Types &...others)
591 return ITypesUtil::Marshal(parcel, others...);
595 bool ITypesUtil::Unmarshal(MessageParcel &parcel, T &first, Types &...others)
600 return ITypesUtil::Unmarshal(parcel, others...);
/ohos5.0/base/startup/appspawn/service/hnp/pack/
H A DREADME_zh.md52 …5. hnp安装之后,用户通常以others权限运行。在windows上打包hnp包,安装后文件默认赋予others可执行权限。在linux、mac、ohos操作系统上打包hnp包,安装后文件继承…
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_should_built_in_recognizer_parallel_with_function.cpp23 …fPtr<NG::NGGestureRecognizer>& current, const std::vector<RefPtr<NG::NGGestureRecognizer>>& others) in Execute() argument
29 for (const auto& item : others) { in Execute()
H A Djs_gesture_judge_function.h46 …efPtr<NG::NGGestureRecognizer>& current, const std::list<RefPtr<NG::NGGestureRecognizer>>& others);
/ohos5.0/docs/zh-cn/contribute/template/
H A Dtutorial-template.md7 撰写教程页面时,在“others”目录下面创建新的MarkDown文件。
/ohos5.0/docs/zh-cn/device-dev/kernel/
H A Dkernel-small-debug-shell-file-chmod.md28 - fatfs文件系统所有创建的文件和挂载节点的权限属性保持一致,目前节点的权限只有用户读写权限,group和others权限不生效;且只允许修改用户读写权限,读写权限只有rw和ro两种。其他文件系…
H A Dkernel-small-debug-shell-file-mkdir.md30 > fatfs文件系统所有创建的文件和其挂载节点的权限属性保持一致,目前节点的权限只有用户读写权限,group和others权限不生效,
/ohos5.0/build/test/
H A DREADME.md35 others 其余均为gn测试用例
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ability-kit/
H A Derrorcode-access-token.md67 The API is not used in pair with others.

123456