Home
last modified time | relevance | path

Searched defs:key (Results 1 – 25 of 135) sorted by relevance

123456

/developtools/ace_js2bundle/ace-loader/src/lite/
Dlite-transform-style.js116 match: function(key, value) { argument
122 action: function(obj, key, value) { argument
127 match: function(key, value) { argument
130 action: function(obj, key, value) { argument
138 match: function(key, value) { argument
145 action: function(obj, key, value) { argument
150 match: function(key, value) { argument
153 action: function(obj, key, value) { argument
158 match: function(key, value) { argument
161 action: function(obj, key, value) { argument
[all …]
Dlite-transform-template.js58 [AST_KEY.ATTR]: function(dataContent, node, key) { argument
64 [AST_KEY.CLASSLIST]: function(dataContent, node, key) { argument
68 [AST_KEY.STYLE]: function(dataContent, node, key) { argument
72 [AST_KEY.EVENTS]: function(dataContent, node, key) { argument
76 [AST_KEY.KEY]: function(dataContent, node, key) { argument
84 match: function(key, value) { argument
87 action: function(staticStyle, key, value) { argument
93 match: function(key, value) { argument
96 action: function(staticStyle, key, value) { argument
105 match: function(key, value) { argument
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/bpftrace/
DTabPaneSampleInstruction.ts172 for (const key in this.instructionArray) { constant
176 const cur = this.instructionArray[key][i]; constant
281 for (const key in instructionArray) { constant
285 const cur = instructionArray[key][i]; constant
313 const preNode = instructionArray[key][i - 1]; constant
325 for (const key in this.instructionArray) { constant
329 const cur = this.instructionArray[key][i]; constant
360 for (const key in nodes) { constant
364 const cur = nodes[key][i]; constant
451 for (const key in children) { constant
DTabPaneSampleInstructionSelection.ts171 for (const key in this.instructionArray) { constant
175 const cur = this.instructionArray[key][i]; constant
279 for (const key in instructionArray) { constant
283 const cur = instructionArray[key][i]; constant
311 const preNode = instructionArray[key][i - 1]; constant
325 for (const key in instructionArray) { constant
329 const cur = instructionArray[key][i]; constant
360 for (const key in nodes) { constant
364 const cur = nodes[key][i]; constant
455 for (const key in unknown.children) { constant
/developtools/hdc/hdc_rust/src/cffi/
Dsys_para.cpp19 extern "C" int SetParameterEx(const char *key, const char *val) in SetParameterEx()
24 extern "C" int GetParameterEx(const char *key, const char *def, char *val, unsigned int len) in GetParameterEx()
29 extern "C" int WaitParameterEx(const char *key, const char *val, int timeout) in WaitParameterEx()
35 bool SetDevItem(const char *key, const char *value) in SetDevItem()
40 bool GetDevItem(const char *key, std::string &out, const char *preDefine) in GetDevItem()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/entity/
DOptions.java277 public char[] getChars(String key) { in getChars()
292 public String getString(String key, String defValue) { in getString()
306 public String getString(String key) { in getString()
317 public boolean getBoolean(String key, boolean defValue) { in getBoolean()
340 public boolean getBoolean(String key) { in getBoolean()
351 public int getInt(String key, int defValue) { in getInt()
372 public int getInt(String key) { in getInt()
/developtools/ace_js2bundle/ace-loader/src/
DcardJson-plugin.js44 function sourceChange(key, assets, compilation) { argument
95 function toAddJson(assetReplace, key, value, compilation, sourceKey) { argument
131 function addElement(assetReplace, key, value, compilation, sourceKey) { argument
168 function replacePropsArray(propsValue, _this, key) { argument
199 function processActions(actionsValue, _this, key) { argument
224 function validateData(dataValue, _this, key) { argument
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_mode.test.ts796 for (const key in cacheSourceMapObject) { constant
801 for (const key of Object.keys(newSourceMaps)) { constant
818 for (const key in cacheSourceMapObject) { constant
825 for (const key in cacheSourceMapObject) { constant
832 for (const key in cacheSourceMapObject) { constant
837 for (const key of Object.keys(newSourceMaps)) { constant
854 for (const key in cacheSourceMapObject) { constant
859 for (const key of Object.keys(newSourceMaps)) { constant
876 for (const key in cacheSourceMapObject) { constant
881 for (const key of Object.keys(newSourceMaps)) { constant
[all …]
/developtools/hdc/hdc_rust/src/cffi/host/
Dhost_usb_wrapper.cpp66 char* key = new char[len + 1]; in OnDeviceConnected() local
85 char* key = new char[len + 1]; in WriteUsb() local
110 char* key = new char[len + 1]; in ReadUsb() local
132 char* key = new char[len + 1]; in CancelUsbIo() local
/developtools/hdc/src/daemon/
Dsystem_depend.cpp36 bool SetDevItem(const char *key, const char *value) in SetDevItem()
49 bool GetDevItem(const char *key, string &out, const char *preDefine) in GetDevItem()
72 uint32_t GetDevUint(const char *key, uint32_t defaultValue) in GetDevUint()
Dsystem_depend.h23 inline bool GetDevItem(const char *key, string value) in GetDevItem()
27 inline bool SetDevItem(const char *key, const char *value) in SetDevItem()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/error/
DParamException.java29 public ParamException(String key) { in ParamException()
39 public ParamException(String key, String message) { in ParamException()
/developtools/profiler/device/plugins/native_daemon/include/
Dhashlistpp.h25 LinkNode<Key, Val>::LinkNode(const Key &key) : key_ {key} {} in LinkNode()
28 LinkNode<Key, Val>::LinkNode(const Key &key, const Val &val) : key_ {key}, val_ {val} {} in LinkNode()
31 LinkNode<Key, Val>::LinkNode(const Key &key, Val &&val) : key_ {key}, val_ {std::move(val)} {} in LinkNode()
713 void HashList<Key, Val>::push_front(const Key& key, const Val& val) in push_front()
726 void HashList<Key, Val>::push_front(const Key& key, Val&& val) in push_front()
739 void HashList<Key, Val>::push_back(const Key& key, const Val& val) in push_back()
752 void HashList<Key, Val>::push_back(const Key& key, Val&& val) in push_back()
/developtools/hiperf/include/
Dhashlist.h174 inline std::size_t count(const Key &key) const in count()
225 LinkNode<Key, Val>::LinkNode(const Key &key) : key_ {key} {} in LinkNode()
228 LinkNode<Key, Val>::LinkNode(const Key &key, const Val &val) : key_ {key}, val_ {val} {} in LinkNode()
231 LinkNode<Key, Val>::LinkNode(const Key &key, Val &&val) : key_ {key}, val_ {std::move(val)} {} in LinkNode()
916 void HashList<Key, Val>::push_front(const Key& key, const Val& val) in push_front()
929 void HashList<Key, Val>::push_front(const Key& key, Val&& val) in push_front()
942 void HashList<Key, Val>::push_back(const Key& key, const Val& val) in push_back()
955 void HashList<Key, Val>::push_back(const Key& key, Val&& val) in push_back()
/developtools/integration_verification/cases/smoke/basic/screenshot32/new_script/utils/
Dlayout.py63 def get_elements_by_key(self, key): argument
70 def get_element_by_key(self, key, index=0): argument
76 def assert_key_exist(self, key): argument
/developtools/smartperf_host/ide/src/trace/component/
DSpFlags.ts366 for (const [key, value] of Object.entries(config.addInfo)) { constant
387 for (const [key, value] of Object.entries(config.addInfo)) { constant
426 for (const [key, value] of Object.entries(configItem.addInfo)) { constant
/developtools/smartperf_host/ide/src/base-ui/tabs/
Dlit-tabpane.ts69 get key(): string { method in LitTabpane
73 set key(value) { method in LitTabpane
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpProcessChart.ts170 let asyncFuncGroups: Array<unknown> = asyncFuncGroup[key]; variable
291 let asyncFuncGroups: Array<unknown> = asyncFuncGroup[key]; variable
1426 let param: Array<unknown> = aggregateData[key]; variable
1436 let asyncFunctions: Array<unknown> = asyncFuncGroup[key]; variable
1521 let asyncFunctions: Array<unknown> = asyncFuncGroup[key]; variable
1534 let asyncTidFunc: Array<unknown> = asyncFuncTidGroup[key]; variable
1559 for (let [key, val] of mapDepth.entries()) { variable
1656 let asyncFunctions: Array<unknown> = asyncFuncGroup[key]; variable
/developtools/ace_js2bundle/ace-loader/test/rich/expected/
DforDirective.js97 "key": "personIndex", property
143 "key": "index", property
154 "key": "personIndex", property
179 "key": "index", property
190 "key": "personIndex", property
216 "key": "personIndex", property
242 "key": "value", property
/developtools/smartperf_host/trace_streamer/src/filter/hi_sysevent_filter/
Dhi_sysevent_measure_filter.cpp35 DataIndex key, in AppendNewValue()
207 auto key = jData.key[*itor]; in NoArrayDataParse() local
221 std::string key = jData.key[*itor]; in ArrayDataParse() local
256 std::string key = jData.key[i]; in CommonDataParser() local
262 DataIndex HiSysEventMeasureFilter::GetOrCreateFilterIdInternal(DataIndex appNameId, DataIndex key) in GetOrCreateFilterIdInternal()
/developtools/packing_tool/adapter/ohos/
DScanStatFileSize.java220 private static String getHtmlRow(String key, String valve) { in getHtmlRow()
225 private static String getHtmlRow(String key, long valve) { in getHtmlRow()
230 private static String getHtmlRowResultClass(String key, String valve) { in getHtmlRowResultClass()
235 private static String getHtmlRowResult(String key, String valve, in getHtmlRowResult()
241 private static String getHtmlRowResult(String key, long valve, in getHtmlRowResult()
DScanStatDuplicate.java235 private static String getHtmlRow(String key, long valve) { in getHtmlRow()
239 private static String getHtmlRow(String key, String valve) { in getHtmlRow()
243 private static String getHtmlRowResultClass(String key, String valve) { in getHtmlRowResultClass()
247 private static String getHtmlRowResult(String key, long valve, in getHtmlRowResult()
253 private static String getHtmlRowResult(String key, String valve, in getHtmlRowResult()
259 private static String getHtmlRowResult(String key, List<String> valve) { in getHtmlRowResult()
DScanStatSuffix.java384 … private static void accountType(HashMap<String, List<FileInfo>> hashMap, File file, String key) { in accountType() argument
391 …te static void accountTypeUnknown(HashMap<String, List<FileInfo>> hashMap, File file, String key) { in accountTypeUnknown() argument
447 private static String getHtmlRow(String key, String valve) { in getHtmlRow()
451 private static String getHtmlRow(String key, long valve) { in getHtmlRow()
455 private static String getHtmlRowResultClass(String key, String valve) { in getHtmlRowResultClass()
459 private static String getHtmlRowResult(String key, String valve, in getHtmlRowResult()
465 private static String getHtmlRowResult(String key, long valve, in getHtmlRowResult()
471 private static String getHtmlRowFile(String key, List<FileInfo> files) { in getHtmlRowFile()
480 private static String getHtmlRowFileSo(String key, List<SoFile> files) { in getHtmlRowFileSo()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/parallel/
DTabPaneMtParallel.ts191 for (const [key, cpuGroup] of obj.entries()) { constant
245 for (const [key, val] of Object.entries(obj)) { constant
314 for (const [key, value] of map) { constant
/developtools/global_resource_tool/src/
Dconfig_parser.cpp332 bool ConfigParser::ParseRefImpl(cJSON *parent, const string &key, cJSON *node) in ParseRefImpl()
360 bool ConfigParser::ParseJsonArrayRef(cJSON *parent, const string &key, cJSON *node) in ParseJsonArrayRef()
389 bool ConfigParser::ParseJsonStringRef(cJSON *parent, const string &key, cJSON *node) in ParseJsonStringRef()
415 void ConfigParser::AddCheckNode(const string &key, uint32_t id) in AddCheckNode()

123456