Searched refs:tempArray (Results 1 – 4 of 4) sorted by relevance
/ohos5.0/docs/zh-cn/application-dev/napi/ |
H A D | rawfile-guidelines.md | 122 std::vector<std::string> tempArray; 125 tempArray.emplace_back(filename); 130 for (size_t i = 0; i < tempArray.size(); i++) { 132 napi_create_string_utf8(env, tempArray[i].c_str(), NAPI_AUTO_LENGTH, &jsString);
|
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/struct/ |
H A D | js_struct.ts | 441 let tempArray: TreeNode<K, V>[] = []; 442 tempArray = map.recordByMinToMax(); 444 this.addNode(tempArray[i].key, tempArray[i].value); 726 let tempArray: TreeNode<K, V>[] = members.keyValueArray; 728 this.memberArray.push(new Pair(tempArray[i].key, tempArray[i].value));
|
/ohos5.0/docs/en/application-dev/napi/ |
H A D | rawfile-guidelines.md | 123 std::vector<std::string> tempArray; 126 tempArray.emplace_back(filename); 131 for (size_t i = 0; i < tempArray.size(); i++) { 133 napi_create_string_utf8(env, tempArray[i].c_str(), NAPI_AUTO_LENGTH, &jsString);
|
/ohos5.0/foundation/communication/wifi/wifi/utils/src/ |
H A D | wifi_common_util.cpp | 188 char tempArray[strMacLen] = { 0 }; in MacStrToArray() local 189 errno_t ret = memcpy_s(tempArray, strMacLen, strMac.c_str(), strMac.size() + 1); in MacStrToArray() 197 char *p = strtok_s(tempArray, ":", &ptr); in MacStrToArray()
|