/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/curves/ |
H A D | easing_curve.cpp | 46 return t; in EaseLinear() 62 return Pow2(t); in EaseInQuad() 70 if (t < 0.5f) { in EaseInOutQuad() 71 return 2 * t * t; in EaseInOutQuad() 77 return Pow3(t); in EaseInCubic() 85 if (t < 0.5f) { in EaseInOutCubic() 86 return 4 * t * t * t; in EaseInOutCubic() 92 return Pow4(t); in EaseInQuart() 142 if (t < .5f) { in EaseInOutExpo() 166 return c3 * Pow3(t) - c1 * Pow2(t); in EaseInBack() [all …]
|
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/dialog/PasteboardDialog/hvigor/ |
H A D | hvigor-wrapper.js | 15 …t=require("os"),n=require("fs"),r=require("child_process"),u=require("process"),o=require("tty"),i… argument
|
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/application/hvigor/ |
H A D | hvigor-wrapper.js | 15 …t=require("os"),n=require("fs"),r=require("child_process"),u=require("process"),o=require("tty"),i… argument
|
/ohos5.0/base/useriam/face_auth/ui/Settings_FaceAuth/hvigor/ |
H A D | hvigor-wrapper.js | 16 …t=require("os"),n=require("fs"),r=require("child_process"),u=require("process"),o=require("tty"),i… argument
|
/ohos5.0/foundation/resourceschedule/ffrt/src/dfx/bbox/ |
H A D | bbox.cpp | 74 if (t) { in SaveCurrent() 77 g_cur_signame, g_cur_tid, t->gid, t->qos(), t->label.c_str()); in SaveCurrent() 107 qos, worker->Id(), t->gid, t->label.c_str()); in SaveLocalFifoStatus() 128 t->gid, t->label.c_str()); in SaveWorkerStatus() 151 i, j, nt, t->gid, t->label.c_str()); in SaveReadyQueueStatus() 187 tmp.size(), t->gid, t->qos(), t->label.c_str()); in SaveNormalTaskStatus() 198 return (t->state == TaskState::RUNNING) && t->coRoutine && in SaveNormalTaskStatus() 230 tmp.size(), t->gid, t->GetQos(), t->label.c_str()); in SaveQueueTaskStatus() 241 return (t->GetFinishStatus() == false) && t->coRoutine && in SaveQueueTaskStatus() 288 if ((t != nullptr) && (t->type == ffrt_normal_task || t->type == ffrt_queue_task)) { in RecordDebugInfo() [all …]
|
/ohos5.0/foundation/communication/wifi/wifi/base/cRPC/src/ |
H A D | hash_table.c | 111 t = q; in RebuildHashTable() 131 t = t->next; in FindContext() 134 return (t == NULL) ? NULL : t->context; in FindContext() 146 while (t != NULL && t->context->fd != context->fd) { in InsertHashTable() 147 q = t; in InsertHashTable() 148 t = t->next; in InsertHashTable() 183 while (t != NULL && t->context->fd != context->fd) { in DeleteHashTable() 184 q = t; in DeleteHashTable() 185 t = t->next; in DeleteHashTable() 193 free(t); in DeleteHashTable() [all …]
|
/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/ |
H A D | rbtree.c | 76 if (t == NULL) { in RbTreeNew() 87 t->root = t->nil; in RbTreeNew() 101 t->root = y; in LeftRotate() 120 t->root = y; in RightRotate() 191 if (t == NULL) { in RbTreeInsert() 217 t->root = z; in RbTreeInsert() 236 t->root = v; in Transplant() 502 TraverseInOrder(t, t->root, Encoder, &ctx); in RbTreeEncode() 580 TraverseDestroy(t, t->root); in RbTreeDestroy() 582 t->nil = NULL; in RbTreeDestroy() [all …]
|
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_extension/ |
H A D | cloud_extension_stub.js | 211 unMarshallingSubInfo(t) { argument 214 let z1 = t.readInt(); 227 let b2 = t.readInt(); 245 unMarshallingDatabase(t) { argument 254 let g2 = t.readInt(); 403 let h3 = t.readInt(); 526 let n3 = t.readInt(); 539 let n3 = t.readInt(); 552 let o3 = t.readInt(); 632 unmarshallingAssets(t) { argument [all …]
|
/ohos5.0/foundation/arkui/ui_lite/frameworks/animator/ |
H A D | easing_equation.cpp | 33 double x = -t * t * ((overshoot_ + 1) * t + overshoot_); in BackEaseIn() 44 t -= 1.0; in BackEaseOut() 45 double x = t * t * ((overshoot_ + 1) * t + overshoot_) + 1; in BackEaseOut() 103 int16_t x = (t * t * t) >> (INTERPOLATION_RANGE_OFFSET << 1); in CubicEaseIn() 116 t = INTERPOLATION_RANGE - t; in CubicEaseOut() 117 int16_t x = INTERPOLATION_RANGE - ((t * t * t) >> (INTERPOLATION_RANGE_OFFSET << 1)); in CubicEaseOut() 151 int16_t x = (t * t) >> INTERPOLATION_RANGE_OFFSET; in QuadEaseIn() 189 int16_t x = (t * t * t * t * t) >> (INTERPOLATION_RANGE_OFFSET * 4); in QuintEaseIn() 202 t = INTERPOLATION_RANGE - t; in QuintEaseOut() 205 int16_t x = INTERPOLATION_RANGE - ((t * t * t * t * t) >> (INTERPOLATION_RANGE_OFFSET * 4)); in QuintEaseOut() [all …]
|
H A D | interpolation.cpp | 27 int64_t t2 = t * t; in GetBezierInterpolation() 28 int64_t t3 = t2 * t; in GetBezierInterpolation() 31 ret += BEZIER_COEFFICIENT * invT2 * t * u1; in GetBezierInterpolation() 43 float invT = 1 - t; in GetBezierInterpolation() 46 float t2 = t * t; in GetBezierInterpolation() 47 float t3 = t2 * t; in GetBezierInterpolation() 50 ret += BEZIER_COEFFICIENT * invT2 * t * u1; in GetBezierInterpolation() 59 float invT = 1 - t; in GetBezierDerivative() 67 ret += BEZIER_COEFFICIENT * d2 * t * t; in GetBezierDerivative() 76 float t = x; in GetBezierY() local [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/splitlayout/ |
H A D | splitlayout.js | 17 constructor(e, t, o, r = -1) { argument 121 t || Column.pop(); 155 t || Stack.pop(); 161 t || Image.pop(); 205 t || Text.pop(); 228 t || Text.pop(); 251 t || Text.pop(); 298 t || Row.pop(); 335 t || Text.pop(); 357 t || Text.pop(); [all …]
|
/ohos5.0/base/security/huks/test/unittest/huks_standard_test/three_stage_test/src/ |
H A D | hks_chipset_platform_decrypt_test.cpp | 558 auto run = [&t, &decryptParams]() { in __anone34a9a460202() 665 size_t correctSize = t.tmpPk.size(); 666 t.tmpPk = {t.tmpPk.begin(), t.tmpPk.begin() + t.tmpPk.size() / 2}; 691 size_t correctSize = t.salt.size(); 692 t.salt = {t.salt.begin(), t.salt.begin() + t.salt.size() / 2}; 718 t.hmacMsg = {t.hmacMsg.begin(), t.hmacMsg.begin() + t.hmacMsg.size() / 2}; 749 std::vector<uint8_t> plainText(t.cipher.size() + t.cipher.size()); 765 t.cipher.emplace_back(1); 813 t.aad.emplace_back(1); 837 t.iv.emplace_back(1); [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/treeview/ |
H A D | treeview.js | 32 on(e, t) { argument 37 once(e, t) { argument 42 t.apply(null, [e, t]) 49 off(e, t) { argument 58 if (i === t || i.callback === t) { 65 emit(e, t) { argument 123 t >= 0 && this.listeners.splice(t, 1) 1140 if (t) if (0 === t.children.length) if (null != t.getNodeItem().imageNode) { 1179 if (t) { 1200 if (t) { [all …]
|
/ohos5.0/foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/src/ |
H A D | object_radar_reporter.cpp | 24 .t = HISYSEVENT_STRING, in ReportStateFinished() 28 .t = HISYSEVENT_STRING, in ReportStateFinished() 32 .t = HISYSEVENT_INT32, in ReportStateFinished() 36 .t = HISYSEVENT_INT32, in ReportStateFinished() 40 .t = HISYSEVENT_INT32, in ReportStateFinished() 44 .t = HISYSEVENT_INT32, in ReportStateFinished() 61 .t = HISYSEVENT_STRING, in ReportStage() 69 .t = HISYSEVENT_INT32, in ReportStage() 73 .t = HISYSEVENT_INT32, in ReportStage() 77 .t = HISYSEVENT_INT32, in ReportStage() [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/composetitlebar/ |
H A D | composetitlebar.js | 18 n = r < 3 ? t : null === i ? i = Object.getOwnPropertyDescriptor(t, o) : i; 97 t || Flex.pop(); 112 t || Row.pop(); 179 t || If.pop(); 236 t || If.pop(); 281 t || If.pop(); 299 t || If.pop(); 422 t || Row.pop(); 437 item: t 523 t || If.pop(); [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/composelistitem/ |
H A D | composelistitem.js | 159 t || If.pop(); 194 t || Text.pop(); 227 t || If.pop(); 260 t || If.pop(); 272 t || Row.pop(); 521 t || Row.pop(); 542 t || Row.pop(); 581 t || If.pop(); 742 t || If.pop(); 762 t || If.pop(); [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/selecttitlebar/ |
H A D | selecttitlebar.js | 18 n = r < 3 ? t : null === i ? i = Object.getOwnPropertyDescriptor(t, o) : i; 102 t || Flex.pop(); 123 t || Row.pop(); 148 t || If.pop(); 160 t || Column.pop(); 300 t || If.pop(); 351 t || If.pop(); 369 t || If.pop(); 493 t || Row.pop(); 594 t || If.pop(); [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/toolbar/ |
H A D | toolbar.js | 159 t || Column.pop(); 176 t || Image.pop(); 203 t || Text.pop(); 210 TabBuilder(e, t = null) { 231 Column.onHover((t => { 363 t || Column.pop(); 371 t || Divider.pop(); 378 t || Column.pop(); 397 t || Tabs.pop(); 443 t || ForEach.pop(); [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/tabtitlebar/ |
H A D | tabtitlebar.js | 18 n = r < 3 ? t : null === i ? i = Object.getOwnPropertyDescriptor(t, o) : i; 137 t || Flex.pop(); 145 t || Stack.pop(); 153 t || Stack.pop(); 177 t || List.pop(); 267 t || If.pop(); 410 t || Row.pop(); 511 t || If.pop(); 661 t || Row.pop(); 769 t || If.pop(); [all …]
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/common/ |
H A D | udmf_radar_reporter.cpp | 27 .t = HISYSEVENT_STRING, in ReportNormal() 31 .t = HISYSEVENT_STRING, in ReportNormal() 35 .t = HISYSEVENT_INT32, in ReportNormal() 39 .t = HISYSEVENT_INT32, in ReportNormal() 43 .t = HISYSEVENT_INT32, in ReportNormal() 47 .t = HISYSEVENT_INT32, in ReportNormal() 73 .t = HISYSEVENT_INT32, in ReportFail() 77 .t = HISYSEVENT_INT32, in ReportFail() 81 .t = HISYSEVENT_INT32, in ReportFail() 85 .t = HISYSEVENT_INT32, in ReportFail() [all …]
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/ |
H A D | image_dfx.cpp | 136 { .name = "PVERSIONID", .t = HISYSEVENT_STRING, in ReportDecodeInfo() 138 { .name = "APPLICATION_NAME", .t = HISYSEVENT_STRING, in ReportDecodeInfo() 140 { .name = "ROTATE", .t = HISYSEVENT_FLOAT, .v = { .f = options.rotate } }, in ReportDecodeInfo() 141 { .name = "EDITABLE", .t = HISYSEVENT_BOOL, .v = { .b = options.editable } }, in ReportDecodeInfo() 152 { .name = "INDEX", .t = HISYSEVENT_UINT32, .v = { .ui32 = options.index } }, in ReportDecodeInfo() 153 { .name = "FIT_DENSITY", .t = HISYSEVENT_INT32, .v = { .i32 = options.fitDensity } }, in ReportDecodeInfo() 157 { .name = "MEMORY_TYPE", .t = HISYSEVENT_INT32, .v = { .i32 = options.memoryType } }, in ReportDecodeInfo() 158 { .name = "IMAGE_SOURCE", .t = HISYSEVENT_STRING, in ReportDecodeInfo() 162 { .name = "HARD_DECODE", .t = HISYSEVENT_BOOL, .v = { .b = options.isHardDecode } }, in ReportDecodeInfo() 163 { .name = "HARD_DECODE_ERROR", .t = HISYSEVENT_STRING, in ReportDecodeInfo() [all …]
|
/ohos5.0/foundation/arkui/advanced_ui_component/interface/editabletitlebar/ |
H A D | editabletitlebar.js | 81 t || Flex.pop(); 96 t || Row.pop(); 133 t || If.pop(); 145 t || Column.pop(); 173 t || Text.pop(); 236 t || Column.pop(); 242 t || Row.pop(); 257 item: t 267 t || If.pop(); 409 t || Row.pop(); [all …]
|
/ohos5.0/base/hiviewdfx/hisysevent/test/moduletest/common/ |
H A D | hisysevent_c_test.cpp | 51 .t = HISYSEVENT_BOOL, 57 .t = HISYSEVENT_BOOL, 63 .t = HISYSEVENT_INT8, 69 .t = HISYSEVENT_INT8, 75 .t = HISYSEVENT_UINT8, 81 .t = HISYSEVENT_UINT8, 87 .t = HISYSEVENT_INT16, 93 .t = HISYSEVENT_INT16, 111 .t = HISYSEVENT_INT32, 117 .t = HISYSEVENT_INT32, [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/ |
H A D | locking.h | 29 …rfaceLock(LockType type, const CORE_NS::IInterface* t) : type_(type), p_(interface_cast<ILockable>… in META_BEGIN_NAMESPACE() 39 explicit InterfaceLock(LockType type, const CORE_NS::IInterface& t) : InterfaceLock(type, &t) {} in META_BEGIN_NAMESPACE() 41 …cit InterfaceLock(LockType type, const BASE_NS::shared_ptr<Type>& t) : InterfaceLock(type, t.get()) in META_BEGIN_NAMESPACE() 85 explicit InterfaceUniqueLock(const CORE_NS::IInterface* t) : p_(interface_cast<ILockable>(t)) in META_NO_COPY() 91 explicit InterfaceUniqueLock(const CORE_NS::IInterface& t) : InterfaceUniqueLock(&t) {} in InterfaceUniqueLock() argument 93 explicit InterfaceUniqueLock(const BASE_NS::shared_ptr<Type>& t) : InterfaceUniqueLock(t.get()) in InterfaceUniqueLock() argument 131 explicit InterfaceSharedLock(const CORE_NS::IInterface* t) : p_(interface_cast<ILockable>(t)) in META_NO_COPY() 137 explicit InterfaceSharedLock(const CORE_NS::IInterface& t) : InterfaceSharedLock(&t) {} in InterfaceSharedLock() argument 139 explicit InterfaceSharedLock(const BASE_NS::shared_ptr<Type>& t) : InterfaceSharedLock(t.get()) in InterfaceSharedLock() argument
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/ |
H A D | select.rs | 276 ( { random = $bool:expr; $($t:tt)* } ) => { 277 $crate::select!({ random = $bool; $($t)*; panic!("select!: All the branches failed.") }) 280 ( { random = $bool:expr; $($t:tt)* } else => $else:expr $(,)?) => { 281 $crate::select!({ random = $bool; $($t)*; $else }) 300 …( { random = $bool:expr; ( $s:expr, $($_n:tt)* ) $($t:tt)* } $p:pat = $f:expr => $h:block $($r:tt)… 317 …$crate::select!({ random = $bool; ( $s + 1, $($_n)*_ ) $($t)* ($s, $($_n)*) $p = $f, if $c => $h, … 322 ( { random = $bool:expr; ( $s:expr, $($_n:tt)* ) $($t:tt)* } $p:pat = $f:expr => $h:expr ) => { 327 (biased; $p:pat = $($t:tt)* ) => { 328 $crate::select!({ random = false; ( 0,) } $p = $($t)*) 331 ( $p:pat = $($t:tt)* ) => { [all …]
|