Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 80) sorted by relevance

1234

/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/services/memory/nativeservice/
DNativeDataExternalInterface.java134 String[] split = line.split(";"); in executeParseFile() local
135 String freeAddr = split[3]; in executeParseFile()
172 String[] split = string.split(";"); in createInstance() local
173 String addr = split[3]; in createInstance()
174 String mallocSize = split[4]; in createInstance()
184 String[] split = string.split(";"); in createNativeFrame() local
185 String pc = split[0]; in createNativeFrame()
186 if (split.length < 6) { in createNativeFrame()
189 String functionName = split[2]; in createNativeFrame()
190 String fileName = split[3]; in createNativeFrame()
[all …]
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/monitorconfig/entity/
DNativeHookConfigInfo.java106 String[] split = size.split(":"); in convertToValue() local
108 String unit = split[1]; in convertToValue()
111 value = Integer.parseInt(split[0]) * 1024 * 1024; in convertToValue()
114 value = Integer.parseInt(split[0]) * 1024; in convertToValue()
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/trace/metrics/strategy/
DDistributeTermStrategy.java49 String[] threadIds = item.getThreadId().split(","); in handleDistributeTermInfo()
50 String[] threadNames = item.getThreadName().split(","); in handleDistributeTermInfo()
51 String[] processIds = item.getProcessId().split(","); in handleDistributeTermInfo()
53 … item.getProcessName() == null ? new String[threadIds.length] : item.getProcessName().split(","); in handleDistributeTermInfo()
54 String[] funNames = item.getFunName().split(","); in handleDistributeTermInfo()
55 String[] durations = item.getDur().split(","); in handleDistributeTermInfo()
56 String[] times = item.getTime().split(","); in handleDistributeTermInfo()
57 String[] flags = item.getFlag().split(","); in handleDistributeTermInfo()
DCpuStrategy.java69 String[] avgFrequency = item.getAvgFrequency().split(SEPARATOR); in handleCpuInfo()
70 String[] cpuIds = item.getCpu().split(SEPARATOR); in handleCpuInfo()
71 String[] durations = item.getDuration().split(SEPARATOR); in handleCpuInfo()
72 String[] minFreq = item.getMinFreq().split(SEPARATOR); in handleCpuInfo()
73 String[] maxFreq = item.getMaxFreq().split(SEPARATOR); in handleCpuInfo()
DMemAggStrategy.java51 String[] names = item.getName().split(","); in handleMemoryInfo()
52 String[] values = item.getValue().split(","); in handleMemoryInfo()
53 String[] times = item.getTime().split(","); in handleMemoryInfo()
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/distributed/statistics/
DCpuStrategy.java69 String[] avgFrequency = item.getAvgFrequency().split(SEPARATOR); in handleCpuInfo()
70 String[] cpuIds = item.getCpu().split(SEPARATOR); in handleCpuInfo()
71 String[] durations = item.getDuration().split(SEPARATOR); in handleCpuInfo()
72 String[] minFreq = item.getMinFreq().split(SEPARATOR); in handleCpuInfo()
73 String[] maxFreq = item.getMaxFreq().split(SEPARATOR); in handleCpuInfo()
DMemAggStrategy.java55 String[] names = item.getName().split(","); in handleMemoryInfo()
56 String[] values = item.getValue().split(","); in handleMemoryInfo()
57 String[] times = item.getTime().split(","); in handleMemoryInfo()
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/transport/hdc/
DIoStreamConsumer.java75 String[] split = stringBuilder.toString().split("\r\n"); in run() local
76 resultList = new ArrayList<>(Arrays.asList(split)); in run()
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/hilog/
DHiLogFilter.java102 String[] lineStr = wholeBuilder.toString().split(System.lineSeparator()); in filterLog()
105 String[] lineStrs = str.split(" "); in filterLog()
159 String[] lines = logTextArea.getText().split(System.lineSeparator()); in lineFilter()
169 String[] lineStrs = str.split(" "); in lineFilter()
195 String[] lines = line.split(" "); in isErrorLog()
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/base/
DColorUtils.ts101 let l = str.toString().split("").reverse();
106 return t.split("").reverse().join("")
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/layout/chartview/memory/nativehook/
DNativeConfigDialog.java230 String[] split = size.split(":"); in addParameterComponent() local
247 textField.setText(split[0]); in addParameterComponent()
249 unitIndex = split[1]; in addParameterComponent()
260 textField.setText(split[0]); in addParameterComponent()
262 unitIndex = split[1]; in addParameterComponent()
/developtools/ace-ets2bundle/compiler/src/
Dpre_process.ts154 visualMap.set(0, mediaQueryImport.split('\n').length - 1);
194 const originEtsFileLineNumber: number = contentBeforePos.split('\n').length;
195 const visualLines: number = visualContent.split('\n').length - 1;
216 const originEtsFileLineNumber: number = contentBeforePos.split('\n').length;
217 const visualLines: number = visualContent.split('\n').length - 1;
240 const lines: Array<string> = content.split('\n');
Dgen_abc_plugin.ts114 let buildDirArr: string[] = buildPathInfo.split(path.sep);
201 const currentNodeVersion = parseInt(process.version.split('.')[0]);
307 let buildDirArr: string[] = buildPathInfo.split(path.sep);
317 const dataTmps = buildPath.split(ARK);
/developtools/profiler/host/smartperf/ide/src/base-ui/utils/
DTemplate.ts71 const [keys, obj] = strFor.match(reg) ? strFor.split(reg) : ["item", strFor];
73 const params = keys.split(/[\(|\)|,\s?]/g).filter(Boolean);
/developtools/profiler/device/plugins/ftrace_plugin/tools/
Dftrace_format_parser.py191 fields = [f.strip().split(':') for f in self.line.split(';')]
212 event_format.name = self.line.split(':')[1].strip()
215 event_format.event_id = int(self.line.split(':')[1])
257 class_type = tuple(i.split('/')) # event class and event type
267 parts = path.split(os.path.sep)
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/device/service/
DMultiDeviceManager.java675 String[] split = str.split(":"); in buildDeviceName() local
676 devName = devName + "-" + split[1]; in buildDeviceName()
679 String[] split = str.split(":"); in buildDeviceName() local
680 devName = split[1] + devName; in buildDeviceName()
683 String[] split = str.split(":"); in buildDeviceName() local
684 devName = devName + split[1]; in buildDeviceName()
/developtools/hiperf/script/
Drecv_binary_cache.py27 ABS_PATH = os.path.split(os.path.realpath(__file__))[0]
56 dso_list = dso_build_id.split('],[')
61 group = i.split(',')
Dmake_report_sample.py32 dirname, _ = os.path.split(os.path.abspath(sys.argv[0]))
Dmake_report.py42 dirname, _ = os.path.split(os.path.abspath(sys.argv[0]))
/developtools/profiler/host/smartperf/ide/server/
Dmain.go159 split := SplitLines(string(readFile))
160 fmt.Println(split)
161 if len(split) > 1 {
162 if strings.HasSuffix(split[0], ":0") {
/developtools/hiperf/interfaces/kits/js/napi/
Dhiperf_client_napi.cpp37 static std::vector<std::string> StringSplit(std::string source, std::string split = ",") in StringSplit() argument
43 while ((pos = source.find(split)) != std::string::npos) { in StringSplit()
49 source.erase(0, pos + split.length()); in StringSplit()
58 static std::vector<int> StringSplitToInt(std::string source, std::string split = ",") in StringSplitToInt() argument
64 while ((pos = source.find(split)) != std::string::npos) { in StringSplitToInt()
70 source.erase(0, pos + split.length()); in StringSplitToInt()
453 const std::string split = ","; in GetOptionVecString() local
456 result.append(split); in GetOptionVecString()
/developtools/profiler/host/smartperf/trace_streamer/src/rpc/
Dhttp_server.cpp429 …::vector<std::string_view> HttpServer::StringSplit(std::string_view source, std::string_view split) in StringSplit() argument
432 if (!split.empty()) { in StringSplit()
434 while ((pos = source.find(split)) != std::string_view::npos) { in StringSplit()
440 source = source.substr(pos + split.size(), source.size() - token.size() - split.size()); in StringSplit()
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/java/com/ohos/hapsigntoolcmd/
DCmdUtil.java168 String[] types = inputType.split(","); in verifyType()
169 List<String> supportList = Arrays.asList(supportTypes.split(",")); in verifyType()
/developtools/profiler/device/plugins/native_daemon/include/
Dutilities.h101 const std::string split = ","; in VectorToString() local
104 itemsString.append(split); in VectorToString()
123 std::vector<std::string> StringSplit(std::string source, std::string split = ",");
/developtools/hiperf/include/
Dutilities.h133 const std::string split = ","; in VectorToString() local
136 itemsString.append(split); in VectorToString()
155 std::vector<std::string> StringSplit(std::string source, std::string split = ",");

1234