/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | LatencyResult.java | 112 public void putToBundle(Bundle results, String prefix) { in putToBundle() argument 114 results.putFloat(prefix + "_avg", getMeanTimeSec() * 1000.0f); in putToBundle() 115 results.putFloat(prefix + "_std_dev", mTimeStdDeviation * 1000.0f); in putToBundle() 116 results.putFloat(prefix + "_total_time", mTotalTimeSec * 1000.0f); in putToBundle() 117 results.putInt(prefix + "_iterations", mIterations); in putToBundle()
|
/test/vts/utils/python/reporting/ |
D | log_uploading_utils.py | 98 def UploadLogs(self, prefix=None, dryrun=False): argument 110 if not prefix: 111 prefix = '%s_%s_' % ( 124 file_name_prefix=prefix,
|
/test/vts/runners/host/ |
D | logger.py | 131 def _initiateTestLogger(log_path, prefix=None, filename=None, log_severity="INFO"): argument 155 if prefix: 156 terminal_format = "[{}] {}".format(prefix, log_line_format) 218 prefix=None, argument 238 logger = _initiateTestLogger(log_path, prefix, filename, log_severity)
|
D | base_test.py | 1483 def DumpBugReport(self, prefix=''): argument 1492 if prefix: 1493 prefix = re.sub('[^\w\-_\. ]', '_', prefix) + '_' 1504 + prefix 1569 def DumpLogcat(self, prefix=''): argument 1578 if prefix: 1579 prefix = re.sub('[^\w\-_\. ]', '_', prefix) + '_' 1592 + prefix
|
/test/vts/utils/python/common/ |
D | vts_spec_utils.py | 34 prefix = 'android.hardware.' 35 if not hal_package.startswith(prefix): 37 [hal_name, hal_version] = hal_package[len(prefix):].split('@')
|
/test/mlts/benchmark/tools/ |
D | gen_mobilenet_input.py | 14 def gen_input_files(filename, prefix, size): argument 15 basename = os.path.basename(filename) + "_" + prefix
|
/test/vts-testcase/security/system_property/ |
D | VtsTrebleSysPropTest.py | 177 x.startswith(prefix) for prefix in 276 x.startswith(prefix) 277 for prefix in self._VENDOR_OR_ODM_NAMESPACES),
|
D | vts_treble_sys_prop_test.py | 239 x.startswith(prefix) for prefix in allowed_namespaces), 337 x.startswith(prefix) 338 for prefix in self._VENDOR_OR_ODM_NAMESPACES),
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | error_msg.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | auth_error.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_profiling_list.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_test_acknowledgments.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_release.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_green_suite_release.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_green_plan_release.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_plan_release.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_performance_digest.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_profiling_overview.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | footer.jsp | 17 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
D | show_coverage.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
D | show_gcs_log.jsp | 17 <%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> 18 <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%>
|
/test/vts/compilation_tools/vtsc/code_gen/fuzzer/ |
D | HalHidlFuzzerCodeGen.cpp | 98 string prefix = "android.hardware."; in GetHalPointerName() local 99 string hal_pointer_name = comp_spec_.package().substr(prefix.size()); in GetHalPointerName()
|
/test/app_compat/csuite/integration_tests/ |
D | csuite_test_utils.py | 52 self._suite_dir = pathlib.Path(tempfile.mkdtemp(prefix='csuite')) 131 self._root_dir = pathlib.Path(tempfile.mkdtemp(prefix='csuite_apk_dir'))
|
/test/vts-testcase/vndk/abi/ |
D | vts_vndk_abi_test.py | 298 for prefix in ("/odm", "/vendor", "/apex"): 299 if target_path.startswith(prefix):
|
D | VtsVndkAbiTest.py | 310 for prefix in ("/odm", "/vendor", "/apex"): 311 if target_path.startswith(prefix):
|