Searched refs:strItem (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/base/startup/appspawn/lite/ |
H A D | appspawn_message.c | 63 static enum OHOSLiteErrorCode ReadStringItem(cJSON *strItem, char **buf, size_t maxLen, size_t minL… in ReadStringItem() argument 65 if (strItem == NULL || !cJSON_IsString(strItem)) { in ReadStringItem() 69 char *strPtr = cJSON_GetStringValue(strItem); in ReadStringItem() 95 static double ReadNumberItem(cJSON *strItem) in ReadNumberItem() argument 97 if (strItem == NULL || !cJSON_IsNumber(strItem)) { in ReadNumberItem() 101 return cJSON_GetNumberValue(strItem); in ReadNumberItem()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/indexer/ |
H A D | indexer_component.cpp | 72 std::u16string strItem; in BuildIndexerAlphabet() local 82 strItem += alphabet[countAlphabet]; in BuildIndexerAlphabet() 83 strItem += INDEXER_STR_SPACE; in BuildIndexerAlphabet() 86 sectionsLocal_.emplace_back(strItem); in BuildIndexerAlphabet() 90 strItem += alphabet[countAlphabet]; in BuildIndexerAlphabet() 91 strItem += INDEXER_STR_SPACE; in BuildIndexerAlphabet() 94 sectionsLocal_.emplace_back(strItem); in BuildIndexerAlphabet() 100 strItem.clear(); in BuildIndexerAlphabet() 258 std::u16string strItem = labelLocal_[i]; in BuildIndexerItems() local 262 BuildTextItem(sectionsLocal_[i], strItem); in BuildIndexerItems() [all …]
|
/ohos5.0/base/hiviewdfx/hiview/base/utility/ |
H A D | cjson_util.cpp | 86 cJSON* strItem = cJSON_GetArrayItem(strArray, index); in GetStringArray() local 87 if (strItem == nullptr || !cJSON_IsString(strItem)) { in GetStringArray() 90 dest.emplace_back(strItem->valuestring); in GetStringArray()
|
/ohos5.0/foundation/resourceschedule/device_standby/utils/policy/src/ |
H A D | json_utils.cpp | 184 for (const auto &strItem : strArrayValue) { in GetStrArrFromJsonValue() local 185 if (!strItem.is_string()) { in GetStrArrFromJsonValue() 188 strArray.emplace_back(strItem.get<std::string>()); in GetStrArrFromJsonValue()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/indexer/ |
H A D | indexer_component.cpp | 153 std::u16string strItem = labelLocal_[i]; in BuildIndexerItems() local 154 BuildTextItem(sectionsLocal_[i], strItem); in BuildIndexerItems()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/app/ability_delegator/ |
H A D | js_ability_delegator.cpp | 1447 std::string strItem; in ParseArrayStringValue() local 1450 if (!ConvertFromJsValue(env, jsValue, strItem)) { in ParseArrayStringValue() 1454 vector.emplace_back(std::move(strItem)); in ParseArrayStringValue()
|
/ohos5.0/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/ |
H A D | js_scene_utils.cpp | 857 std::string strItem; in ParseArrayStringValue() local 860 if (!ConvertFromJsValue(env, jsValue, strItem)) { in ParseArrayStringValue() 864 vector.emplace_back(std::move(strItem)); in ParseArrayStringValue()
|