/external/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 255 testlist = filtered_tests 256 tcount = len(testlist) 270 pm.call_pre_suite(tcount, [tidx['id'] for tidx in testlist]) 293 for tidx in testlist: 328 for tidx in testlist[index - 1:]: 359 testlist = json.load(test_data, object_pairs_hook=OrderedDict) 362 testlist = list() 364 idlist = get_id_list(testlist) 366 for k in testlist: 368 return testlist [all …]
|
D | tdc_helper.py | 31 def list_test_cases(testlist): argument 33 for curcase in testlist: 37 def list_categories(testlist): argument 39 categories = set(map(lambda x: x['category'], testlist))
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/ |
D | 13-1.c | 36 static int testlist[NUMTESTS][4] = { variable 76 its.it_value.tv_sec = testlist[i][0]; in main() 77 its.it_value.tv_nsec = testlist[i][1]; in main() 78 its.it_interval.tv_sec = testlist[i][2]; in main() 79 its.it_interval.tv_nsec = testlist[i][3]; in main()
|
/external/autotest/tko/ |
D | test.cgi | 53 testlist = [test for test in tests 60 if testlist and testlist[0]: 61 link = testlist[0].url 62 box = display.status_count_box(db, testlist, link=link)
|
/external/python/cpython2/Grammar/ |
D | Grammar | 20 eval_input: testlist NEWLINE* ENDMARKER 37 expr_stmt: testlist (augassign (yield_expr|testlist) | 38 ('=' (yield_expr|testlist))*) 49 return_stmt: 'return' [testlist] 68 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] 116 testlist: test (',' test)* [','] 120 classdef: 'class' NAME ['(' [testlist] ')'] ':' suite 142 yield_expr: 'yield' [testlist]
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | Python.g | 87 : (NEWLINE)* testlist (NEWLINE)* 144 : testlist 145 ( augassign testlist 146 | (ASSIGN testlist)+ 167 ( testlist 168 | RIGHTSHIFT testlist 191 return_stmt: 'return' (testlist)? 194 yield_stmt: 'yield' testlist 240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)? 314 atom: LPAREN (testlist)? RPAREN [all …]
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_isinstance.py | 31 testlist = results["args"] 32 args = testlist.children 47 atom = testlist.parent
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_isinstance.py | 31 testlist = results["args"] 32 args = testlist.children 47 atom = testlist.parent
|
/external/autotest/client/tests/qemu_iotests/ |
D | qemu_iotests.py | 40 def run_once(self, options='', testlist=''): argument 77 if testlist: 78 cmd += " " + testlist
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 13 eval_input: testlist NEWLINE* ENDMARKER 38 expr_stmt: testlist_star_expr (annassign | augassign (yield_expr|testlist) | 52 return_stmt: 'return' [testlist] 72 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] 122 testlist: test (',' test)* [','] 154 yield_arg: 'from' test | testlist
|
/external/python/cpython3/Grammar/ |
D | Grammar | 13 eval_input: testlist NEWLINE* ENDMARKER 41 expr_stmt: testlist_star_expr (annassign | augassign (yield_expr|testlist) | 53 return_stmt: 'return' [testlist] 74 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] 117 testlist: test (',' test)* [','] 150 yield_arg: 'from' test | testlist
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 32 eval_input: testlist NEWLINE* ENDMARKER 56 expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) | 69 return_stmt: 'return' [testlist] 88 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] 138 testlist: test (',' test)* [','] 170 yield_arg: 'from' test | testlist
|
/external/virglrenderer/tests/ |
D | test_virgl_resource.c | 92 static struct res_test testlist[] = { variable 270 ret = virgl_renderer_resource_create(&testlist[_i].args, NULL, 0); in START_TEST() 271 ck_assert_int_eq(ret, testlist[_i].retval); in START_TEST() 298 tcase_add_loop_test(tc_core, virgl_res_tests, 0, ARRAY_SIZE(testlist)); in virgl_init_suite()
|
/external/python/cpython2/Lib/test/ |
D | test_genericpath.py | 64 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd', 66 for s1 in testlist: 67 for s2 in testlist:
|
/external/python/cpython3/Include/ |
D | graminit.h | 78 #define testlist 331 macro
|
/external/python/cpython2/Include/ |
D | graminit.h | 74 #define testlist 327 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 84 testlist = 327 variable
|
/external/python/cpython3/Lib/ |
D | symbol.py | 88 testlist = 331 variable
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 574 def testlist(self, nodelist): member in Transformer 580 testlist_safe = testlist # XXX 581 testlist1 = testlist 582 exprlist = testlist 590 return self.testlist(nodelist) 1006 if t in (symbol.exprlist, symbol.testlist, symbol.testlist_safe, symbol.testlist_comp): 1427 symbol.testlist, 1482 symbol.testlist,
|
/external/python/cpython3/Lib/test/ |
D | test_genericpath.py | 88 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd', 90 for s1 in testlist: 91 for s2 in testlist:
|
/external/python/cpython2/Demo/parser/ |
D | example.py | 173 (symbol.testlist,
|
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunner.java | 1016 Reader testlist, String configName, String screenRotation, String surfaceType, in generateTestInstances() argument 1022 BufferedReader testlistReader = new BufferedReader(testlist); in generateTestInstances() 1956 File testlist = new File(mBuildHelper.getTestsDir(), mCaselistFile); in loadTests() local 1957 if (!testlist.isFile()) { in loadTests() 1960 reader = new FileReader(testlist); in loadTests()
|
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunnerTest.java | 131 StringWriter testlist = new StringWriter(); in buildGlesTestRunner() local 133 testlist.write(test.getClassName() + "." + test.getTestName() + "\n"); in buildGlesTestRunner() 135 return buildGlesTestRunner(majorVersion, minorVersion, testlist.toString(), testsDir); in buildGlesTestRunner() 146 String testlist, in buildGlesTestRunner() argument 160 runner.setCaselistReader(new StringReader(testlist)); in buildGlesTestRunner()
|
/external/tcpdump/ |
D | Makefile.in | 459 testlist:
|
/external/python/cpython2/Python/ |
D | ast.c | 584 assert(TYPE(n) == testlist || in seq_for_testlist() 2126 assert(TYPE(n) == testlist || in ast_for_testlist() 2157 REQ(n, testlist); in ast_for_class_bases() 2217 if (TYPE(ch) == testlist) in ast_for_expr_stmt() 2260 if (TYPE(value) == testlist) in ast_for_expr_stmt()
|