/external/objenesis/main/src/org/objenesis/ |
ObjenesisSerializer.java | 38 * @param useCache If {@link org.objenesis.instantiator.ObjectInstantiator}s should be cached
40 public ObjenesisSerializer(boolean useCache) {
41 super(new SerializingInstantiatorStrategy(), useCache);
|
ObjenesisStd.java | 38 * @param useCache If {@link org.objenesis.instantiator.ObjectInstantiator}s should be cached
40 public ObjenesisStd(boolean useCache) {
41 super(new StdInstantiatorStrategy(), useCache);
|
ObjenesisBase.java | 51 * @param useCache If {@link ObjectInstantiator}s should be cached
53 public ObjenesisBase(InstantiatorStrategy strategy, boolean useCache) {
58 this.cache = useCache ? new HashMap() : null;
|
/external/skia/src/gpu/ |
GrYUVProvider.cpp | 21 * useCache option, we may find (and lock) the data in our ResourceCache, or we may have allocated 26 bool init(GrYUVProvider*, SkYUVPlanesCache::Info*, void* planes[3], bool useCache); 36 bool useCache) { 37 if (useCache) { 59 if (useCache) { 75 if (useCache) { 83 GrTexture* GrYUVProvider::refAsTexture(GrContext* ctx, const GrSurfaceDesc& desc, bool useCache) { 87 if (!scoper.init(this, &yuvInfo, planes, useCache)) {
|
GrYUVProvider.h | 31 * into a form that is supported by the GPU (typically transformed into RGB). If useCache 37 GrTexture* refAsTexture(GrContext*, const GrSurfaceDesc&, bool useCache);
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/https/ |
AbstractDelegateHttpsURLConnection.java | 91 * @param useCache whether the cached connection should be used 94 public void setNewClient (URL url, boolean useCache) 99 useCache, this); 133 * @param useCache whether the cached connection should be used 137 boolean useCache) throws IOException { 138 proxiedConnect(url, proxyHost, proxyPort, useCache); 146 boolean useCache) throws IOException { 152 proxyHost, proxyPort, useCache, this); 198 boolean useCache) 202 useCache, connectTimeout, this) [all...] |
HttpsURLConnectionImpl.java | 110 * @param useCache whether the cached connection should be used 113 protected void setNewClient(URL url, boolean useCache) 115 delegate.setNewClient(url, useCache); 140 * @param useCache whether the cached connection should be used 144 boolean useCache) throws IOException { 145 delegate.setProxiedClient(url, proxyHost, proxyPort, useCache);
|
HttpsClient.java | 291 HostnameVerifier hv, boolean useCache, 293 return HttpsClient.New(sf, url, hv, (String)null, -1, useCache, httpuc); 307 String proxyHost, int proxyPort, boolean useCache, 310 return HttpsClient.New(sf, url, hv, proxyHost, proxyPort, useCache, -1, 315 String proxyHost, int proxyPort, boolean useCache, 322 useCache, connectTimeout, httpuc); 326 Proxy p, boolean useCache, 334 if (useCache) {
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
AbstractClassGenerator.java | 45 private boolean useCache = true; 119 public void setUseCache(boolean useCache) { 120 this.useCache = useCache; 127 return useCache; 199 } else if (useCache) { 223 if (useCache) {
|
/build/kati/ |
depgraph.go | 77 UseCache bool 129 if req.UseCache { 165 er, err := eval(mk, vars, req.UseCache) 210 if req.UseCache {
|
/external/javassist/src/test/test/javassist/proxy/ |
ProxyCacheGCTest.java | 42 ProxyFactory.useCache = false; 53 ProxyFactory.useCache = true;
|
ProxyFactoryCompatibilityTest.java | 44 System.out.println("ProxyFactory.useCache = " + ProxyFactory.useCache);
|
/build/kati/cmd/kati/ |
main.go | 43 useCache bool 72 flag.BoolVar(&useCache, "use_cache", false, "Use cache.") 273 req.UseCache = useCache
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
NdkMainLaunchConfigTab.java | 44 public boolean useCache() {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ProjectChooserHelper.java | 65 boolean useCache(); 83 public boolean useCache() { 103 public boolean useCache() { 176 if (mAndroidProjects == null || (mFilter != null && mFilter.useCache() == false)) {
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/ |
PlaySampleExtractor.java | 60 PlaybackCacheListener cacheListener, boolean useCache) { 65 if (useCache) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/ |
HttpUrlConnectionBuilder.java | 167 public HttpUrlConnectionBuilder setUseCache(boolean useCache) { 168 mUseCache = useCache;
|
/external/javassist/src/main/javassist/ |
ClassPool.java | 508 * @param useCache false if the cached CtClass must be ignored. 512 protected synchronized CtClass get0(String classname, boolean useCache) 516 if (useCache) { 523 clazz = parent.get0(classname, useCache); 528 clazz = createCtClass(classname, useCache); 531 if (useCache) 538 clazz = parent.get0(classname, useCache); 550 protected CtClass createCtClass(String classname, boolean useCache) { 557 if ((!useCache || getCached(base) == null) && find(base) == null) [all...] |
/libcore/ojluni/src/main/java/sun/net/www/http/ |
HttpClient.java | 258 public static HttpClient New(URL url, boolean useCache) 260 return HttpClient.New(url, Proxy.NO_PROXY, -1, useCache, null); 263 public static HttpClient New(URL url, Proxy p, int to, boolean useCache, 271 if (useCache) { 330 boolean useCache) 333 -1, useCache, null); 337 boolean useCache, int to, 341 to, useCache, httpuc); [all...] |
/external/javassist/src/main/javassist/util/proxy/ |
ProxyFactory.java | 108 * this default globally by setting static field {@link ProxyFactory#useCache} to false. 164 * per factory setting initialised from current setting for useCache but able to be reset before each create call 216 public static volatile boolean useCache = true; 254 * @param useCache true if this factory should use the proxy cache and false if it should not use the cache 257 public void setUseCache(boolean useCache) 261 if (handler != null && useCache) { 264 factoryUseCache = useCache; 342 factoryUseCache = useCache; [all...] |
/external/autotest/contrib/ |
coverage.py | 306 self.usecache = 1 425 def use_cache(self, usecache, cache_file=None): 426 self.usecache = usecache 431 if self.usecache and not self.cache: 477 if self.usecache and self.cache: 489 assert self.usecache [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ReverseGeocoder.java | 306 boolean useCache) { 311 if (useCache && mGeoCache != null) {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ndr64types.h | 120 NDR64_UINT16 UseCache : 1;
|
/prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-http-lightweight/1.0-beta-6/ |
wagon-http-lightweight-1.0-beta-6.jar | |
/external/opencv3/modules/objdetect/test/ |
test_cascadeandhog.cpp | 604 bool useCache, Size cacheStride); 608 bool useCache, Size cacheStride); 619 bool useCache; 635 useCache = false; 653 useCache = _useCache; 670 if( useCache ) 834 if( useCache ) [all...] |