/frameworks/volley/src/test/java/com/android/volley/ |
RequestQueueTest.java | 52 Request req1 = mock(Request.class); local 53 when(req1.getTag()).thenReturn(tagA); 61 queue.add(req1); // A 67 verify(req1).cancel(); // A cancelled
|
RequestQueueIntegrationTest.java | 108 Request req1 = new MockRequest(); local 119 when(mMockNetwork.performRequest(req1)).thenAnswer(delayAnswer); 124 queue.add(req1); 129 // as an alternative, first verify no requests have finished, then verify req1 goes through 131 verify(listener, timeout(100)).onRequestFinished(req1);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_register.py | 144 req1 = dict(self.conn.reqs[0].headers) 146 self.assertEqual(req2['Content-length'], req1['Content-length'])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_register.py | 144 req1 = dict(self.conn.reqs[0].headers) 146 self.assertEqual(req2['Content-length'], req1['Content-length'])
|
/cts/apps/CameraITS/pymodules/its/ |
device.py | 559 yuv_cap = do_capture( req1 ) 560 yuv_cap = do_capture( req1, yuv_fmt ) 561 yuv_cap, raw_cap = do_capture( req1, [yuv_fmt,raw_fmt] ) 562 yuv_caps = do_capture( [req1,req2], yuv_fmt ) 563 yuv_caps, raw_caps = do_capture( [req1,req2], [yuv_fmt,raw_fmt] ) [all...] |
/packages/apps/Email/provider_src/com/android/email/service/ |
AttachmentService.java | 266 public int compare(DownloadRequest req1, DownloadRequest req2) { 268 if (req1.mPriority != req2.mPriority) { 269 res = (req1.mPriority < req2.mPriority) ? -1 : 1; 271 if (req1.mCreatedTime == req2.mCreatedTime) { 274 res = (req1.mCreatedTime < req2.mCreatedTime) ? -1 : 1; [all...] |
/external/libvncserver/webclients/java-applet/ssl/ |
tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch | [all...] |
ultravnc-102-JavaViewer-ssl-etc.patch | [all...] |
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
httparchive.py | 631 e.g. req1 = GET www.test.com/index?aaaa 634 If use_query is True, req1.matches(req2) evaluates to False 635 If use_query is False, req1.matches(req2) evaluates to True [all...] |