Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 353) sorted by relevance

12345678910>>...15

/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
Dparser_lite.py92 for line in lines:
94 LOG.debug(line)
95 self.parse(line)
115 def _is_test_run(line): argument
116 return True if _TEST_RUN_TAG in line else False
119 def _is_test_start_run(line): argument
120 return True if _TEST_START_RUN_TAG in line else False
123 def _is_informational_start(line): argument
124 return True if _INFORMATIONAL_START in line else False
127 def _is_test_start(line): argument
[all …]
Dparser.py98 for line in lines:
99 LOG.debug(line)
100 self.parse(line)
113 def parse(self, line): argument
115 if self.state_machine.suites_is_started() or line.startswith(
117 if line.startswith(_START_TEST_RUN_MARKER):
118 message = line[len(_TEST_RUN_MARKER):].strip()
120 elif line.startswith(_INFORMATIONAL_MARKER):
122 message = line[len(_INFORMATIONAL_MARKER):].strip()
123 if re.match(pattern, line.strip()):
[all …]
/test/testfwk/xdevice/plugins/ohos/src/ohos/
Dutils.py24 def parse_line_key_value(line): argument
27 if "=" in line:
28 arr = line.split("=")
37 for line in in_str.split("\n"):
38 if Constant.PRODUCT_PARAM_START in line:
40 elif Constant.PRODUCT_PARAM_END in line:
43 params.update(parse_line_key_value(line))
/test/testfwk/developer_test/libs/fuzzlib/tools/
Dtemplates.py216 for line in backtrace.split("\n"):
219 if line.strip().startswith(tag) == True \
220 and "in" in line and "exec/s" not in line:
227 if block_line in line:
231 new_backtrack = " %s %s \n" % (new_backtrack, line)
239 new_backtrack = " %s %s \n" % (new_backtrack, line)
/test/ostest/wukong/report/src/
Dstatistics_exception.cpp54 std::vector<std::string> line; in StatisticsDetail() local
57 line.push_back(crashTypesIter); in StatisticsDetail()
60 line.push_back(std::to_string(curExceptionTypeCount)); in StatisticsDetail()
69 line.push_back(proportionStr); in StatisticsDetail()
70 record_.push_back(line); in StatisticsDetail()
71 line.clear(); in StatisticsDetail()
74 line = {"total", std::to_string(exceptionTotal_), "100%"}; in StatisticsDetail()
75 record_.push_back(line); in StatisticsDetail()
Dstatistics_event.cpp38 std::vector<std::string> line; in StatisticsDetail() local
45 … UpdateLine(curEventStatisticsRecordPtr, curEventStatisticsMsgPtr->eventTypeTotal_, line); in StatisticsDetail()
46 record_.push_back(line); in StatisticsDetail()
50 UpdateLine(curBundleAllStatisticsPtr, curEventStatisticsMsgPtr->eventTypeTotal_, line); in StatisticsDetail()
51 record_.push_back(line); in StatisticsDetail()
116 uint32_t eventTypeTotal, std::vector<std::string> &line) in UpdateLine() argument
130 line = {curElementType, curExecTimes, curProportionStr}; in UpdateLine()
135 std::vector<std::string> line; in GlobalElementTypesStatistics() local
151 UpdateLine(eventStatisticsRecordPtr, execCount_, line); in GlobalElementTypesStatistics()
152 record_.push_back(line); in GlobalElementTypesStatistics()
[all …]
Dstatistics_componment.cpp40 std::vector<std::string> line; in StatisticsDetail() local
47 …eLine(curComponmentStatisticsRecordPtr, curComponmentStatisticsMsgPtr->componmentTypeTotal_, line); in StatisticsDetail()
48 record_.push_back(line); in StatisticsDetail()
54 … UpdateLine(curBundleAllStatisticsPtr, curComponmentStatisticsMsgPtr->componmentTypeTotal_, line); in StatisticsDetail()
55 record_.push_back(line); in StatisticsDetail()
125 … unsigned int componmentTypeTotal, std::vector<std::string> &line) in UpdateLine() argument
152line = {curComponmentType, curExecTimes, curProportionStr, curInputedTimes, curExpectInputTimes, c… in UpdateLine()
157 std::vector<std::string> line; in GlobalComponmentTypeStatistics() local
178 UpdateLine(componmentTypeRecordPtr, execCount_, line); in GlobalComponmentTypeStatistics()
179 record_.push_back(line); in GlobalComponmentTypeStatistics()
[all …]
Dstatistics_ability.cpp40 std::vector<std::string> line; in StatisticsDetail() local
47 UpdateLine(curAbilityStatisticsRecordPtr, line); in StatisticsDetail()
48 record_.push_back(line); in StatisticsDetail()
50 UpdateLine(globalAbilityStatisticsRecordPtr, line); in StatisticsDetail()
51 record_.push_back(line); in StatisticsDetail()
95 std::vector<std::string> &line) in UpdateLine() argument
112 line = {bundleName, inputedAbilityCount, abilitiesCount, curCoverageStr}; in UpdateLine()
/test/xts/tools/lite/reliability/
DNativePressTest.py53 for line in splitlines:
54 print("Start go get pid with line:" + line)
55 if len(line.split()) >= 1:
56 print("Start go get pid:" + line)
57 testPID.append(line.split()[1])
87 for line in splitlines:
88 print("Get exception file with line " + line)
89 splitlines = line.split()
/test/testfwk/developer_test/src/core/build/
Dpretreat_targets.py55 for line in self.target_list:
56 path = line.split(':')[0][2:]
57 name = line.split(':')[1].split('(')[0]
118 for line in lines:
119 if "TargetName" in line:
120 line = line.replace("TargetName", name)
121 json_data += line
130 for line in gn_file.readlines():
131 if line.startswith("module_output_path"):
132 output_path = line.split()[2].strip('"')
/test/testfwk/developer_test/localCoverage/interfaceCoverage/
Dmake_report.py220 for line in datalist:
221 if str(line[2]) == "N":
223 "<font=>" + subsystem_name + "</font>", "<font>" + line[0] + "</font>",
224 "<font>" + line[1] + "</font>",
225 "<font color=\"red\">" + str(line[2]) + "</font>")
229 "<font>" + subsystem_name + "</font>", "<font>" + line[0] + "</font>",
230 "<font>" + line[1] + "</font>",
231 "<font color=\"green\">" + str(line[2]) + "</font>")
/test/testfwk/developer_test/localCoverage/restore_comment/
Dbuild_before_generate.py62 for line in code_lines:
66 if key in line and line.strip().startswith(key):
67 write_fp.write(line)
69 elif " //LCOV_EXCL_BR_LINE" not in line and not line.strip().endswith("\\") \
71 write_fp.write(line.strip("\n").strip("\n\r") + " //LCOV_EXCL_BR_LINE")
75 write_fp.write(line)
Dafter_lcov_branch.py66 for line in code_lines:
67 if key in line:
68 … write_fp.write(line.strip("\n").strip("\n\r").replace(" //LCOV_EXCL_BR_LINE", ""))
71 write_fp.write(line)
/test/testfwk/developer_test/aw/python/distributed/common/
Dmanager.py84 for line in lines:
85 line = line.replace("\n", "")
86 line = line.strip()
87 temp = line.split(",")
/test/xts/acts/arkui/ace_ets_webView/entry/src/main/resources/rawfile/css/
Dtongz.css34 .kongbai{ width:100%;height:5px; line-height:5px; font-size:1px; float:left;}
39 .lineheight22{ line-height:22px;}
40 .lineheight20{ line-height:20px;}
41 .lineheightbai{ line-height:100%;}
70 .left_menu h1{width:295px; padding-left:5px; float:left; font-size:14px;height:20px; line-height:20…
73 .rightmenu ul{width:300px; float:left; font-size:12px;height:20px; line-height:20px; margin-top:40p…
79 … 11px 3px 11px; text-align:center; font-family:'΢���ź�';overflow:hidden; line-height:30px; height…
95 .tjtz-main dl h3{ width:290px;height:25px; line-height:25px; text-align:center; background:#d66d41;…
100 .admminfo{ line-height:22px; font-size:12px; width:140px;float:left; display:inline;margin-left:5px…
106 .hottag{width:910px; float:left; height:28px;margin-top:7px; line-height:28px; overflow:hidden;}
[all …]
Dstyle.css24 .vertical-line{
65 line-height: 35px;
72 line-height: 35px;
82 line-height: 35px;
111 line-height: 35px;
167 line-height: 30px;
189 line-height: 16px;
208 line-height: 28px;
221 line-height: 40px;
242 line-height: 28px;
[all …]
/test/ostest/wukong/common/include/
Dcommon.h27 char line[NUMBER]; in runProcess() local
28 while (fgets(line, NUMBER, fp)) { in runProcess()
29 stm << line; in runProcess()
/test/xts/acts/arkui/ace_ets_component_three/entry/src/main/ets/test/
DLineJsunit.test.ets25 uri: 'MainAbility/pages/line',
30 console.info("get line state success " + JSON.stringify(pages));
31 if (!("line" == pages.name)) {
32 console.info("get line state success " + JSON.stringify(pages.name));
35 console.info("push line page success " + JSON.stringify(result));
38 console.error("push line page error: " + err);
45 console.info("line after each called");
51 let strJson = getInspectorByKey('line');
61 let strJson = getInspectorByKey('line');
71 let strJson = getInspectorByKey('line');
[all …]
/test/testfwk/developer_test/localCoverage/keyword_registration/
Dkeyword_filter.py123 def get_tag(content, line): argument
193 keyword_line_list = [int(line) for line in keyword_line_list]
198 for line in keyword_line_list:
199 tag_html = get_tag(content, line)
201 keyword_branch_list_append(line)
205 keyword_branch_list_append(line)
207 keyword_branch_list_append(line)
209 keyword_branch_list_append(line)
211 keyword_branch_list_append(line)
216 def code_body_judge(self, line, content): argument
[all …]
/test/testfwk/developer_test/localCoverage/resident_service/
Dpublic_method.py56 for line in strout.split("\n"):
57 line = line.strip().replace('\t', ' ')
58 if line != "":
59 device_sn_list.append(line)
/test/xts/acts/arkui/ace_ets_component_seven/ace_ets_component_seven_special/entry/src/main/ets/test/
DLine.test.ets25 uri: 'MainAbility/pages/line',
30 console.info("get line state success " + JSON.stringify(pages));
31 if (!("line" == pages.name)) {
32 console.info("get line state success " + JSON.stringify(pages.name));
35 console.info("push line page success " + JSON.stringify(result));
38 console.error("push line page error: " + err);
/test/xts/device_attest_lite/services/core/include/utils/
Dattest_utils_memleak.h38 uint32_t line; member
46 int32_t AddMemInfo(void* addr, const char* file, uint32_t line, const char* func);
/test/xts/device_attest/services/core/include/utils/
Dattest_utils_memleak.h38 uint32_t line; member
46 int32_t AddMemInfo(void* addr, const char* file, uint32_t line, const char* func);
/test/xts/acts/arkui/ace_standard/src/main/js/MainAbility/pages/refresh/router5/
Dindex.css259 line-cap: round;
301 line-cap: square;
309 line-cap: round;
317 line-cap: round;
324 line-cap: square;
332 line-cap: square;
375 line-cap: square;
382 line-cap: square;
389 line-cap: square;
396 line-cap: square;
[all …]
/test/xts/acts/arkui/ace_standard/src/main/js/MainAbility/pages/refresh/router1/
Dindex.css259 line-cap: round;
301 line-cap: square;
309 line-cap: round;
317 line-cap: round;
324 line-cap: square;
332 line-cap: square;
375 line-cap: square;
382 line-cap: square;
389 line-cap: square;
396 line-cap: square;
[all …]

12345678910>>...15