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

1 2 3 4

  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
ExpandableListWithHeadersTest.java 67 ExpandableListTester tester = new ExpandableListTester(mExpandableListView, this); local
68 tester.testContextMenus();
73 ExpandableListTester tester = new ExpandableListTester(mExpandableListView, this); local
74 tester.testConvertionBetweenFlatAndPackedOnGroups();
75 tester.testConvertionBetweenFlatAndPackedOnChildren();
80 ExpandableListTester tester = new ExpandableListTester(mExpandableListView, this); local
81 tester.testSelectedPositionOnGroups();
82 tester.testSelectedPositionOnChildren();
ExpandableListBasicTest.java 127 ExpandableListTester tester = new ExpandableListTester(mExpandableListView, this); local
128 tester.testContextMenus();
133 ExpandableListTester tester = new ExpandableListTester(mExpandableListView, this); local
134 tester.testConvertionBetweenFlatAndPackedOnGroups();
135 tester.testConvertionBetweenFlatAndPackedOnChildren();
140 ExpandableListTester tester = new ExpandableListTester(mExpandableListView, this); local
141 tester.testSelectedPositionOnGroups();
142 tester.testSelectedPositionOnChildren();
  /frameworks/base/core/tests/coretests/src/android/os/
IdleHandlerTest.java 60 TestHandlerThread tester = new BaseTestHandler() { local
89 tester.doTest(1000);
94 TestHandlerThread tester = new BaseTestHandler() { local
125 tester.doTest(1000);
131 TestHandlerThread tester = new BaseTestHandler() { local
160 tester.doTest(1000);
165 TestHandlerThread tester = new BaseTestHandler() { local
196 tester.doTest(1000);
BroadcasterTest.java 37 HandlerTester tester = new HandlerTester() { local
60 tester.doTest(1000);
114 HandlerTester tester = new Tests2and3(2); local
115 tester.doTest(1000);
123 HandlerTester tester = new Tests2and3(10); local
124 tester.doTest(1000);
133 HandlerTester tester = new HandlerTester() { local
159 tester.doTest(1000);
168 HandlerTester tester = new HandlerTester() { local
194 tester.doTest(1000)
203 HandlerTester tester = new HandlerTester() { local
    [all...]
MessageQueueTest.java 62 TestHandlerThread tester = new BaseTestHandler() { local
76 tester.doTest(1000);
81 TestHandlerThread tester = new BaseTestHandler() { local
100 tester.doTest(1000);
  /external/webkit/WebCore/manual-tests/
interrupted-compound-transform.html 16 #tester {
47 var tester = document.getElementById('tester');
48 tester.style.webkitTransform = "rotateX(65deg) translateZ(75px) rotateZ(" + index + "deg)";
74 <div id="tester">
template.html 14 Expected results if the test PASSES here. Please describe the results the tester would see if the bug in question is FIXED.
18 Expected results if the test FAILS here. Please describe the results the tester would see if the bug in question is NOT FIXED. In many cases, this is just a description of the original bug.
  /external/clearsilver/cs/
test_url_validate.hdf 4 MailUrl = mailto:tester@google.com
  /packages/experimental/StrictModeTest/
AndroidManifest.xml 14 <application android:label="Strict Mode Tester">
17 android:label="Strict Mode Tester">
  /dalvik/vm/test/
AtomicTest.c 365 int tester = 7; local
366 prev = __atomic_inc(&tester);
367 __atomic_inc(&tester);
368 __atomic_inc(&tester);
369 dvmFprintf(stdout, "bionic 3 inc: %d -> %d\n", prev, tester);
370 prev = __atomic_dec(&tester);
371 __atomic_dec(&tester);
372 __atomic_dec(&tester);
373 dvmFprintf(stdout, "bionic 3 dec: %d -> %d\n", prev, tester);
374 prev = __atomic_swap(27, &tester);
    [all...]
  /hardware/ril/mock-ril/src/cpp/
worker.cpp 348 TesterThread *tester = new TesterThread(); local
349 delete tester;
356 tester = new TesterThread();
357 tester->Run(wq);
358 LOGD("testWorker tester %p running", tester);
360 LOGD("testWorker tester %p stopping", tester);
361 tester->Stop();
362 LOGD("testWorker tester %p stopped", tester)
    [all...]
  /external/chromium/base/
timer_unittest.cc 183 OneShotTimerTester tester(&did_run);
184 tester.Start();
199 OneShotTimerTester tester(&did_run, 100 /* milliseconds */);
200 tester.Start();
241 OneShotTimerTester tester(&did_run, 300);
242 tester.Start();
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 123 OrderTestHelper tester = new OrderTestHelper() { local
138 tester.doTest(1000, 50);
146 OrderTestHelper tester = new OrderTestHelper() { local
166 tester.doTest(1000, 50);
  /external/webkit/WebKitTools/iExploder/htdocs/
index.html 7 <h2>iExploder: Web Browser Quality Assurance Tester</h2>
  /external/webkit/WebKitTools/Scripts/
test-webkit-scripts 84 tester = ScriptsTester(os.path.dirname(__file__)) variable in class:ScriptsTester
85 tester.main()
  /external/webkit/WebCore/platform/text/gtk/
TextCodecGtk.cpp 216 GIConv tester; local
218 tester = g_iconv_open(m_internalEncodingName, encName);
219 if (tester == reinterpret_cast<GIConv>(-1)) {
222 g_iconv_close(tester);
224 tester = g_iconv_open(encName, m_internalEncodingName);
225 if (tester == reinterpret_cast<GIConv>(-1)) {
228 g_iconv_close(tester);
  /bionic/libc/kernel/tools/
cpp.py 571 tester = CppTokenizerTester()
573 tester.setTokenizer( CppLineTokenizer("#an/example && (01923_xy)") )
574 tester.expectList( ["#", "an", "/", "example", tokSPACE, tokLOGICAND, tokSPACE, tokLPAREN, "01923_xy", \
577 tester.setTokenizer( CppLineTokenizer("FOO(BAR) && defined(BAZ)") )
578 tester.expectList( ["FOO", tokLPAREN, "BAR", tokRPAREN, tokSPACE, tokLOGICAND, tokSPACE,
581 tester.setTokenizer( CppLinesTokenizer( ["/*", "#", "*/"] ) )
582 tester.expectList( [ tokSPACE, tokLN, tokEOF ] )
584 tester.setTokenizer( CppLinesTokenizer( ["first", "second"] ) )
585 tester.expectList( [ "first", tokLN, "second", tokLN, tokEOF ] )
587 tester.setTokenizer( CppLinesTokenizer( ["first second", " third"] )
    [all...]
  /external/bluetooth/bluez/src/
main.conf 45 # us. This option is really only needed for qualification since the BITE tester
  /external/e2fsprogs/resize/
test_extent.c 2 * test_extent.c --- tester for the extent abstraction
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
shell.js 226 var TZ_DIFF = getTimeZoneDiff(); // offset of tester's timezone from UTC
228 var PST_DIFF = TZ_DIFF - TZ_PST; // offset of tester's timezone from PST
238 * We calculate the proper number dynamically for any tester. We just
249 * We must adjust them for the tester's own timezone -
253 // If the tester's system clock is in PST, no need to continue -
262 * In the second case, it is measured with reference to the tester's local timezone.
272 // Shift to the right by the offset between UTC and the tester.
285 // Shift to the left by the offset between PST and the tester.
  /external/webkit/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 200 WebViewCrashTest tester(&view);
203 QTRY_VERIFY(tester.m_executed); // If fail it means that the test wasn't executed.
  /external/bluetooth/bluez/test/
apitest 82 class Tester:
447 tester = Tester(sys.argv) variable
448 tester.run()
  /external/chromium/third_party/libevent/test/
regress_rpc.c 295 EVTAG_ASSIGN(msg, to_name, "tester");
465 EVTAG_ASSIGN(msg, to_name, "tester");
526 EVTAG_ASSIGN(msg, to_name, "tester");
594 EVTAG_ASSIGN(msg, to_name, "tester");
  /system/bluetooth/data/
main.conf 52 # us. This option is really only needed for qualification since the BITE tester
  /frameworks/base/docs/html/guide/market/billing/
billing_testing.jd 76 <p>In some cases, the reserved items may return signed static responses, which lets you test signature verification in your application. To test signature verification with the special reserved product IDs, you may need to set up <a href="{@docRoot}guide/market/billing/billing_admin.html#billing-testing-setup">trusted tester accounts</a> or upload your application as a unpublished draft application. The following table (Table 1) shows you the conditions under which static responses are signed.</p>
120 <td>Trusted tester</td>
159 <li>Sign in to the device using one of the <a href="{@docRoot}guide/market/billing/billing_admin.html#billing-testing-setup">trusted tester accounts</a> that you registered on the Android Market site.

Completed in 538 milliseconds

1 2 3 4