Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 33) sorted by relevance

12

/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/
Dmisc.py127 def add_prefix(content: str, prefix: str) -> str:
128 if content and (not content.startswith(prefix)):
129 return prefix+content
182 prefix = _config.get("default_prefix").get("shared_library")
190 return add_prefix(output_name, prefix)
199 prefix = _config.get("default_prefix").get("static_library")
204 return add_prefix(output_name, prefix)
215 prefix = _config.get("default_prefix").get("static_library")
218 prefix = _config.get("default_prefix").get("shared_library")
221 prefix = str()
[all …]
/developtools/integration_verification/cases/smoke/basic/screenshot32/resource/
Dcapturescreentest.py159 def connect_wifi(prefix, pic): argument
161 data = get_coordinate("{}\\{}_{}".format(args.save_path, prefix, pic), "testapold")
209 def crop_picture(prefix, pic, crop_range): argument
210 pic_path = "{}\\{}_{}".format(args.save_path, prefix, pic)
211 save_path = "{}\\{}_{}".format(args.save_path, prefix, pic)
217 def cmp_picture(prefix, pic, num=1): argument
222 img2_path = "{}\\{}_{}".format(args.save_path, prefix, pic)
229 print("no such file: {}_{}".format(prefix, pic))
234 prefix = args.device_num
235 enter_shell_cmd("snapshot_display -f /data/screen_test/{}_{}".format(prefix, image))
[all …]
/developtools/integration_verification/tools/startup_guard/config_parser_mgr/param/
Dsystem_parameter_parser.py22 def __init__(self, prefix, parameter = None): argument
23 self["prefix"] = prefix
51 def __init__(self, prefix, parameter=None): argument
52 ParameterParser.__init__(self, prefix, parameter)
68 def __init__(self, prefix, parameter=None): argument
69 ParameterParser.__init__(self, prefix, parameter)
/developtools/profiler/device/plugins/ftrace_plugin/src/
Dstring_utils.cpp25 bool StringUtils::StartsWith(const std::string& str, const std::string& prefix) in StartsWith() argument
27 if (str.size() < prefix.size()) { in StartsWith()
30 return str.compare(0, prefix.size(), prefix) == 0; in StartsWith()
/developtools/ace_ets2bundle/compiler/src/fast_build/system_api/
Drollup-plugin-system-api.ts109 prefix: string; property
115 if (config.prefix === `@${moduleType}`) {
125 if (config.prefix === `@${moduleType}`) {
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/
Delf_file.py25 def __init__(self, file, prefix): argument
35 self["path"] = file[len(prefix):]
Delf_file_mgr.py27 def __init__(self, file, prefix): argument
28 super(ElfFileWithDepsInfo, self).__init__(file, prefix)
/developtools/smartperf_host/trace_streamer/
Dlcov_operator.sh34 genhtml -o out/test/html test.info --prefix $PREFIX
/developtools/profiler/host/smartperf/trace_streamer/
Dlcov_operator.sh34 genhtml -o out/test/html test.info --prefix $PREFIX
/developtools/hiperf/include/
Dperf_event_record.h154 virtual void DumpLog(const std::string &prefix) const;
179 void DumpLog(const std::string &prefix) const override;
195 void DumpLog(const std::string &prefix) const override;
227 void DumpLog(const std::string &prefix) const override;
245 void DumpLog(const std::string &prefix) const override;
Dutilities.h247 std::string ToHex(const T &source, int size = sizeof(T), bool prefix = false)
250 if (prefix) {
/developtools/profiler/device/plugins/native_daemon/src/
Dutilities.cpp172 const std::string prefix {"0x"}; in IsHexDigits() local
174 if (prefix.compare(0, prefix.size(), effectStr.substr(0, prefix.size())) == 0) { in IsHexDigits()
175 effectStr = effectStr.substr(prefix.size(), effectStr.size() - prefix.size()); in IsHexDigits()
Dstack_preprocess.cpp488 const std::string prefix = "FilePage:"; in SetHookData() local
491 mmapEvent->set_type(prefix + tagName); in SetHookData()
501 const std::string prefix = "Anonymous:"; in SetHookData() local
503 tagEvent->set_tag(prefix + tagName); in SetHookData()
593 const std::string prefix = "Anonymous:"; in WriteFrames() local
599 (uint64_t)rawStack->stackConext->addr, (prefix + tagName).c_str()); in WriteFrames()
/developtools/profiler/build/
Dlcov.sh40 genhtml --demangle-cpp -o $TEST_OUT/html $TEST_OUT/profiler_ut_coverage.info --prefix $PREFIX
/developtools/profiler/device/plugins/ftrace_plugin/include/
Dstring_utils.h24 static bool StartsWith(const std::string& str, const std::string& prefix);
Dflow_controller.h58 void GenerateRawDataFileNames(const std::string& prefix);
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/pkgs/
Dbasic_tool.py45 def translate_str_unit(x: str, dest: str, prefix: str = "~") -> float:
60 x = float(x.lstrip(prefix).rstrip(src_unit))
/developtools/hiperf/src/
Dperf_event_record.cpp157 void PerfEventRecord::DumpLog(const std::string &prefix) const in DumpLog()
159 HLOGV("%s: record %s: type %u, misc %u, size %zu\n", prefix.c_str(), GetName().c_str(), in DumpLog()
163 void PerfRecordSample::DumpLog(const std::string &prefix) const in DumpLog()
166 prefix.c_str(), data_.sample_id, header.size, data_.pid, data_.tid, data_.nr, in DumpLog()
463 void PerfRecordMmap::DumpLog(const std::string &prefix) const in DumpLog()
465 HLOGV("%s: MMAP: size %d pid %u tid %u dso '%s' (0x%llx-0x%llx)@0x%llx", prefix.c_str(), in DumpLog()
545 void PerfRecordMmap2::DumpLog(const std::string &prefix) const in DumpLog()
547 HLOGV("%s: MMAP2: size %d pid %u tid %u dso '%s' (0x%llx-0x%llx)@0x%llx", prefix.c_str(), in DumpLog()
620 void PerfRecordComm::DumpLog(const std::string &prefix) const in DumpLog()
Dutilities.cpp247 const std::string prefix {"0x"}; in IsHexDigits() local
249 if (prefix.compare(0, prefix.size(), effectStr.substr(0, prefix.size())) == 0) { in IsHexDigits()
250 effectStr = effectStr.substr(prefix.size(), effectStr.size() - prefix.size()); in IsHexDigits()
/developtools/profiler/hiebpf/include/
Dhhlog.h129 const char prefix[] {" [" #level "] %s %d %s: %s"}; \
132 prefix, __FILE__, __LINE__, __FUNCTION__, format); \
Dcommandline_flags.h161 int prefix {0}; in GetFlagName()
169 ++prefix; in GetFlagName()
172 argLen -= prefix; in GetFlagName()
176 if (prefix == shortFlagLen and argLen == shortFlagLen) { in GetFlagName()
177 flagName = std::string(argStr + prefix, argLen); in GetFlagName()
184 if (prefix == longPrefix and argLen > shortFlagLen) { in GetFlagName()
/developtools/profiler/device/services/ipc/src/
Dproto_encoder_plugin_generator.cpp31 std::string prefix = ""; in GetPrefix() local
36 prefix += fileName.c_str()[i]; in GetPrefix()
38 return prefix; in GetPrefix()
/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/ftrace_data/default/
Dtrace_plugin_config.proto27 string raw_data_prefix = 13; // raw data file prefix for debug
/developtools/profiler/protos/types/plugins/ftrace_data/default/
Dtrace_plugin_config.proto27 string raw_data_prefix = 13; // raw data file prefix for debug
/developtools/smartperf_host/trace_streamer/src/protos/types/plugins/ftrace_data/default/
Dtrace_plugin_config.proto27 string raw_data_prefix = 13; // raw data file prefix for debug

12