/external/zxing/core/ |
H A D | core.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ... |
/external/sfntly/cpp/src/test/ |
H A D | platform_thread.cc | 24 PlatformThread::Delegate* delegate = local 26 delegate->ThreadMain(); 31 bool PlatformThread::Create(Delegate* delegate, argument 34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL); 58 PlatformThread::Delegate* delegate = 60 delegate->ThreadMain(); 65 bool PlatformThread::Create(Delegate* delegate, 72 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
|
/external/robolectric/lib/main/ |
H A D | android-support-v4.jar | META-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ... |
H A D | android.jar | META-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ... |
H A D | javassist-3.14.0-GA.jar | META-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ... |
/external/robolectric/lib/test/ |
H A D | mockito-core-1.8.5.jar | META-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ... |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
H A D | RobolectricTestRunner.java | 68 private RobolectricTestRunnerInterface delegate; field in class:RobolectricTestRunner 273 this.delegate = (RobolectricTestRunnerInterface) constructorForDelegate.newInstance(classLoader.bootstrap(testClass)); 274 this.delegate.setRobolectricConfig(robolectricConfig); 275 this.delegate.setDatabaseMap(databaseMap); 292 * Only used when creating the delegate instance within the instrumented ClassLoader. 321 delegate.internalBeforeTest(method.getMethod()); 330 delegate.internalAfterTest(method.getMethod()); 379 if (delegate != null) { 380 return delegate.createTest(); 479 * As test methods are loaded by the delegate' [all...] |
/external/owasp/sanitizer/distrib/lib/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
/external/owasp/sanitizer/lib/guava-libraries/ |
H A D | guava.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ... |
/external/owasp/sanitizer/lib/htmlparser-1.3/ |
H A D | htmlparser-1.3-with-transitions.jar | ... ContentHandler {
private final org.xml.sax.ContentHandler delegate public void " href="/5.1.0_r1/s? ... |
H A D | htmlparser-1.3.jar | ... ContentHandler {
private final org.xml.sax.ContentHandler delegate public void " href="/5.1.0_r1/s? ... |
/external/owasp/sanitizer/tools/emma/lib/ |
H A D | emma.jar | META-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
H A D | commons-lang-2.6.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ... |
H A D | findbugs.jar | META-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ... |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
H A D | DelegatingHttpsURLConnection.java | 41 private final HttpURLConnection delegate; field in class:DelegatingHttpsURLConnection 43 public DelegatingHttpsURLConnection(HttpURLConnection delegate) { argument 44 super(delegate.getURL()); 45 this.delegate = delegate; 89 delegate.connect(); 93 delegate.disconnect(); 97 return delegate.getErrorStream(); 101 return delegate.getRequestMethod(); 105 return delegate [all...] |
H A D | HttpsURLConnectionImpl.java | 26 private final HttpURLConnectionImpl delegate; field in class:HttpsURLConnectionImpl 32 public HttpsURLConnectionImpl(HttpURLConnectionImpl delegate) { argument 33 super(delegate); 34 this.delegate = delegate; 38 if (delegate.httpEngine == null) { 45 return delegate.httpEngine.hasResponse() 46 ? delegate.httpEngine.getResponse().handshake() 47 : delegate.handshake; 51 delegate [all...] |
H A D | JavaApiConverter.java | 371 * <p>Much of the method implementations are overrides to delegate to the OkHttp request and 631 private final CacheHttpURLConnection delegate; field in class:JavaApiConverter.CacheHttpsURLConnection 633 public CacheHttpsURLConnection(CacheHttpURLConnection delegate) { argument 634 super(delegate); 635 this.delegate = delegate; 639 return delegate.response.handshake(); 659 delegate.setFixedLengthStreamingMode(contentLength);
|
H A D | ResponseCacheAdapter.java | 37 private final ResponseCache delegate; field in class:ResponseCacheAdapter 39 public ResponseCacheAdapter(ResponseCache delegate) { argument 40 this.delegate = delegate; 44 return delegate; 60 return delegate.put(uri, connection); 93 * Returns the {@link CacheResponse} from the delegate by converting the 98 return delegate.get(request.uri(), request.method(), headers);
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
H A D | ResponseCacheTest.java | 1519 private final ResponseCache delegate; field in class:ResponseCacheTest.InsecureResponseCache 1521 private InsecureResponseCache(ResponseCache delegate) { argument 1522 this.delegate = delegate; 1526 return delegate.put(uri, connection); 1531 final CacheResponse response = delegate.get(uri, requestMethod, requestHeaders);
|
H A D | URLConnectionTest.java | 3201 private final SSLSocketFactory delegate; field in class:URLConnectionTest.DelegatingSSLSocketFactory 3203 public DelegatingSSLSocketFactory(SSLSocketFactory delegate) { argument 3204 this.delegate = delegate; 3209 return delegate.getDefaultCipherSuites(); 3214 return delegate.getSupportedCipherSuites(); 3220 return (SSLSocket) delegate.createSocket(s, host, port, autoClose); 3225 return (SSLSocket) delegate.createSocket(); 3230 return (SSLSocket) delegate.createSocket(host, port); 3236 return (SSLSocket) delegate 3259 LimitedProtocolsSocketFactory(SSLSocketFactory delegate, String... enabledProtocols) argument 3317 RecordingSocketFactory(SSLSocketFactory delegate) argument [all...] |
/external/mockito/src/org/mockito/ |
H A D | AdditionalAnswers.java | 111 * An answer that directly forwards the calls to the delegate. 132 * The mock that delegates simply delegates all methods to the delegate. 133 * The delegate is used all the time as methods are delegated onto it. 139 * An example with a final class that we want to delegate to: 151 * The mock will call the delegate if you use regular when().then() stubbing style. 165 * @param delegate The delegate to forward calls to. 170 public static <T> Answer<T> delegatesTo(Object delegate) { argument 171 return (Answer<T>) new ForwardsInvocations(delegate);
|
/external/mockito/src/org/mockito/internal/configuration/ |
H A D | InjectingAnnotationEngine.java | 24 private AnnotationEngine delegate = new DefaultAnnotationEngine();
field in class:InjectingAnnotationEngine 35 return delegate.createMockFor(annotation, field);
71 delegate.process(classContext, testInstance);
|
/external/mockito/src/org/mockito/internal/handler/ |
H A D | NullResultGuardian.java | 17 * Protects the results from delegate MockHandler. Makes sure the results are valid. 22 private final InternalMockHandler delegate; field in class:NullResultGuardian 24 public NullResultGuardian(InternalMockHandler delegate) { argument 25 this.delegate = delegate; 29 Object result = delegate.handle(invocation); 42 return delegate.getMockSettings(); 46 return delegate.voidMethodStubbable(mock); 50 delegate.setAnswersForStubbing(answers); 54 return delegate [all...] |
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/ |
H A D | ReturnsDeepStubs.java | 45 private ReturnsEmptyValues delegate = new ReturnsEmptyValues();
field in class:ReturnsDeepStubs 53 return delegate.returnValueFor(rawType);
|