Home
last modified time | relevance | path

Searched refs:targetType (Results 1 – 13 of 13) sorted by relevance

/base/hiviewdfx/hichecker/interfaces/js/kits/napi/include/
Dnapi_hichecker.h33 static bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType);
/base/hiviewdfx/hichecker/interfaces/js/kits/napi/src/
Dnapi_hichecker.cpp184 bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType) in MatchValueType() argument
188 return valueType == targetType; in MatchValueType()
/base/customization/config_policy/interfaces/kits/js/include/
Dconfig_policy_napi.h54 static bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType);
/base/customization/enterprise_device_management/interfaces/kits/common/include/
Dnapi_edm_common.h59 bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType);
/base/telephony/call_manager/frameworks/js/napi/include/
Dnapi_call_manager_utils.h54 static bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType);
/base/telephony/call_manager/frameworks/js/napi/src/
Dnapi_call_manager_utils.cpp114 bool NapiCallManagerUtils::MatchValueType(napi_env env, napi_value value, napi_valuetype targetType) in MatchValueType() argument
118 return valueType == targetType; in MatchValueType()
/base/customization/enterprise_device_management/interfaces/kits/common/src/
Dnapi_edm_common.cpp29 bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType) in MatchValueType() argument
33 return valueType == targetType; in MatchValueType()
/base/global/i18n_lite/frameworks/i18n/src/
Ddata_resource.cpp102 uint32_t targetType = loaded[index]; in GetString() local
103 if (targetType == DataResourceType::RESOURCE_TYPE_END) { in GetString()
106 switch (targetType) { in GetString()
/base/telephony/core_service/frameworks/js/napi/
Dnapi_util.h36 static bool MatchValueType(napi_env env, napi_value value, napi_valuetype targetType);
Dnapi_util.cpp124 bool NapiUtil::MatchValueType(napi_env env, napi_value value, napi_valuetype targetType) in MatchValueType() argument
128 return valueType == targetType; in MatchValueType()
/base/customization/config_policy/interfaces/kits/js/src/
Dconfig_policy_napi.cpp165 bool ConfigPolicyNapi::MatchValueType(napi_env env, napi_value value, napi_valuetype targetType) in MatchValueType() argument
169 return valueType == targetType; in MatchValueType()
/base/security/device_auth/services/group_manager/inc/
Dgroup_operation_common.h40 int32_t AssertGroupTypeMatch(int32_t inputType, int32_t targetType);
/base/security/device_auth/services/group_manager/src/group_operation/
Dgroup_operation_common.c1195 int32_t AssertGroupTypeMatch(int32_t inputType, int32_t targetType) in AssertGroupTypeMatch() argument
1197 if (inputType != targetType) { in AssertGroupTypeMatch()
1198 LOGE("Invalid group type! [InputType]: %d, [TargetType]: %d", inputType, targetType); in AssertGroupTypeMatch()