HomeSort by relevance Sort by last modified time
    Searched refs:loader (Results 151 - 175 of 327) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebCore/platform/network/qt/
ResourceHandleQt.cpp 139 getInternal()->m_frame = static_cast<FrameLoaderClientQt*>(frame->loader()->client())->webFrame();
205 d->m_frame = static_cast<FrameLoaderClientQt*>(frame->loader()->client())->webFrame();
  /libcore/luni/src/main/java/java/io/
ObjectStreamField.java 351 void resolve(ClassLoader loader) {
369 Class<?> cl = Class.forName(className, false, loader);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DevicePanel.java 297 * @param loader
651 ImageLoader loader = ImageLoader.getDdmUiLibLoader(); local
654 mDeviceImage = loader.loadImage(display, "device.png", //$NON-NLS-1$
659 mEmulatorImage = loader.loadImage(display,
664 mThreadImage = loader.loadImage(display, ICON_THREAD,
669 mHeapImage = loader.loadImage(display, ICON_HEAP,
674 mWaitingImage = loader.loadImage(display,
679 mDebuggerImage = loader.loadImage(display,
684 mDebugErrorImage = loader.loadImage(display,
ImageLoader.java 44 * This also means that {@link Image} object returned by the loader should never be disposed.
77 * The loader will load images from the jar from which the class was loaded. using
81 * jar will work. However since the loader is cached and reused when the query provides the same
82 * class instance, and since the loader will also cache the loaded images, it is recommended
101 for (ImageLoader loader : mInstances.values()) {
102 loader.doDispose();
162 * @param loader the image loader used.
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.cpp 289 static_cast<FrameLoaderClientAndroid*> (frame->loader()->client());
364 WebFrame::startLoadingResource(WebCore::ResourceHandle* loader,
373 loader, request.url().string().latin1().data());
479 ResourceHandleInternal* loaderInternal = loader->getInternal();
487 (int)loader, jUrlStr, jMethodStr, jHeaderMap,
532 const WebCore::KURL& url = frame->loader()->activeDocumentLoader()->url();
538 WebCore::FrameLoadType loadType = frame->loader()->loadType();
584 WebCore::FrameLoadType loadType = frame->loader()->loadType();
598 WebCore::FrameLoader* loader = frame->loader(); local
1142 WebCore::FrameLoader* loader = pFrame->loader(); local
    [all...]
  /dalvik/vm/oo/
Class.c 18 * Class loading, including bootstrap class loader, linking, and
51 the loader attempting to access the partially-linked class.
93 assumptions about where the class loader will go to look for classes.
103 loader, but isn't required to. UserLoader might provide a replacement
128 We can verify that it's either (loader==null && dexFile==a_boot_dex)
129 or (loader==UserLoader && dexFile==AppClass.dexFile). Classes from
133 a user-defined class loader that replaces system classes. It should
134 also ensure that you can write such a loader and have it work in the
174 const char* descriptor, Object* loader);
175 static ClassObject* findClassNoInit(const char* descriptor, Object* loader,\
829 Object* loader; member in struct:ClassMatchCriteria
4634 Object* loader; local
    [all...]
  /external/bluetooth/glib/gio/
gfilenamecompleter.c 332 LoadBasenamesData *loader; local
336 loader = completer->basename_loader;
337 loader->completer = NULL;
339 g_cancellable_cancel (loader->cancellable);
  /external/freetype/src/cff/
cffgload.h 5 /* OpenType Glyph Loader (specification). */
51 /* loader :: The current glyph loader. */
86 FT_GlyphLoader loader; member in struct:CFF_Builder_
cffgload.c 5 /* OpenType Glyph Loader (body). */
263 FT_GlyphLoader loader = glyph->root.internal->loader; local
266 builder->loader = loader;
267 builder->base = &loader->base.outline;
268 builder->current = &loader->current.outline;
269 FT_GlyphLoader_Rewind( loader );
469 return FT_GLYPHLOADER_CHECK_POINTS( builder->loader, count, 0 );
529 error = FT_GLYPHLOADER_CHECK_POINTS( builder->loader, 0, 1 )
768 FT_GlyphLoader loader = glyph->internal->loader; local
    [all...]
  /external/webkit/WebCore/page/
Location.cpp 53 const KURL& url = m_frame->loader()->url();
XSSAuditor.cpp 306 String xssProtectionValue = frame->loader()->documentLoader()->response().httpHeaderField(XSSProtectionHeader).stripWhiteSpace();
322 blockFrame->loader()->stopAllLoaders();
340 FormData* formDataObj = frame->loader()->documentLoader()->originalRequest().httpBody();
  /external/webkit/WebKit/win/
WebFramePolicyListener.cpp 128 static_cast<WebFrame*>(frame->loader()->client())->receivedPolicyDecision(action);
  /external/webkit/WebKit/android/benchmark/
Intercept.cpp 170 RefPtr<WebCore::ResourceLoaderAndroid> loader = local
172 m_requests.append(loader);
175 return loader.release();
  /external/webkit/WebKit/chromium/src/
ContextMenuClientImpl.cpp 74 DocumentLoader* dl = frame->loader()->documentLoader();
187 data.frameEncoding = selectedFrame->loader()->encoding();
223 DocumentLoader* dl = selectedFrame->loader()->documentLoader();
WebSearchableFormData.cpp 65 *encoding = frame ? TextEncoding(frame->loader()->encoding()) : Latin1Encoding();
72 return form->document()->frame()->loader()->completeURL(action.isNull() ? "" : action).protocol() == "http";
250 KURL url(frame->loader()->completeURL(action.isNull() ? "" : action));
  /libcore/luni/src/main/java/javax/xml/datatype/
FactoryFinder.java 119 "Using context class loader: "
127 "Using the class loader of FactoryFinder: "
366 ClassLoader loader = clazz.getClassLoader(); local
370 if (loader != null) {
371 it = loader.getResource(classnameAsResource);
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectStreamClassTest.java 139 ClassLoader loader = new URLClassLoader(new URL[] { file.toURL() }, local
141 Class cl1 = Class.forName("Test1$TestVarArgs", false, loader);
147 Class cl2 = Class.forName("Test1$TestBridge", false, loader);
  /libcore/luni/src/test/java/tests/api/java/util/
ResourceBundleTest.java 119 @KnownFailure("It's not allowed to pass null as parent class loader to"
142 URLClassLoader loader = new URLClassLoader(urls, null); local
149 bundle = ResourceBundle.getBundle(name, Locale.getDefault(), loader);
154 ResourceBundle.getBundle(null, Locale.getDefault(), loader);
161 ResourceBundle.getBundle(name, null, loader);
175 ResourceBundle.getBundle("", Locale.getDefault(), loader);
  /external/webkit/WebKit/mac/WebView/
WebFrame.mm 219 return frame ? static_cast<WebFrameLoaderClient*>(frame->loader()->client())->webFrame() : nil;
456 static inline WebDataSource *dataSource(DocumentLoader* loader)
458 return loader ? static_cast<WebDocumentLoaderMac*>(loader)->dataSource() : nil;
463 return dataSource(_private->coreFrame->loader()->documentLoader());
478 _private->coreFrame->loader()->addData((const char *)[data bytes], [data length]);
    [all...]
WebHTMLRepresentation.mm 168 coreFrame->loader()->documentLoader()->cancelMainResourceLoad(coreFrame->loader()->client()->pluginWillHandleLoadError(coreFrame->loader()->documentLoader()->response()));
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 66 * context class loader (TCCL), or not. By default, the TCCL is used.
251 * class loader would prevent garbage collection.
382 // Identify the class loader we will be using
394 // Return any previously registered factory for this class loader
419 // Determine whether we will be using the thread context class loader to
615 * Always cache using context class loader.
681 * instances that have been associated with the specified class loader
715 * Dangling references to objects in that class loader would prevent
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 465 final ClassLoader loader = getClass().getClassLoader(); local
467 mValues = source.<ValuesDelta> readParcelable(loader);
469 final ValuesDelta child = source.<ValuesDelta> readParcelable(loader);
828 final ClassLoader loader = getClass().getClassLoader(); local
829 mBefore = source.<ContentValues> readParcelable(loader);
830 mAfter = source.<ContentValues> readParcelable(loader);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProvider.java 707 ClassLoader loader = this.getClass().getClassLoader(); local
    [all...]
  /external/freetype/include/freetype/internal/
tttypes.h     [all...]
  /external/webkit/WebCore/xml/
XSLTProcessorLibxslt.cpp 43 #include "loader.h"
123 globalDocLoader->frame()->loader()->loadResourceSynchronously(url, AllowStoredCredentials, error, response, data);
155 static inline void setXSLTLoadCallBack(xsltDocLoaderFunc func, XSLTProcessor* processor, DocLoader* loader)
159 globalDocLoader = loader;

Completed in 1172 milliseconds

1 2 3 4 5 67 8 91011>>