/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/resource/ |
D | decimalPlurals.txt | 9 bs "", "v = 0 o f % 10 = 1 a f % 100 ! 11", "", "v = 0 o f % 10 = 2<4 a f % 100 ! 12<14", "", "" 10 ca "", "v = 0", "", "", "", "" 11 cs "", "v = 0", "", "v = 0", "v ! 0", "" 13 de "", "v = 0", "", "", "", "" 15 en "", "v = 0", "", "", "", "" 17 et "", "v = 0", "", "", "", "" 20 fi "", "v = 0", "", "", "", "" 22 gl "", "v = 0", "", "", "", "" 25 hr "", "v = 0 o f % 10 = 1 a f % 100 ! 11", "", "v = 0 o f % 10 = 2<4 a f % 100 ! 12<14", "", "" 28 it "", "v = 0", "", "", "", "" [all …]
|
/base/security/appverify/interfaces/innerkits/appverify_lite/include/ |
D | app_common.h | 35 #define P_NULL_RETURN_WTTH_LOG(v) \ argument 37 if ((v) == NULL) { \ 38 LOG_ERROR(#v" is null"); \ 44 #define P_NULL_RETURN_RET_WTTH_LOG(v, ret) \ argument 46 if ((v) == NULL) { \ 47 LOG_ERROR(#v" is null"); \ 53 #define P_NULL_RETURN_NULL_WTTH_LOG(v) \ argument 55 if ((v) == NULL) { \ 56 LOG_ERROR(#v" is null"); \ 62 #define P_ERR_RETURN_WTTH_LOG(v) \ argument [all …]
|
/base/hiviewdfx/hievent_lite/frameworks/ |
D | hiview_event.c | 33 #define GET_UINT32_BYTE1(v) (uint8)(((uint32)(v)) & 0x000000FF) argument 34 #define GET_UINT32_BYTE2(v) (uint8)((((uint32)(v)) & 0x0000FF00) >> 8) argument 35 #define GET_UINT32_BYTE3(v) (uint8)((((uint32)(v)) & 0x00FF0000) >> 16) argument 36 #define GET_UINT32_BYTE4(v) (uint8)((((uint32)(v)) & 0xFF000000) >> 24) argument 38 static uint8 HiEventEncode(uint8 k, int32 v, uint8 last, uint8 *encodeOut); 129 static uint8 HiEventEncode(uint8 k, int32 v, uint8 last, uint8 *encodeOut) in HiEventEncode() argument 138 if (v >= 0 && v <= 0xFF) { in HiEventEncode() 140 } else if (v >= 0 && v <= 0xFFFF) { in HiEventEncode() 142 } else if (v >= 0 && v <= 0x00FFFFFF) { in HiEventEncode() 151 *(encodeOut + ENCODE_VALUE_LEN1) = GET_UINT32_BYTE1(v); in HiEventEncode() [all …]
|
/base/update/updater/services/script/script_instruction/ |
D | script_basicinstruction.cpp | 58 int32_t v; in Execute() local 59 ret = context.GetParam(i, v); in Execute() 61 str.append(to_string(v)); in Execute() 65 float v; in Execute() local 66 ret = context.GetParam(i, v); in Execute() 68 str.append(to_string(v)); in Execute() 72 std::string v; in Execute() local 73 ret = context.GetParam(i, v); in Execute() 75 str.append(v); in Execute() 108 int32_t v; in Execute() local [all …]
|
/base/hiviewdfx/hisysevent/test/moduletest/common/ |
D | hisysevent_c_test.cpp | 52 .v = { .b = false }, 58 .v = { .b = true }, 64 .v = { .i8 = SCHAR_MIN }, 70 .v = { .i8 = SCHAR_MAX }, 76 .v = { .ui8 = 0 }, 82 .v = { .ui8 = UCHAR_MAX }, 88 .v = { .i16 = SHRT_MIN }, 94 .v = { .i16 = SHRT_MAX }, 100 .v = { .ui16 = 0 }, 106 .v = { .ui16 = USHRT_MAX }, [all …]
|
D | hisysevent_native_test.cpp | 620 bool v = true; variable 625 k, v, k, v, k, v, k, v, k, v, k, v, k, v, k, v); 645 bool v = true; variable 650 k, v, k, v, k, v, k, v, k, v, k, v, k, v, k, v, k, v);
|
/base/hiviewdfx/hievent_lite/interfaces/native/innerkits/ |
D | hiview_event.h | 187 #define HIEVENT_FAULT_REPORT(id, k, v) HiEventPrintf(HIEVENT_FAULT, (id), (k), (v)) argument 189 #define HIEVENT_FAULT_REPORT(id, k, v) argument 193 #define HIEVENT_UE_REPORT(id, k, v) HiEventPrintf(HIEVENT_UE, (id), (k), (v)) argument 195 #define HIEVENT_UE_REPORT(id, k, v) argument 199 #define HIEVENT_STAT_REPORT(id, k, v) HiEventPrintf(HIEVENT_STAT, (id), (k), (v)) argument 201 #define HIEVENT_STAT_REPORT(id, k, v) argument 213 #define HIEVENT_PUT_INT_VALUE(pEvent, k, v) HiEventPutInteger(pEvent, k, v) argument 217 #define HIEVENT_PUT_INT_VALUE(pEvent, k, v) argument
|
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/ |
D | hisysevent.cpp | 235 AppendData<bool>(eventBase, param.name, param.v.b); in AppendBoolParam() 240 AppendData<int8_t>(eventBase, param.name, param.v.i8); in AppendInt8Param() 245 AppendData<uint8_t>(eventBase, param.name, param.v.ui8); in AppendUint8Param() 250 AppendData<int16_t>(eventBase, param.name, param.v.i16); in AppendInt16Param() 255 AppendData<uint16_t>(eventBase, param.name, param.v.ui16); in AppendUint16Param() 260 AppendData<int32_t>(eventBase, param.name, param.v.i32); in AppendInt32Param() 265 AppendData<uint32_t>(eventBase, param.name, param.v.ui32); in AppendUint32Param() 270 AppendData<int64_t>(eventBase, param.name, param.v.i64); in AppendInt64Param() 275 AppendData<uint64_t>(eventBase, param.name, param.v.ui64); in AppendUint64Param() 280 AppendData<float>(eventBase, param.name, param.v.f); in AppendFloatParam() [all …]
|
/base/usb/usb_manager/services/native/src/ |
D | usb_right_manager.cpp | 71 auto v = itMap->second; in AddDeviceRight() local 72 auto itVevtor = std::find(v.begin(), v.end(), bundleName); in AddDeviceRight() 73 if (itVevtor != v.end()) { in AddDeviceRight() 91 auto &v = it->second; in RemoveDeviceRight() local 92 auto itVevtor = std::find(v.begin(), v.end(), bundleName); in RemoveDeviceRight() 93 if (itVevtor != v.end()) { in RemoveDeviceRight()
|
/base/update/updater/services/script/script_interpreter/ |
D | script_statement.cpp | 185 UScriptValuePtr v = condition_->Execute(interpreter, context); in Execute() local 186 if (v == nullptr || v->GetValueType() == UScriptValue::VALUE_TYPE_ERROR) { in Execute() 188 UScriptValue::ScriptToString(v).c_str()); in Execute() 193 if (!v->IsTrue()) { in Execute() 222 UScriptValuePtr v = condition_->Execute(interpreter, context); in Execute() local 223 if (v == nullptr || v->GetValueType() == UScriptValue::VALUE_TYPE_ERROR) { in Execute() 225 UScriptValue::ScriptToString(v).c_str()); in Execute() 230 if (!v->IsTrue()) { in Execute() 254 UScriptValuePtr v = expression_->Execute(interpreter, context); in Execute() local 255 if (v == nullptr || v->GetValueType() == UScriptValue::VALUE_TYPE_ERROR) { in Execute() [all …]
|
D | script_expression.h | 76 … explicit IntegerExpression(int v) : UScriptExpression(UScriptExpression::EXPRESSION_TYPE_INTERGER) in IntegerExpression() argument 78 value_ = v; in IntegerExpression() 95 explicit FloatExpression(float v) : UScriptExpression(UScriptExpression::EXPRESSION_TYPE_FLOAT) in FloatExpression() argument 97 value_ = v; in FloatExpression()
|
/base/startup/init/interfaces/innerkits/service_watcher/ |
D | service_watcher.c | 31 uint32_t v = 0; in ServiceStateChange() local 32 int ret = StringToUint(value, &v); in ServiceStateChange() 34 ServiceStatus status = (ServiceStatus)v; in ServiceStateChange()
|
/base/telephony/core_service/services/network_search/test/ |
D | test.cpp | 233 for (const auto &v : signals) { in TestGetSignalInfoList() local 234 type = v->GetNetworkType(); in TestGetSignalInfoList() 238 GsmSignalInformation *gsm = reinterpret_cast<GsmSignalInformation *>(v.GetRefPtr()); in TestGetSignalInfoList() 241 CdmaSignalInformation *cdma = reinterpret_cast<CdmaSignalInformation *>(v.GetRefPtr()); in TestGetSignalInfoList() 244 LteSignalInformation *lte = reinterpret_cast<LteSignalInformation *>(v.GetRefPtr()); in TestGetSignalInfoList() 247 … WcdmaSignalInformation *wcdma = reinterpret_cast<WcdmaSignalInformation *>(v.GetRefPtr()); in TestGetSignalInfoList() 250 … TdScdmaSignalInformation *tdScdma = reinterpret_cast<TdScdmaSignalInformation *>(v.GetRefPtr()); in TestGetSignalInfoList() 253 NrSignalInformation *nr = reinterpret_cast<NrSignalInformation *>(v.GetRefPtr()); in TestGetSignalInfoList() 580 for (const auto &v : cellList) { in TestGetCellInfoList() local 581 type = v->GetNetworkType(); in TestGetCellInfoList() [all …]
|
/base/update/updater/services/script/threadpool/ |
D | threadpool.cpp | 118 for (int v = tId; v < workSize; v += threadNumber_) { in AddNewTask() local 119 task.processor(v); in AddNewTask()
|
/base/telephony/sms_mms/services/ |
D | sms_receive_handler.cpp | 110 for (const auto &v : dbIndexers) { in CombineMessagePart() local 112 string pdu = StringUtils::StringToHex(v.GetPdu()); in CombineMessagePart() 113 …if ((v.GetMsgSeqId() - PDU_POS_OFFSET >= MAX_SEGMENT_NUM) || (v.GetMsgSeqId() - PDU_POS_OFFSET < 0… in CombineMessagePart() 117 pdus->at(v.GetMsgSeqId() - PDU_POS_OFFSET) = pdu; in CombineMessagePart() 118 if (v.GetPdu().size() == 0) { in CombineMessagePart()
|
/base/update/updater/test/unittest/script/script_instruction/ |
D | basic_instruction_unittest.cpp | 61 static int32_t AddInputParamImpl(UScriptInstructionContext &ctx, const std::string &v) in AddInputParamImpl() argument 63 return ctx.AddInputParam(std::make_shared<StringValue>(v)); in AddInputParamImpl() 66 static int32_t AddInputParamImpl(UScriptInstructionContext &ctx, T v) in AddInputParamImpl() argument 68 return ctx.AddInputParam(std::make_shared<FloatValue>(v)); in AddInputParamImpl() 70 static int32_t AddInputParamImpl(UScriptInstructionContext &ctx, int32_t v) in AddInputParamImpl() argument 72 return ctx.AddInputParam(std::make_shared<IntegerValue>(v)); in AddInputParamImpl()
|
/base/startup/init/test/moduletest/ |
D | param_test_cmds.c | 314 int v = CalcValue(buff + strlen("Pss:")); in BShellParamCmdMemGet() local 316 printf("Pss: %d kb\n", v); in BShellParamCmdMemGet() 318 value += v; in BShellParamCmdMemGet() 320 int v = CalcValue(buff + strlen("SwapPss:")); in BShellParamCmdMemGet() local 322 printf("SwapPss: %d kb\n", v); in BShellParamCmdMemGet() 324 value += v; in BShellParamCmdMemGet()
|
/base/telephony/state_registry/frameworks/native/observer/src/ |
D | telephony_observer_proxy.cpp | 96 for (const auto &v : vec) { in OnSignalInfoUpdated() local 97 v->Marshalling(dataParcel); in OnSignalInfoUpdated() 135 for (const auto &v : vec) { in OnCellInfoUpdated() local 136 v->Marshalling(dataParcel); in OnCellInfoUpdated()
|
/base/hiviewdfx/hilog_lite/frameworks/mini/ |
D | hiview_log_limit.c | 102 void SetLimitThreshold(uint8 module, uint8 v) in SetLimitThreshold() argument 109 pRule->maxNum = v; in SetLimitThreshold()
|
D | hiview_log_limit.h | 38 void SetLimitThreshold(uint8 module, uint8 v);
|
/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/include/ |
D | write_controller.h | 42 V v; in Get() local 44 return v; in Get()
|
/base/global/system_resources/systemres/main/resources/base/media/ |
D | ohos_play.svg | 1 …{fill:#1a1a1a;}</style></defs><title>ic</title><path class="cls-1" d="M36,63v-30a4,4,0,0,1,6-3.47l…
|
/base/update/updater/resources/font/ |
D | README.md | 2 …滂迸斡舍梅啪翅屎跷砗酉釜痍半顾阅余郝搁嫣刍踯忸读敌锋胶佩隙蒲谙簑轾aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzzAABBCCDDEEFFG…
|
/base/hiviewdfx/hilog/services/hilogtool/ |
D | log_display.cpp | 145 static void SortByLens(vector<T>& v, const T* list, int num) in SortByLens() argument 147 v.insert(v.begin(), list, list + num); in SortByLens() 148 std::sort(v.begin(), v.end(), [](T& a, T& b) { in SortByLens()
|
/base/telephony/core_service/frameworks/native/src/ |
D | telephony_state_registry_proxy.cpp | 178 for (const auto &v : vec) { in UpdateSignalInfo() local 179 v->Marshalling(in); in UpdateSignalInfo() 213 for (const auto &v : vec) { in UpdateCellInfo() local 214 v->Marshalling(in); in UpdateCellInfo()
|