Searched refs:loader (Results 176 - 200 of 386) sorted by relevance

1234567891011>>

/external/webkit/
H A DAndroid.mk128 $(WEBCORE_PATH)/loader \
129 $(WEBCORE_PATH)/loader/appcache \
130 $(WEBCORE_PATH)/loader/archive \
131 $(WEBCORE_PATH)/loader/archive/android \
132 $(WEBCORE_PATH)/loader/cache \
133 $(WEBCORE_PATH)/loader/icon \
/external/webkit/Source/WebCore/html/
H A DHTMLObjectElement.cpp219 SubframeLoader* loader = document()->frame()->loader()->subframeLoader(); local
220 if (loader->resourceWillUsePlugin(urlParameter, serviceType, shouldPreferPlugInsForImages()))
297 SubframeLoader* loader = document()->frame()->loader()->subframeLoader();
298 bool success = beforeLoadAllowedLoad && hasValidClassId() && loader->requestObject(this, url, getAttribute(nameAttr), serviceType, paramNames, paramValues);
381 // If we don't think we have an image type anymore, then clear the image from the loader.
H A DHTMLEmbedElement.cpp182 SubframeLoader* loader = document()->frame()->loader()->subframeLoader(); local
184 loader->requestObject(this, m_url, getAttribute(nameAttr), m_serviceType, paramNames, paramValues);
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheHost.cpp158 bool ApplicationCacheHost::maybeLoadResource(ResourceLoader* loader, ResourceRequest& request, const KURL& originalURL) argument
170 m_documentLoader->m_pendingSubstituteResources.set(loader, resource);
387 bool ApplicationCacheHost::scheduleLoadFallbackResourceFromApplicationCache(ResourceLoader* loader, ApplicationCache* cache) argument
393 if (!getApplicationCacheFallbackResource(loader->request(), resource, cache))
396 m_documentLoader->m_pendingSubstituteResources.set(loader, resource);
399 loader->handle()->cancel();
H A DApplicationCacheGroup.h101 static void postListenerTask(ApplicationCacheHost::EventID id, DocumentLoader* loader) { postListenerTask(id, 0, 0, loader); } argument
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp300 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
309 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
321 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
330 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
365 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
374 WebFrame* webFrame = static_cast<WebFrameLoaderClient*>(element->document()->frame()->loader()->client())->webFrame();
/external/dexmaker/src/test/java/com/google/dexmaker/examples/
H A DFibonacciMaker.java64 ClassLoader loader = dexMaker.generateAndLoad(
67 Class<?> fibonacciClass = loader.loadClass("com.google.dexmaker.examples.Fibonacci");
/external/freetype/
H A DAndroid.mk11 # compile in ARM mode, since the glyph loader/renderer is a hotspot
/external/guava/guava/src/com/google/common/base/
H A DFinalizableReferenceQueue.java47 * If this library is loaded in the system class loader, FinalizableReferenceQueue can load
50 * If this library is loaded in an application class loader, it's important that Finalizer not
51 * have a strong reference back to the class loader. Otherwise, you could have a graph like this:
53 * Finalizer Thread runs instance of -> Finalizer.class loaded by -> Application class loader
56 * Even if no other references to classes from the application class loader remain, the Finalizer
58 * Finalizer running, and as a result, the application class loader can never be reclaimed.
62 * If the library is loaded in an application class loader, we try to break the cycle by loading
63 * Finalizer in its own independent class loader:
65 * System class loader -> Application class loader
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DTestingCacheLoaders.java36 * {@link CacheLoader#load} calls to {@code loader}.
38 static <K, V> CacheLoader<K, V> bulkLoader(final CacheLoader<K, V> loader) { argument
42 return loader.load(key);
134 * An {@code Integer} loader that returns the key for {@code load} requests, and increments the
H A DLocalLoadingCacheTest.java50 CacheBuilder<K, V> builder, CacheLoader<? super K, V> loader) {
51 return new LocalLoadingCache<K, V>(builder, loader);
61 CacheLoader<Object, Object> loader = new CacheLoader<Object, Object>() {
67 LocalLoadingCache<Object, Object> cache = makeCache(createCacheBuilder(), loader);
68 assertSame(loader, cache.localCache.defaultLoader);
76 CacheLoader<Object, Object> loader = identityLoader();
77 tester.testAllPublicInstanceMethods(makeCache(createCacheBuilder(), loader));
49 makeCache( CacheBuilder<K, V> builder, CacheLoader<? super K, V> loader) argument
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DImplHandler.java42 * <code>ImplHandler</code> manages the asset loader and asset locator
45 * This is done by keeping an instance of each asset loader and asset
172 AssetLoader loader = (AssetLoader) local.get();
173 return loader;
/external/smack/src/com/kenai/jbosh/
H A DServiceLib.java107 ClassLoader loader = ServiceLib.class.getClassLoader();
108 URL url = loader.getResource("META-INF/services/" + ofClass.getName());
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DLeaksViewer.js122 var loader = new RecentBuildsLoader(this._didLoadRecentBuilds.bind(this));
123 loader.start("SnowLeopard Intel Leaks", this._numberOfRecentBuildsToLoad);
/external/chromium/chrome/browser/policy/
H A Dfile_based_policy_provider_unittest.cc76 file_based_provider.loader()->Reload();
/external/freetype/src/cff/
H A Dcffgload.h51 /* loader :: The current glyph loader. */
86 FT_GlyphLoader loader; member in struct:CFF_Builder_
/external/jmonkeyengine/engine/src/test/jme3test/audio/
H A DTestMusicPlayer.java177 AssetLoader loader = null;
179 loader = new WAVLoader();
181 loader = new OGGLoader();
186 musicData = (AudioData) loader.load(new AssetInfo(null, key) {
/external/webkit/Source/WebCore/loader/
H A DWorkerThreadableLoader.cpp77 RefPtr<WorkerThreadableLoader> loader = WorkerThreadableLoader::create(workerContext, &client, mode, request, options); local
79 while (!loader->done() && result != MessageQueueTerminated)
82 if (!loader->done() && result == MessageQueueTerminated)
83 loader->cancel();
/external/webkit/Source/WebKit/chromium/src/
H A DContextMenuClientImpl.cpp82 DocumentLoader* dl = frame->loader()->documentLoader();
241 data.frameEncoding = selectedFrame->document()->loader()->writer()->encoding();
247 RefPtr<HistoryItem> historyItem = selectedFrame->loader()->history()->currentItem();
282 DocumentLoader* dl = selectedFrame->loader()->documentLoader();
H A DResourceHandle.cpp284 return false; // The loader will buffer manually if it needs to.
295 OwnPtr<WebURLLoader> loader(webKitClient()->createURLLoader());
296 ASSERT(loader.get());
304 loader->loadSynchronously(requestIn, responseOut, errorOut, dataOut);
H A DWebSearchableFormData.cpp66 *encoding = TextEncoding(form->document()->loader()->writer()->encoding());
73 return form->document()->frame()->loader()->completeURL(action.isNull() ? "" : action).protocol() == "http";
255 KURL url(frame->loader()->completeURL(action.isNull() ? "" : action));
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectStreamClassTest.java131 ClassLoader loader = new URLClassLoader(new URL[] { file.toURL() },
133 Class cl1 = Class.forName("Test1$TestVarArgs", false, loader);
139 Class cl2 = Class.forName("Test1$TestBridge", false, loader);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DBouncyCastleProvider.java511 ClassLoader loader = this.getClass().getClassLoader();
513 if (loader != null)
515 clazz = loader.loadClass(packageName + names[i] + "$Mappings");
/external/webkit/Source/WebCore/platform/mac/
H A DPasteboardMac.mm386 if (DocumentLoader* loader = frame->loader()->documentLoader())
387 loader->addArchiveResource(resource.get());
426 DocumentLoader* loader = frame->loader()->documentLoader();
428 loader->addArchiveResource(resources[i]);
508 if (frame->loader()->client()->canShowMIMETypeAsHTML(MIMEType)) {
511 if (DocumentLoader* loader = frame->loader()->documentLoader())
512 loader
[all...]
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceLoader.cpp130 if (!f->loader()->client()->allowImages(!settings || settings->areImagesEnabled()))
133 if (f->loader()->pageDismissalEventBeingDispatched()) {
253 f->loader()->checkIfRunInsecureContent(m_document->securityOrigin(), url);
261 top->loader()->checkIfDisplayInsecureContent(top->document()->securityOrigin(), url);
581 return frame() ? frame()->loader()->subresourceCachePolicy() : CachePolicyVerify;
610 frame()->loader()->loadDone();
652 frame()->loader()->loadedResourceFromMemoryCache(resource);

Completed in 1763 milliseconds

1234567891011>>