HomeSort by relevance Sort by last modified time
    Searched full:testlist (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/stlport/test/eh/
test_list.cpp 31 typedef EH_STD::__list__<TestClass, eh_allocator(TestClass) > TestList;
34 container_category(const TestList&)
49 void operator()( TestList& list ) const
55 for ( TestList::iterator p = list.begin(); p != list.end(); p++ )
57 TestList::iterator tmp=p;
66 TestList testList, testList2;
69 while ( testList.size() < listSize )
72 testList.push_back( x );
76 StrongCheck( testList, test_insert_one<TestList>(testList) )
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedListTest.java 40 LinkedList<Object> testList;
645 assertTrue(testList.offerLast(testObjOne));
646 assertTrue(testList.offerLast(testObjTwo));
647 assertTrue(testList.offerLast(testObjOne));
648 assertTrue(testList.offerLast(testObjThree));
649 assertTrue(testList.offerLast(testObjOne));
650 assertEquals(5, testList.size());
651 assertTrue(testList.removeFirstOccurrence(testObjOne));
652 assertFalse(testList.removeFirstOccurrence(testObjFour));
653 assertEquals(testObjTwo, testList.peekFirst())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 31 testlist = results["args"]
32 args = testlist.children
47 atom = testlist.parent
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_isinstance.py 31 testlist = results["args"]
32 args = testlist.children
47 atom = testlist.parent
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleServerStartActivity.java 92 ArrayList<Test> testList = new ArrayList<Test>();
93 testList.add(new Test(R.string.ble_server_add_service));
94 testList.add(new Test(R.string.ble_server_receiving_connect));
95 testList.add(new Test(R.string.ble_server_read_characteristic));
96 testList.add(new Test(R.string.ble_server_write_characteristic));
97 testList.add(new Test(R.string.ble_server_read_descriptor));
98 testList.add(new Test(R.string.ble_server_write_descriptor));
99 testList.add(new Test(R.string.ble_server_reliable_write));
100 testList.add(new Test(R.string.ble_server_receiving_disconnect));
101 return testList;
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
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)? RPARE
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeprocessinginstructionnodeattributes.java 63 NodeList testList;
67 testList = doc.getChildNodes();
68 piNode = testList.item(0);
nodeprocessinginstructionnodename.java 64 NodeList testList;
68 testList = doc.getChildNodes();
69 piNode = testList.item(0);
nodeprocessinginstructionnodetype.java 64 NodeList testList;
68 testList = doc.getChildNodes();
69 piNode = testList.item(0);
nodeprocessinginstructionnodevalue.java 65 NodeList testList;
69 testList = doc.getChildNodes();
70 piNode = testList.item(0);
hc_nodecommentnodetype.java 65 NodeList testList;
70 testList = doc.getChildNodes();
71 for (int indexN10040 = 0; indexN10040 < testList.getLength(); indexN10040++) {
72 commentNode = (Node) testList.item(indexN10040);
nodecommentnodetype.java 65 NodeList testList;
70 testList = doc.getChildNodes();
71 for (int indexN10040 = 0; indexN10040 < testList.getLength(); indexN10040++) {
72 commentNode = (Node) testList.item(indexN10040);
nodeprocessinginstructionsetnodevalue.java 62 NodeList testList;
66 testList = doc.getChildNodes();
67 piNode = testList.item(0);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
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)* [',']
158 yield_expr: 'yield' [testlist]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
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)* [',']
158 yield_expr: 'yield' [testlist]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
make-hosted 50 open TESTLIST, "<./tests/${suite}/LIST";
51 while (<TESTLIST>) {
62 close TESTLIST;
sunspider 107 open TESTLIST, "<", "${suitePath}/LIST" or die "Can't find ${suitePath}/LIST";
108 while (<TESTLIST>) {
120 close TESTLIST;
  /external/chromium_org/chrome/common/extensions/docs/server2/
github_file_system_test.py 29 def testList(self):
  /external/chromium_org/tools/telemetry/telemetry/core/
camel_case_unittest.py 18 def testList(self):
  /frameworks/base/tests/BiDiTests/res/layout/
main.xml 22 <ListView android:id="@+id/testlist"
  /external/llvm/tools/bugpoint/
ListReducer.h 177 std::vector<ElTy> TestList(TheList);
178 TestList.erase(TestList.begin()+i);
180 if (doTest(EmptyList, TestList, Error) == KeepSuffix) {
182 TheList.swap(TestList);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
graminit.h 74 #define testlist 327 macro
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
graminit.h 74 #define testlist 327 macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_genericpath.py 64 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd',
66 for s1 in testlist:
67 for s2 in testlist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_genericpath.py 64 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd',
66 for s1 in testlist:
67 for s2 in testlist:

Completed in 854 milliseconds

1 2 3