/developtools/profiler/host/smartperf/client/client_command/test/unittest/ |
D | sp_utils_test.cpp | 48 std::set<std::string> keys; variable 50 keys.insert("N"); 51 keys.insert("fl"); 52 keys.insert("ftl"); 58 bool ret = SPUtils::IntegerValueVerification(keys, mapInfo, errorInfo); 66 std::set<std::string> keys; variable 68 keys.insert("N"); 69 keys.insert("fl"); 70 keys.insert("ftl"); 76 bool ret = SPUtils::IntegerValueVerification(keys, mapInfo, errorInfo); [all …]
|
D | smartperf_main_test.cpp | 65 std::set<std::string> keys; in CheckCMDParam() local 82 keys.insert("editor"); in CheckCMDParam() 83 keys.insert("profilerfps"); in CheckCMDParam() 84 keys.insert("start"); in CheckCMDParam() 85 keys.insert("stop"); in CheckCMDParam() 86 keys.insert("screen"); in CheckCMDParam() 89 keys.insert(a.first.substr(1)); // No prefix required '-' in CheckCMDParam() 92 auto itr = keys.find("f1"); in CheckCMDParam() 93 if (keys.end() != itr) { in CheckCMDParam() 94 keys.erase(itr); in CheckCMDParam() [all …]
|
/developtools/profiler/host/smartperf/client/client_command/ |
D | smartperf_main.cpp | 53 std::set<std::string> keys; // Includes three parts "SP_daemon" CommandType and CommandHelp in g_checkCmdParam() local 69 keys.insert("editor"); in g_checkCmdParam() 70 keys.insert("profilerfps"); in g_checkCmdParam() 71 keys.insert("start"); in g_checkCmdParam() 72 keys.insert("stop"); in g_checkCmdParam() 73 keys.insert("screen"); in g_checkCmdParam() 74 keys.insert("sections"); in g_checkCmdParam() 76 keys.insert(a.first.substr(1)); // No prefix required '-' in g_checkCmdParam() 80 auto itr = keys.find("f1"); in g_checkCmdParam() 81 if (keys.end() != itr) { in g_checkCmdParam() [all …]
|
D | sp_utils.cpp | 399 bool SPUtils::VeriyParameter(std::set<std::string> &keys, std::string param, std::string &errorInfo) in VeriyParameter() argument 435 if (!VeriyKey(keys, mapInfo, errorInfo)) { in VeriyParameter() 445 if (!IntegerValueVerification(keys, mapInfo, errorInfo)) { in VeriyParameter() 452 bool SPUtils::VeriyKey(std::set<std::string> &keys, std::map<std::string, std::string> &mapInfo, in VeriyKey() argument 456 if (keys.end() == keys.find(it->first)) { in VeriyKey() 512 bool SPUtils::IntegerValueVerification(std::set<std::string> &keys, std::map<std::string, std::stri… in IntegerValueVerification() argument 517 if (keys.end() != keys.find("N")) { in IntegerValueVerification() 520 if (keys.end() != keys.find("fl")) { in IntegerValueVerification() 523 if (keys.end() != keys.find("ftl")) { in IntegerValueVerification()
|
/developtools/ace_js2bundle/ace-loader/src/lite/ |
D | lite-customize.js | 59 const keys = Object.keys(rules); 60 for (let i = 0; i < keys.length; i++) { 61 const key = keys[i]; 67 const children = Object.keys(value);
|
D | lite-transform-style.js | 45 const keys = Object.keys(style); 46 for (const key of keys) { 59 if (style != null && keys.length !== 0) { 60 if (Object.keys(idSelectors).length !== 0) { 63 if (Object.keys(classSelectors).length !== 0) { 77 for (const key of Object.keys(obj)) { 80 for (const styleKey of Object.keys(styleValue)) { 198 for (const key of Object.keys(obj)) {
|
D | lite-transform-template.js | 59 if (Object.keys(node.attr).length !== 0) { 189 for (const key of Object.keys(node)) { 232 for (const key of Object.keys(props)) { 294 for (const key of Object.keys(props)) { 318 for (const key of Object.keys(props)) { 434 res = `i18ns[${Object.keys(i18nMapping).length - 1}]`; 473 `i18ns[${Object.keys(i18nMapping).length - 1}]`, 482 res = `i18ns[${Object.keys(i18nMapping).length - 1}]`; 499 const cachedI18nExpressions = Object.keys(i18nMapping);
|
/developtools/ace_js2bundle/ace-loader/plugin/templater/ |
D | lite_component_map.js | 336 const keys = Object.keys(liteNativeTag); 337 for (let i = 0; i < keys.length; i++) { 338 const key = keys[i]; 365 const keys = Object.keys(source); 366 for (let i = 0; i < keys.length; i++) { 367 const key = keys[i];
|
/developtools/hdc/hdc_rust/src/common/ |
D | jdwp.rs | 80 let keys = map.keys(); in send_fd_to_target() localVariable 81 for k in keys { in send_fd_to_target() 132 let keys = map.keys(); in get_process_list() localVariable 133 for key in keys { in get_process_list() 145 let keys = map.keys(); in get_process_list_with_pkg_name() localVariable 146 for key in keys { in get_process_list_with_pkg_name() 249 let keys = node_map_value.keys(); in start_data_looper() localVariable 250 for k in keys { in start_data_looper()
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/ |
D | TabPaneSdkCounter.ts | 67 let keys = Object.keys(dataResult); 71 for (let counterKeyIndex = 0; counterKeyIndex < keys.length; counterKeyIndex++) { 72 let counterKey = keys[counterKeyIndex]; 99 if (counterKeyIndex !== keys.length - 1) { 160 let keys = configMap.keys(); 161 for (let key of keys) {
|
D | TabPaneSdkSlice.ts | 106 let keys = Object.keys(dataResult); 110 for (let sliceKeyIndex = 0; sliceKeyIndex < keys.length; sliceKeyIndex++) { 111 let sliceKey = keys[sliceKeyIndex]; 133 if (sliceKeyIndex !== keys.length - 1) { 316 let keys = Object.keys(dataResult); 319 keys.forEach((sliceKey, sliceKeyIndex) => { 327 if (sliceKeyIndex !== keys.length - 1) {
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/ |
D | CSVUtils.ts | 22 for (let k of Object.keys(tGeneralInfo)) { 34 for (let k of Object.keys(t)) { 48 for (let k of Object.keys(tIndexInfo)) {
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/pkgs/ |
D | simple_excel_writer.py | 60 if sheet_name not in self.__sheet_dict.keys(): 73 if sheet_name not in self.__sheet_dict.keys(): 84 if sheet_name not in self.__sheet_dict.keys(): 99 if sheet_name in self.__sheet_dict.keys(): 111 if sheet_name in self.__sheet_pos.keys(): 118 if sheet_name in self.__sheet_pos.keys():
|
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/pkgs/ |
D | simple_excel_writer.py | 62 if sheet_name not in self.__sheet_dict.keys(): 75 if sheet_name not in self.__sheet_dict.keys(): 86 if sheet_name not in self.__sheet_dict.keys(): 101 if sheet_name in self.__sheet_dict.keys(): 113 if sheet_name in self.__sheet_pos.keys(): 120 if sheet_name in self.__sheet_pos.keys():
|
/developtools/ace_ets2bundle/compiler/sample/pages/testcases/ |
D | forEachComplexModel.ets | 35 new Month(2020, 1, [...Array(31).keys()]), 36 new Month(2020, 2, [...Array(28).keys()]), 37 new Month(2020, 3, [...Array(31).keys()]) 46 this.calendar.push(new Month(2020, 4, [...Array(30).keys()]))
|
/developtools/integration_verification/tools/startup_guard/startup_checker/ |
D | plug_in_rule.py | 44 keys = list(self._private_so.keys()) 46 if os.path.basename(name) not in keys:
|
/developtools/smartperf_host/ide/src/trace/component/setting/ |
D | SpHisysEvent.ts | 111 let domainList = Object.keys(this.eventConfig!); 133 let eventNameList = Object.keys(eventConfigElement); 144 let domainKey = Object.keys(this.eventConfig); 148 let eventList = Object.keys(currentEvent);
|
/developtools/ace_js2bundle/ace-loader/src/ |
D | cardJson-plugin.js | 31 const keys = Object.keys(assets) 32 keys.forEach(key => { 56 Object.keys(jsonOut).forEach(function (jsonOutKey) { 183 Object.keys(propsValue).forEach(item => { 201 Object.keys(actionsValue).forEach(item => {
|
D | genBin-plugin.js | 56 const keys = Object.keys(assets) 57 keys.forEach(key => {
|
/developtools/profiler/host/smartperf/client/client_command/include/ |
D | sp_utils.h | 124 bool VeriyParameter(std::set<std::string>& keys, std::string param, std::string& errorInfo); 125 bool VeriyKey(std::set<std::string>& keys, std::map<std::string, std::string>& mapInfo, std::string… 127 bool IntegerValueVerification(std::set<std::string> &keys, std::map<std::string, std::string> &mapI…
|
/developtools/smartperf_host/ide/src/base-ui/utils/ |
D | Template.ts | 88 const [keys, obj] = strFor.match(reg) ? strFor.split(reg) : ['item', strFor]; constant 90 const params = keys.split(/[\(|\)|,\s?]/g).filter(Boolean); 98 const names = Object.keys(params);
|
/developtools/smartperf_host/ide/src/trace/ |
D | SpApplicationPublicFunc.ts | 415 caches.keys().then((keys) => { 416 keys.forEach((key) => {
|
/developtools/global_resource_tool/src/ |
D | key_parser.cpp | 55 bool KeyParser::ParseMatch(const vector<string> &keys, in ParseMatch() argument 59 for (const auto &key : keys) { in ParseMatch() 107 bool KeyParser::ParseMatchBySeq(const vector<string> &keys, in ParseMatchBySeq() argument 110 for (size_t i = 0; i < keys.size(); i++) { in ParseMatchBySeq() 111 if (!founctions[i](keys[i], keyparams)) { in ParseMatchBySeq()
|
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/ |
D | share.ts | 101 public keys(): IterableIterator<string> { method in CacheStoreManager 102 return this.cacheInCacheStoreManager?.keys();
|
/developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/ |
D | Top20ThreadCpuUsage.ts | 135 for (let key of this.map!.keys()) { 234 for (let key of this.map!.keys()) { 240 for (let key of this.map!.keys()) { 267 for (let key of this.map!.keys()) { 277 this.nodata!.noData = res.keys().length === 0; 278 for (let key of this.map!.keys()) {
|