/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
D | parser_lite.py | 92 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 …]
|
D | parser.py | 98 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/ |
D | utils.py | 24 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/ |
D | templates.py | 216 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/ |
D | statistics_exception.cpp | 54 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()
|
D | statistics_event.cpp | 38 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 …]
|
D | statistics_componment.cpp | 40 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 152 …line = {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 …]
|
D | statistics_ability.cpp | 40 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/ |
D | NativePressTest.py | 53 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/ |
D | pretreat_targets.py | 55 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/ |
D | make_report.py | 220 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/ |
D | build_before_generate.py | 62 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)
|
D | after_lcov_branch.py | 66 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/ |
D | manager.py | 84 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/ |
D | tongz.css | 34 .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 …]
|
D | style.css | 24 .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/ |
D | common.h | 27 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/ |
D | LineJsunit.test.ets | 25 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/ |
D | keyword_filter.py | 123 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/ |
D | public_method.py | 56 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/ |
D | Line.test.ets | 25 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/ |
D | attest_utils_memleak.h | 38 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/ |
D | attest_utils_memleak.h | 38 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/ |
D | index.css | 259 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/ |
D | index.css | 259 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 …]
|