Home
last modified time | relevance | path

Searched refs:newType (Results 1 – 3 of 3) sorted by relevance

/base/telephony/sms_mms/utils/
Dtext_coder.cpp643 uint8_t newType = MSG_DEFAULT_CHAR; in GetLangType() local
652 newType = static_cast<uint8_t>(itExt->second); in GetLangType()
653 if (newType >= currType) { in GetLangType()
655 currType = isTurkisk ? MSG_TURKISH_CHAR : newType; in GetLangType()
/base/notification/distributed_notification_service/frameworks/js/napi/include/
Dcommon.h217 … const napi_ref &callbackIn, const int32_t &errorCode, const napi_value &result, bool newType);
238 … const napi_deferred &deferred, const int32_t &errorCode, const napi_value &result, bool newType);
1555 static napi_value CreateErrorValue(napi_env env, int32_t errCode, bool newType);
/base/notification/distributed_notification_service/frameworks/js/napi/src/
Dcommon.cpp74 napi_value Common::CreateErrorValue(napi_env env, int32_t errCode, bool newType) in CreateErrorValue() argument
78 if (errCode == ERR_OK && newType) { in CreateErrorValue()
140 …&env, const napi_ref &callbackIn, const int32_t &errorCode, const napi_value &result, bool newType) in SetCallback() argument
150 results[PARAM0] = CreateErrorValue(env, errorCode, newType); in SetCallback()
171 const napi_deferred &deferred, const int32_t &errorCode, const napi_value &result, bool newType) in SetPromise() argument
177 napi_reject_deferred(env, deferred, CreateErrorValue(env, errorCode, newType)); in SetPromise()