/test/mlts/benchmark/results/ |
D | Chart.bundle.min.js | 10 …r)return r(o,!0);var u=new Error("Cannot find module '"+o+"'");throw u.code="MODULE_NOT_FOUND",u}v… argument
|
/test/vts/testcases/host/kernel_proc_file_api_test/proc_tests/ |
D | ProcZoneInfoTest.py | 24 t_APAGES = literal_token(r'pages\s') 25 t_PAGESETS = literal_token(r'pagesets') 26 t_CPU = literal_token(r'cpu') 27 t_VM = literal_token(r'vm') 28 t_STATS = literal_token(r'stats') 29 t_THRESHOLD = literal_token(r'threshold') 30 t_NODE = literal_token(r'Node') 31 t_ZONE = literal_token(r'zone') 32 t_PROTECTION = literal_token(r'protection') 33 t_PERNODE = literal_token(r'per-node') [all …]
|
D | KernelProcFileTestBase.py | 78 r'0x[a-f0-9]+' 83 r'([0-9]+[.][0-9]*|[0-9]*[.][0-9]+)' 88 r'\d+' 92 t_PATH = r'/[^\0]+' 93 t_COLON = r':' 94 t_EQUALS = r'=' 95 t_COMMA = r',' 96 t_PERIOD = r'\.' 97 t_STRING = r'[a-zA-Z\(\)_0-9\-@]+' 99 t_TAB = r'\t' [all …]
|
D | ProcStatTest.py | 26 t_CPU = literal_token(r'cpu[0-9]*') 27 t_INTR = literal_token(r'intr') 28 t_CTXT = literal_token(r'ctxt') 29 t_BTIME = literal_token(r'btime') 30 t_PROCESSES = literal_token(r'processes') 31 t_PROCS_RUNNING = literal_token(r'procs_running') 32 t_PROCS_BLOCKED = literal_token(r'procs_blocked') 33 t_SOFTIRQ = literal_token(r'softirq')
|
D | ProcMapsTest.py | 21 @with_pattern(r'[0-9a-f]{8,}') 25 @with_pattern(r'[0-9a-f]{2,5}') 29 @with_pattern(r'[0-9]+') 33 @with_pattern(r'[^\n^\0]*') 37 @with_pattern(r'[r-]') 41 @with_pattern(r'[w-]') 45 @with_pattern(r'[x-]') 49 @with_pattern(r'[sp]')
|
D | ProcAsoundTests.py | 26 t_LBRACKET = literal_token(r'\[') 27 t_RBRACKET = literal_token(r'\]') 29 t_NO = literal_token(r'no') 30 t_SOUNDCARDS = literal_token(r'soundcards')
|
D | ProcCpuFileTests.py | 37 t_STRING = r'[^:^ ^\t^\n]+' 40 t_NUMBER = r'x' 41 t_HEX_LITERAL = r'x' 42 t_FLOAT = r'x'
|
D | ProcMemInfoTest.py | 23 @with_pattern(r'[^ ^\t^\n^:^\0]+') 27 @with_pattern(r'[ ]*[0-9]+') 31 @with_pattern(r'(kB)?')
|
D | ProcUidConcurrentTimeTests.py | 31 t_CPU = literal_token(r'cpus') 72 t_POLICY = literal_token(r'policy')
|
D | ProcVmallocInfoTest.py | 46 r'phys=(0x)?[a-f0-9]+' 51 r'N[0-9]+=[1-9][0-9]*'
|
D | ProcModulesTest.py | 42 …test_re = re.compile(r"^\w+ \d+ (\d+|-) (((\w+,)*(\[permanent\],)?)|-) (Unloading|Loading|Live) 0x…
|
D | ProcUidTimeInStateTest.py | 30 t_UID = literal_token(r'uid')
|
D | ProcQtaguidCtrlTest.py | 93 match = re.match(r"(\d+)\.(\d+)\.(\d+)", out)
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | header.jsp | 32 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 33 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | Processor.java | 252 BenchmarkResult r = new BenchmarkResult(e.getMessage()); in getBenchmark() 253 Log.w(TAG, "Unsupported SDK for test: " + r.toString()); in getBenchmark() 254 return r; in getBenchmark() 270 BenchmarkResult r; in getBenchmark() local 274 r = runBenchmarkLoop(runTimeSeconds, mCompleteInputSet); in getBenchmark() 282 mCompilationBenchmarkRunTimeSeconds, mCompilationBenchmarkMaxIterations, r); in getBenchmark() 285 return r; in getBenchmark()
|
/test/vts/runners/host/ |
D | records.py | 247 def __add__(self, r): argument 259 if not isinstance(r, TestResult): 261 (r, type(r))) 262 r.reportNonExecutedRecord() 267 r_value = getattr(r, name) 289 r_value = list(getattr(r, name))
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | TestRunDetails.java | 66 for (TestCaseResult r : TestCaseResult.values()) { in TestRunDetails() 67 columns[r.getNumber()] = new ResultColumn(r.name()); in TestRunDetails()
|
/test/vti/test_serving/gae/testing/ |
D | test_e2e.py | 27 r = requests.get(URL) 28 assert b'VTS' in r.content
|
D | README.md | 12 pip install -r e2e/requirements-dev.txt
|
/test/app_compat/csuite/integration_tests/ |
D | csuite_crash_detection_test.py | 42 self.expect_regex(completed_process.stdout, r"""PASSED\s*:\s*1""") 54 self.expect_regex(completed_process.stdout, r"""FAILED\s*:\s*1""")
|
/test/mlts/benchmark/src/com/android/nn/benchmark/app/ |
D | NNControls.java | 151 Parcelable r[] = data.getParcelableArrayExtra(NNBenchmark.EXTRA_RESULTS_RESULTS); in onActivityResult() local 157 BenchmarkResult br = (BenchmarkResult) r[ct]; in onActivityResult() 163 mResults[id[ct]] = ((BenchmarkResult) r[ct]).getMeanTimeSec(); in onActivityResult()
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowPlanRunServlet.java | 85 for (TestCaseResult r : TestCaseResult.values()) { in doGetHandler() 86 resultNames.add(r.name()); in doGetHandler()
|
D | ShowTableServlet.java | 142 for (TestCaseResult r : TestCaseResult.values()) { in doGetHandler() 143 resultNames.add(r.name()); in doGetHandler()
|
/test/vti/dashboard/src/main/java/com/android/vts/config/ |
D | ObjectifyListener.java | 149 streamSupplier.get().filter(r -> r.equals("admin")).findFirst(); in contextInitialized()
|
/test/mlts/models/assets/ssd_mobilenet_v1_coco_quantized/ |
D | tarmac.output7 | 1 …Dd_Y^T\r\C]N_GHZW}gdpDnEDYDQ`[LZMGJQ]VDs_TjQ^_D~RTbeTNVT^RCI?;S5=P1EK4MKEZDEZSUCY^U�NJLTQKDD?5:43…
|