/developtools/profiler/device/plugins/memory_plugin/src/ |
H A D | buffer_splitter.cpp | 31 char delimiter = '\n'; in NextLine() local 41 if (*next_ == delimiter) { in NextLine() 52 if (*next_ == delimiter) { in NextLine() 68 bool BufferSplitter::NextWord(char delimiter) in NextWord() argument 75 if (isspace(*next_) || *next_ == delimiter) { in NextWord() 87 if (*next_ == delimiter) { in NextWord()
|
H A D | memory_data_plugin.cpp | 852 char delimiter = (i == ASHMEM_REF_COUNT) ? '\n' : ','; in WriteAshmemInfo() local 853 if (!totalBuffer.NextWord(delimiter)) { in WriteAshmemInfo() 943 char delimiter = (i == DMA_BUF_NAME) ? '\n' : ' '; in WriteDmaInfo() local 944 if (!totalBuffer.NextWord(delimiter)) { in WriteDmaInfo()
|
/developtools/smartperf_host/trace_streamer/src/base/ |
H A D | parting_string.cpp | 19 PartingString::PartingString(std::string str, char delimiter) : str_(std::move(str)), delimiter_(delimiter) in PartingString() argument
|
H A D | parting_string.h | 25 PartingString(std::string str, char delimiter);
|
/developtools/profiler/device/plugins/native_hook/test/unittest/ |
H A D | check_hook_data_test.cpp | 411 bool Getdata(BufferSplitter& totalbuffer, std::vector<std::string>& hookVec, char delimiter) in Getdata() argument 413 totalbuffer.NextWord(delimiter); in Getdata() 493 char delimiter = ';'; in HWTEST_F() local 494 Getdata(totalbuffer, hookVec, delimiter); in HWTEST_F() 498 EXPECT_TRUE(Getdata(totalbuffer, hookVec, delimiter)); in HWTEST_F() 500 delimiter = '\n'; in HWTEST_F() 501 EXPECT_TRUE(Getdata(totalbuffer, hookVec, delimiter)); in HWTEST_F() 509 EXPECT_TRUE(Getdata(totalbuffer, hookVec, delimiter)); in HWTEST_F() 511 delimiter = '\n'; in HWTEST_F() 512 EXPECT_TRUE(Getdata(totalbuffer, hookVec, delimiter)); in HWTEST_F() 554 char delimiter = ';'; HWTEST_F() local 616 char delimiter = ';'; HWTEST_F() local [all...] |
/developtools/profiler/host/smartperf/client/client_command/ |
H A D | stalling_rate_trace.cpp | 384 std::string delimiter = "rate: "; in GetFrameRate() local 387 size_t pos1 = line.find(delimiter); in GetFrameRate() 388 std::string result1 = line.substr(pos1 + delimiter.length()); in GetFrameRate() 394 size_t pos = line.find(delimiter); in GetFrameRate() 395 std::string result = line.substr(pos + delimiter.length()); in GetFrameRate() 403 std::string delimiter = "H:Present Fence "; in GetFenceId() local 404 size_t pos = line.find(delimiter); in GetFenceId() 405 std::string result = line.substr(pos + delimiter.length()); in GetFenceId()
|
H A D | sp_profiler_factory.cpp | 145 std::string delimiter = "||"; in SetByTrace() local 147 SPUtils::StrSplit(message, delimiter, values); in SetByTrace()
|
/developtools/profiler/device/plugins/memory_plugin/include/ |
H A D | buffer_splitter.h | 37 /* Find and update the NextWord's head pointer and Word length according to the delimiter within the 38 current line range. The length calculation does not include the 'delimiter' */ 39 /* When the current line cannot find a specific 'delimiter', it can 40 be split from the current position according to the new 'delimiter' */ 41 bool NextWord(char delimiter);
|
/developtools/hapsigner/hapsigntool_cpp/utils/include/ |
H A D | string_utils.h | 35 static std::vector<std::string> SplitString(const std::string& str, char delimiter);
|
/developtools/integration_verification/tools/startup_guard/config_parser_mgr/param/ |
H A D | system_parameter_parser.py | 84 def load_parameter_file(self, file_name, delimiter="="): 92 param_info = line.partition(delimiter)
|
/developtools/hapsigner/hapsigntool_cpp/utils/src/ |
H A D | string_utils.cpp | 46 std::vector<std::string> StringUtils::SplitString(const std::string& str, char delimiter) in SplitString() argument 51 while (std::getline(tokenStream, token, delimiter)) { in SplitString()
|
/developtools/smartperf_host/trace_streamer/src/parser/ptreader_parser/bytrace_parser/ |
H A D | bytrace_event_parser.cpp | 33 std::string GetFunctionName(const std::string_view &text, const std::string_view &delimiter) in GetFunctionName() argument 36 if (delimiter.empty()) { in GetFunctionName() 40 std::size_t foundIndex = text.find(delimiter); in GetFunctionName() 42 std::size_t funIndex = foundIndex + delimiter.size(); in GetFunctionName()
|
/developtools/ace_ets2bundle/compiler/ |
H A D | main.js | 732 const externalApiPaths = externalApiPathStr.split(path.delimiter);
|