| /developtools/global_resource_tool/src/ |
| D | factory_resource_compiler.cpp | 25 unique_ptr<IResourceCompiler> FactoryResourceCompiler::CreateCompiler(ResType type, const string &o… in CreateCompiler() argument 27 if (type == ResType::ELEMENT) { in CreateCompiler() 28 return make_unique<JsonCompiler>(type, output); in CreateCompiler() 30 return make_unique<GenericCompiler>(type, output); in CreateCompiler() 34 unique_ptr<IResourceCompiler> FactoryResourceCompiler::CreateCompilerForAppend(ResType type, const … in CreateCompilerForAppend() argument 36 if (type == ResType::ELEMENT) { in CreateCompilerForAppend() 37 return make_unique<JsonCompiler>(type, output); in CreateCompilerForAppend() 38 } else if (type == ResType::MEDIA || type == ResType::PROF) { in CreateCompilerForAppend() 39 return make_unique<AppendCompiler>(type, output); in CreateCompilerForAppend()
|
| /developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/privateAttr/ |
| D | privateAttr.hml | 5 <list-item-group type="{{type}}"></list-item-group> 6 …<list-item type="{{type}}" primary="{{primary}}" section="{{section}}" sticky="{{sticky}}"stickyra… 24 …<refresh offset="{{offset}}" refreshing="{{refreshing}}" type="auto" lasttime="{{lasttime}}" frict… 33 …<progress type="horizontal" percent="{{percent}}" secondarypercent="{{secondarypercent}}"></progre… 36 …<progress type="scale-ring" percent="{{percent}}" secondarypercent="{{secondarypercent}}" clockwis… 39 <progress type="arc" percent="{{percent}}"></progress> 54 <menu target="{{target}}" type="{{type}}" title="{{title}}"></menu> 57 <chart type="line" options="{{options}}" datasets="{{datasets}}"></chart> 60 …<input type="time" checked="{{checked}}" name="{{name}}" value="{{value}}" placeholder="{{placehol… 65 <button type="capsule" value="{{value}}" icon="{{icon}}" value="{{value}}"></button> [all …]
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/ |
| D | SigningBlock.java | 24 private int type; field in SigningBlock 28 public SigningBlock(int type, byte[] value) { in SigningBlock() argument 30 this.type = type; in SigningBlock() 36 return type; in getType()
|
| D | SignContentInfo.java | 32 protected char type; field in SignContentHash 64 SignContentHash(char type, char tag, short algId, int length, byte[] hash) { in SignContentHash() argument 65 this.type = type; in SignContentHash() 95 public void addContentHashData(char type, char tag, short algId, int length, byte[] hash) { in addContentHashData() argument 96 SignContentHash signInfo = new SignContentHash(type, tag, algId, length, hash); in addContentHashData() 132 ret[index] = (byte) tmp.type; in getByteContent()
|
| /developtools/profiler/device/base/include/ |
| D | logging.h | 100 static inline int HiLogPrint(int type, int prio, int domain, ConstCharPtr tag, ConstCharPtr fmt, ..… in HiLogPrint() argument 103 UNUSED_PARAMETER(type); in HiLogPrint() 179 #define HILOG_PRINT(type, level, fmt, ...) \ argument 180 …HiLogPrint(type, level, LOG_DOMAIN, LOG_TAG, "%{public}s", logging::StringFormat(fmt, ##__VA_ARGS_… 182 #define HILOG_PRINT(type, level, fmt, ...) \ argument 183 …HiLogPrint(type, level, LOG_DOMAIN, LOG_TAG, "%s", logging::StringFormat(fmt, ##__VA_ARGS__).c_str… 186 #define HILOG_DEBUG(type, fmt, ...) HILOG_PRINT(type, LOG_DEBUG, fmt, ##__VA_ARGS__) argument 187 #define HILOG_INFO(type, fmt, ...) HILOG_PRINT(type, LOG_INFO, fmt, ##__VA_ARGS__) argument 188 #define HILOG_WARN(type, fmt, ...) HILOG_PRINT(type, LOG_WARN, fmt, ##__VA_ARGS__) argument 189 #define HILOG_ERROR(type, fmt, ...) HILOG_PRINT(type, LOG_ERROR, fmt, ##__VA_ARGS__) argument
|
| /developtools/ace_js2bundle/ace-loader/test/card/testcase/pages/privateAttr/ |
| D | privateAttr.hml | 6 …<progress type="horizontal" percent="{{percent}}" secondarypercent="{{secondarypercent}}"></progre… 9 …<progress type="scale-ring" percent="{{percent}}" secondarypercent="{{secondarypercent}}" clockwis… 12 <progress type="arc" percent="{{percent}}"></progress> 15 <chart type="line" options="{{options}}" datasets="{{datasets}}"></chart> 18 <button type="capsule" value="{{value}}" icon="{{icon}}" value="{{value}}"></button>
|
| /developtools/profiler/device/base/src/ |
| D | i_semaphore.cpp | 19 ISemaphoreFactory& GetSemaphoreFactory(SemaphoreFactoryType type) in GetSemaphoreFactory() argument 22 if (type == STD_SEMAPHORE_FACTORY) { in GetSemaphoreFactory() 24 } else if (type == POSIX_SEMAPHORE_FACTORY) { in GetSemaphoreFactory() 27 } else if (type == PTHREAD_SEMAPHORE_FACTORY) { in GetSemaphoreFactory()
|
| /developtools/profiler/hiebpf/include/ |
| D | hiebpf_macros.h | 123 #define container_of(ptr, type, member) \ argument 126 ((type *)(__mptr - offsetof(type, member))); \ 147 #define list_entry(ptr, type, member) \ argument 148 container_of(ptr, type, member) 152 #define hlist_entry(ptr, type, member) container_of(ptr, type, member) argument
|
| /developtools/profiler/device/plugins/ftrace_plugin/src/ |
| D | ftrace_parser.cpp | 100 bool FtraceParser::SetupEvent(const std::string& type, const std::string& name) in SetupEvent() argument 108 format.eventType = type; in SetupEvent() 110 std::string desc = FtraceFsOps::GetInstance().GetEventDataFormat(type, name); in SetupEvent() 111 …CHECK_TRUE(ParseEventFormat(desc.data(), format), false, "parse %s/%s/format failed!", type.c_str(… in SetupEvent() 112 …CHECK_TRUE(SubEventParser::GetInstance().SetupEvent(format), false, "setup %s/%s failed!", type.c_… in SetupEvent() 175 static std::string GetName(const std::map<int, std::string>& nameMap, int type) in GetName() argument 177 auto it = nameMap.find(type); in GetName() 184 static std::string GetFieldTypeName(EventFieldType type) in GetFieldTypeName() argument 198 return GetName(toNames, type); in GetFieldTypeName() 201 static std::string GetProtoTypeName(ProtoFieldType type) in GetProtoTypeName() argument [all …]
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/profile/model/ |
| D | Provision.java | 109 private String type; field in Provision 196 ValidateUtils.throwIfMatches(provision.type == null || !isBuildTypeValid(provision.type), in enforceValid() 197 … ERROR.SIGN_ERROR, "Require build type must be debug or release, current is :" + provision.type); in enforceValid() 201 provision.bundleInfo.enforceValid(provision.type); in enforceValid() 229 return type; in getType() 232 public void setType(String type) { in setType() argument 233 this.type = type; in setType() 297 + "type:" + type + NEWLINE_CHARACTER in toString()
|
| /developtools/smartperf_host/trace_streamer/src/parser/ebpf_parser/ |
| D | file_system_data_parser.cpp | 62 uint16_t type = INVALID_UINT16; in ParseFileSystemEvent() local 63 auto tmp = fucSubToSummaryType.find(fsFixedHeadrAddr->type); in ParseFileSystemEvent() 67 type = fucSubToSummaryType.at(fsFixedHeadrAddr->type); in ParseFileSystemEvent() 103 auto fd = GetFileDescriptor(fsFixedHeadrAddr, type); in ParseFileSystemEvent() 107 …tracerEventToStrIndexMap.Find(ITEM_EVENT_FS, fsFixedHeadrAddr->type, itid, fsFixedHeadrAddr->start… in ParseFileSystemEvent() 109 …tracerEventToStrIndexMap.Erase(ITEM_EVENT_FS, fsFixedHeadrAddr->type, itid, fsFixedHeadrAddr->star… in ParseFileSystemEvent() 114 if ((type == READ || type == WRITE) && fsFixedHeadrAddr->ret >= 0) { in ParseFileSystemEvent() 119 …currentCallId_, type, ipid, itid, newStartTs, newEndTs, duration, returnValue, errorCode, size, fd, in ParseFileSystemEvent()
|
| /developtools/smartperf_host/trace_streamer/doc/ |
| D | arkTs.md | 59 type:JS数据类型,取值与枚举HeapType对应,0表示JS内存数据为snapshot类型,1表示JS内存数据为timeline类型,-1表示没有JS内存数据。 60 interval:当type=0时生效,单位是秒,表示一次snapshot事件和下一次snapshot事件之间的间隔。 61 capture_numeric_value:当type=0时生效,表示是否同时抓取numeric。 62 track_allocation:当type=1时生效,表示是否抓取allocations。 88 …js-memory_config和js-memory插件头,先通过接口ParseJSMemoryConfig获取对应的type和pid,其中type=0为snapshot类型数据,type=1为t… 94 nodes:该节点包含了js_heap_nodes表的信息,每一行为7个int类型数字,分别表示type,name,id,self_size,edge_count,trace_node_id,det… 96 edges:该节点包含了js_heap_edges表的信息,每一行为3个int类型数字,分别表示type,name_or_index,to_node。表中from_node_id是通过nodes节点… 102 | type | name | id | self_size | edge_count | trace_node_id | datachedness |
|
| /developtools/profiler/host/smartperf/trace_streamer/src/parser/ebpf_parser/ |
| D | file_system_data_parser.cpp | 61 uint16_t type = INVALID_UINT16; in ParseFileSystemEvent() local 62 auto tmp = fucSubToSummaryType.find(fsFixedHeadrAddr->type); in ParseFileSystemEvent() 66 type = fucSubToSummaryType.at(fsFixedHeadrAddr->type); in ParseFileSystemEvent() 102 auto fd = GetFileDescriptor(fsFixedHeadrAddr, type); in ParseFileSystemEvent() 106 …tracerEventToStrIndexMap.Find(ITEM_EVENT_FS, fsFixedHeadrAddr->type, itid, fsFixedHeadrAddr->start… in ParseFileSystemEvent() 108 …tracerEventToStrIndexMap.Erase(ITEM_EVENT_FS, fsFixedHeadrAddr->type, itid, fsFixedHeadrAddr->star… in ParseFileSystemEvent() 113 if ((type == READ || type == WRITE) && fsFixedHeadrAddr->ret >= 0) { in ParseFileSystemEvent() 118 …currentCallId_, type, ipid, itid, newStartTs, newEndTs, duration, returnValue, errorCode, size, fd, in ParseFileSystemEvent()
|
| /developtools/ace_js2bundle/ace-loader/src/ |
| D | card-loader.js | 43 … getRequireString(this, jsonLoaders('style', customLang[styleInfo.type]), styleInfo.styleFileName) 94 getRequireString(this, jsonLoaders('style', customLang[compStyleInfo.type]), 107 let type = 'css' 110 type = 'css' 115 type = 'less' 120 type = 'sass' 125 type = 'sass' 132 return {extStyle: extStyle, styleFileName: styleFileName, type: type}
|
| /developtools/packing_tool/adapter/ohos/ |
| D | HQFInfo.java | 36 private String type = ""; field in HQFInfo 91 return type; in getType() 94 public void setType(String type) { in setType() argument 95 this.type = type; in setType()
|
| D | ResourcesParser.java | 77 private final String type; field in ResourcesParser.ResType 79 private ResType(int index, String type) { in ResType() argument 81 this.type = type; in ResType() 87 return resType.type; in getType() 97 return type; in getType() 113 private final String type; field in ResourcesParser.DeviceType 114 private DeviceType(int index, String type) { in DeviceType() argument 116 this.type = type; in DeviceType() 122 return deviceType.type; in getType() 132 return type; in getType() [all …]
|
| /developtools/profiler/hiebpf/src/ |
| D | hiebpf.bpf.c | 52 __uint(type, BPF_MAP_TYPE_ARRAY); 62 __uint(type, BPF_MAP_TYPE_ARRAY); 76 __uint(type, BPF_MAP_TYPE_HASH); 84 __uint(type, BPF_MAP_TYPE_ARRAY); 92 __uint(type, BPF_MAP_TYPE_RINGBUF); 134 if (cmplt_event->start_event.type == 0) { in emit_fstrace_event() 166 int handle_pftrace_start_event(struct vm_fault *vmf, u32 type) in handle_pftrace_start_event() argument 172 pf_se->type = type; in handle_pftrace_start_event() 190 int read_modify_update_page_fault_stats(u32 type, u32 duration) in read_modify_update_page_fault_stats() argument 192 const struct pf_stat_t *stat_ptr = bpf_map_lookup_elem(&pftrace_stats_map, &type); in read_modify_update_page_fault_stats() [all …]
|
| /developtools/smartperf_host/ide/src/doc/md/ |
| D | des_tables.md | 275 |type |INT | 290 - type:事件类型其取值为枚举类型(DATA_READ,DATA_WRITE,METADATA_READ,- METADATA_WRITE,PAGE_IN,PAGE_OUT) 340 |type |TEXT | 354 |type |TEXT | 368 |type |TEXT | 464 |type |INT | 483 - type:对应文件操作open,close,read,write 491 - file_id:当type为open,close时为其操作的文件路径,当type为read,write时为固定字段(null) 492 - size:在type为read,write时对应的文件的读或者写的大小 518 |type |INT | [all …]
|
| /developtools/profiler/host/smartperf/ide/src/doc/md/ |
| D | des_tables.md | 275 |type |INT | 290 - type:事件类型其取值为枚举类型(DATA_READ,DATA_WRITE,METADATA_READ,- METADATA_WRITE,PAGE_IN,PAGE_OUT) 340 |type |TEXT | 354 |type |TEXT | 368 |type |TEXT | 464 |type |INT | 483 - type:对应文件操作open,close,read,write 491 - file_id:当type为open,close时为其操作的文件路径,当type为read,write时为固定字段(null) 492 - size:在type为read,write时对应的文件的读或者写的大小 518 |type |INT | [all …]
|
| /developtools/profiler/host/smartperf/trace_streamer/doc/ |
| D | des_tables.md | 275 |type |INT | 290 - type:事件类型其取值为枚举类型(DATA_READ,DATA_WRITE,METADATA_READ,- METADATA_WRITE,PAGE_IN,PAGE_OUT) 340 |type |TEXT | 354 |type |TEXT | 368 |type |TEXT | 464 |type |INT | 483 - type:对应文件操作open,close,read,write 491 - file_id:当type为open,close时为其操作的文件路径,当type为read,write时为固定字段(null) 492 - size:在type为read,write时对应的文件的读或者写的大小 518 |type |INT | [all …]
|
| D | js_memory.md | 43 …js-memory_config和js-memory插件头,先通过接口ParseJSMemoryConfig获取对应的type和pid,其中type=0为snapshot类型数据,type=1为t… 49 nodes:该节点包含了js_heap_nodes表的信息,每一行为7个int类型数字,分别表示type,name,id,self_size,edge_count,trace_node_id,det… 51 edges:该节点包含了js_heap_edges表的信息,每一行为3个int类型数字,分别表示type,name_or_index,to_node。表中from_node_id是通过nodes节点… 57 | type | name | id | self_size | edge_count | trace_node_id | datachedness |
|
| /developtools/profiler/host/smartperf/client/client_command/ |
| D | Temperature.cpp | 30 std::string type; in ItemData() local 32 SPUtils::LoadFile(dirType, type); in ItemData() 35 if (type.find(node) != std::string::npos) { in ItemData() 36 result[type] = temp; in ItemData()
|
| /developtools/ace_js2bundle/ace-loader/plugin/templater/ |
| D | content.js | 36 if (path.parent && path.node.type === "Identifier") { 38 if (['ConditionalExpression', 'BinaryExpression'].includes(path.parent.type) || 39 path.parent.type === 'CallExpression' && path.parent.callee === path.node) { 42 …else if (path.parent.type === "ObjectProperty" && !path.parent.computed && path.parent.value === p… 76 if('arguments' === attrArr1[i] && parent.arguments[0].type === 'Identifier') { 86 if (parent.type === "Property" && parent.key.range[0] === parent.value.range[0] &&
|
| /developtools/ace_ets2bundle/compiler/ |
| D | build_declarations_file.js | 122 const type = node.declarationList.declarations[0].type.getText(); 123 if (name.indexOf(type) !== -1) { 125 … ts.factory.createIdentifier(type), node.declarationList.declarations[0].exclamationToken, 126 … node.declarationList.declarations[0].type, node.declarationList.declarations[0].initializer); 180 const callSignName = callSignNode.type.typeName.getText().replace(/Attribute$/, ''); 182 extendNode = callSignNode.type.typeName; 195 node.declarationList.declarations[0].name && node.declarationList.declarations[0].type) { 213 …node.type && ts.isTypeReferenceNode(node.type) && node.type.typeName && ts.isIdentifier(node.type.… 214 /Attribute$/.test(node.type.typeName.getText());
|
| /developtools/integration_verification/cases/daily/mini_system/ |
| D | L1_mini_system_test.py | 74 parser.add_argument('--com_port', type=str, default = 'COM8') 75 parser.add_argument('--com_baudrate', type=int, default = 115200) 76 parser.add_argument('--save_path', type=str, default = 'D:\\DeviceTestTools\\screenshot') 77 parser.add_argument('--archive_path', type=str, default = 'D:\DeviceTestTools') 101 if type(foundation_proc_find) == list and len(foundation_proc_find) > 0: 109 if type(shell_proc_find) == list and len(shell_proc_find) > 0: 117 if type(apphilogcat_proc_find) == list and len(apphilogcat_proc_find) > 0: 125 if type(deviceauth_service_proc_find) == list and len(deviceauth_service_proc_find) > 0: 133 if type(softbus_server_proc_find) == list and len(softbus_server_proc_find) > 0:
|