/ohos5.0/docs/en/design/ux-design/ |
H A D | multimodal-instant-tip.md | 4 An instant tip is used to display lightweight feedback of the current operation or environment at t… 12 - Use an instant tip to ensure that your users can view certain information. 14  18 - Ensure that other operations on the UI are not affected by the instant tip. 20 - Set the instant tip to disappear automatically after a specified time. Ensure that the instant ti… 22 - Do not display more than one instant tip on the screen. A new instant tip can show only after any…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tip/ |
H A D | tip_element.cpp | 24 RefPtr<TipComponent> tip = AceType::DynamicCast<TipComponent>(component_); in PerformBuild() local 25 if (tip) { in PerformBuild() 27 UpdateChild(child, tip->GetChild()); in PerformBuild()
|
H A D | render_tip.cpp | 31 const RefPtr<TipComponent> tip = AceType::DynamicCast<TipComponent>(component); in Update() local 32 if (tip) { in Update() 33 bgColor_ = tip->GetBgColor(); in Update() 34 direction_ = tip->GetDirection(); in Update()
|
/ohos5.0/base/useriam/fingerprint_auth/services/src/ |
H A D | fingerprint_auth_executor_callback_hdi.cpp | 87 int32_t FingerprintAuthExecutorCallbackHdi::OnTip(int32_t tip, const std::vector<uint8_t> &extraInf… in OnTip() argument 89 IAM_LOGI("OnTip %{public}d", tip); in OnTip() 91 if (tip == FingerprintTipsCode::FINGERPRINT_AUTH_TIP_SINGLE_AUTH_RESULT) { in OnTip() 92 tip = UserAuth::USER_AUTH_TIP_SINGLE_AUTH_RESULT; in OnTip() 94 frameworkCallback_->OnAcquireInfo(tip, extraInfo); in OnTip()
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/fingerauth/ |
H A D | interface_i_executor_callback_fingerauth_v10.md | 21 | [OnTip](#ontip) ([in] int tip, [in] unsigned char[] extraInfo) | 定义操作过程信息反馈回调函数。 | 53 IExecutorCallback::OnTip ([in] int tip, [in] unsigned char[] extraInfo ) 63 | tip | 提示信息编码[FingerprintTipsCode](_hdf_fingerprint_auth_v10.md#fingerprinttipscode)。 |
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/pinauth/ |
H A D | interface_i_executor_callback_v20.md | 21 | [OnTip](#ontip) ([in] int tip, [in] unsigned char[] extraInfo) | 返回操作的过程提示信息。 | 112 IExecutorCallback::OnTip ([in] int tip, [in] unsigned char[] extraInfo ) 125 | tip | 提示码。 |
|
/ohos5.0/docs/zh-cn/application-dev/application-models/ |
H A D | photoEditorExtensionAbility.md | 251 const tip: string = `code:` + code + ` name:` + name + ` message:` + message; 252 hilog.error(0x0000, TAG, "startAbilityByType:", tip); 271 let tip: string; 273 tip = `Start error: ${JSON.stringify(err)}`; 276 tip = `Start success`; 385 const tip: string = `code:` + code + ` name:` + name + ` message:` + message; 386 hilog.error(0x0000, TAG, "startAbilityByType:", tip); 403 let tip: string; 405 tip = `Start error: ${JSON.stringify(err)}`; 408 tip = `Start success`;
|
/ohos5.0/base/useriam/face_auth/services/src/ |
H A D | face_auth_executor_callback_hdi.cpp | 86 int32_t FaceAuthExecutorCallbackHdi::OnTip(int32_t tip, const std::vector<uint8_t> &extraInfo) in OnTip() argument 88 IAM_LOGI("OnTip %{public}d", tip); in OnTip() 90 frameworkCallback_->OnAcquireInfo(tip, extraInfo); in OnTip()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ohos-arkui-advanced-ExceptionPrompt.md | 57 | tip | [ResourceStr](ts-types.md#resourcestr) | 否 | 指定当前异常提示的文字提示内容。<br />支持默认内置四种状态文字资源如下:<br />1… 92 tip: '异常提示', 130 tip: '异常提示!', 186 tip: '',
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/face_auth_v1_0/cpp_target/face_auth/v1_0/ |
H A D | executor_callback_proxy.cpp.txt | 57 int32_t OHOS::HDI::FaceAuth::V1_0::ExecutorCallbackProxy::OnTip(int32_t tip, const std::vector<uint… 59 return OHOS::HDI::FaceAuth::V1_0::ExecutorCallbackProxy::OnTip_(tip, extraInfo, Remote()); 103 int32_t OHOS::HDI::FaceAuth::V1_0::ExecutorCallbackProxy::OnTip_(int32_t tip, const std::vector<uin… 115 if (!executorCallbackData.WriteInt32(tip)) { 116 HDF_LOGE("%{public}s: write tip failed!", __func__);
|
H A D | executor_callback_stub.cpp.txt | 134 int32_t tip = 0; 135 if (!executorCallbackData.ReadInt32(tip)) { 136 HDF_LOGE("%{public}s: read tip failed!", __func__); 151 int32_t executorCallbackRet = impl->OnTip(tip, extraInfo);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/fingerprint_auth_v1_0/cpp_target/fingerprint_auth/v1_0/ |
H A D | executor_callback_proxy.cpp.txt | 57 int32_t OHOS::HDI::FingerprintAuth::V1_0::ExecutorCallbackProxy::OnTip(int32_t tip, 60 … return OHOS::HDI::FingerprintAuth::V1_0::ExecutorCallbackProxy::OnTip_(tip, extraInfo, Remote()); 104 int32_t OHOS::HDI::FingerprintAuth::V1_0::ExecutorCallbackProxy::OnTip_(int32_t tip, 116 if (!executorCallbackData.WriteInt32(tip)) { 117 HDF_LOGE("%{public}s: write tip failed!", __func__);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | container.cpp | 172 std::string tip("container not support, type:"); in Dump() local 173 tip.append(AceType::TypeName(this)); in Dump() 174 info.emplace_back(tip); in Dump()
|
/ohos5.0/drivers/interface/face_auth/v1_0/ |
H A D | IExecutorCallback.idl | 62 * @param tip Indicates tip code. See {@link FaceTipsCode}. 68 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/drivers/interface/fingerprint_auth/v1_0/ |
H A D | IExecutorCallback.idl | 62 * @param tip Indicates tip code, see {@link FingerprintTipsCode}. 68 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/face_auth_v1_0/foo/face_auth/v1_0/ |
H A D | IExecutorCallback.idl | 62 * @param tip Indicates tip code. See {@link FaceTipsCode}. 68 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/face_auth_v1_1/foo/face_auth/v1_0/ |
H A D | IExecutorCallback.idl | 62 * @param tip Indicates tip code. See {@link FaceTipsCode}. 68 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/fingerprint_auth_v1_0/foo/fingerprint_auth/v1_0/ |
H A D | IExecutorCallback.idl | 62 * @param tip Indicates tip code, see {@link FingerprintTipsCode}. 68 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/fingerprint_auth_v1_1/foo/fingerprint_auth/v1_0/ |
H A D | IExecutorCallback.idl | 62 * @param tip Indicates tip code, see {@link FingerprintTipsCode}. 68 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/drivers/peripheral/face_auth/test/fuzztest/face_auth/faceauthallinoneexecutor_fuzzer/ |
H A D | all_in_one_executor_fuzzer.cpp | 42 …DummyIExecutorCallback(int32_t result, int32_t tip, int32_t message) : result_(result), tip_(tip),… in DummyIExecutorCallback() argument 52 int32_t OnTip(int32_t tip, const std::vector<uint8_t> &extraInfo) override in OnTip() argument 54 IAM_LOGI("tip %{public}d extraInfo len %{public}zu", tip, extraInfo.size()); in OnTip()
|
/ohos5.0/drivers/peripheral/fingerprint_auth/test/fuzztest/fingerprint_auth/fingerprintauthallinoneexecutor_fuzzer/ |
H A D | all_in_one_executor_fuzzer.cpp | 42 …DummyIExecutorCallback(int32_t result, int32_t tip, int32_t message) : result_(result), tip_(tip),… in DummyIExecutorCallback() argument 52 int32_t OnTip(int32_t tip, const std::vector<uint8_t> &extraInfo) override in OnTip() argument 54 IAM_LOGI("tip %{public}d extraInfo len %{public}zu", tip, extraInfo.size()); in OnTip()
|
/ohos5.0/drivers/interface/face_auth/v2_0/ |
H A D | IExecutorCallback.idl | 65 * @param tip Indicates tip code. See {@link FaceTipsCode}. 74 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/drivers/interface/fingerprint_auth/v2_0/ |
H A D | IExecutorCallback.idl | 65 * @param tip Indicates tip code. See {@link FaceTipsCode}. 74 OnTip([in] int tip, [in] unsigned char[] extraInfo);
|
/ohos5.0/docs/en/application-dev/application-models/ |
H A D | photoEditorExtensionAbility.md | 251 const tip: string = `code:` + code + ` name:` + name + ` message:` + message; 252 hilog.error(0x0000, TAG, "startAbilityByType:", tip); 271 let tip: string; 273 tip = `Start error: ${JSON.stringify(err)}`; 276 tip = `Start success`; 385 const tip: string = `code:` + code + ` name:` + name + ` message:` + message; 386 hilog.error(0x0000, TAG, "startAbilityByType:", tip); 403 let tip: string; 405 tip = `Start error: ${JSON.stringify(err)}`; 408 tip = `Start success`;
|
/ohos5.0/base/useriam/user_auth_framework/services/context/src/ |
H A D | context_callback_impl.cpp | 61 void ContextCallbackImpl::ProcessAuthResult(int32_t tip, const std::vector<uint8_t> &extraInfo) in ProcessAuthResult() argument 63 if (tip != USER_AUTH_TIP_SINGLE_AUTH_RESULT) { in ProcessAuthResult() 93 … IAM_LOGI("fingerprint single auth result, tip: %{public}d, result: %{public}d", tip, authResult); in ProcessAuthResult()
|