Searched refs:loader (Results 1 - 25 of 383) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/util/
H A DResourceLoader.java37 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
39 return Class.forName (name, false, loader);
48 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
50 if (loader != null)
51 return loader.getResource (name);
62 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
64 if (loader != null)
65 return loader.getResourceAsStream (name);
77 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
79 if (loader !
86 loadClass(final String name, final ClassLoader loader) argument
92 getResource(final String name, final ClassLoader loader) argument
100 getResourceAsStream(final String name, final ClassLoader loader) argument
108 getResources(final String name, final ClassLoader loader) argument
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileReaderSync.cpp55 FileReaderLoader loader(FileReaderLoader::ReadAsArrayBuffer, 0);
56 startLoading(scriptExecutionContext, loader, blob, ec);
58 return loader.arrayBufferResult();
66 FileReaderLoader loader(FileReaderLoader::ReadAsBinaryString, 0);
67 startLoading(scriptExecutionContext, loader, blob, ec);
68 return loader.stringResult();
76 FileReaderLoader loader(FileReaderLoader::ReadAsText, 0);
77 loader.setEncoding(encoding);
78 startLoading(scriptExecutionContext, loader, blob, ec);
79 return loader
93 startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, Blob* blob, ExceptionCode& ec) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DResourceLoadNotifier.cpp50 void ResourceLoadNotifier::didReceiveAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge) argument
52 m_frame->loader()->client()->dispatchDidReceiveAuthenticationChallenge(loader->documentLoader(), loader->identifier(), currentWebChallenge);
55 void ResourceLoadNotifier::didCancelAuthenticationChallenge(ResourceLoader* loader, const AuthenticationChallenge& currentWebChallenge) argument
57 m_frame->loader()->client()->dispatchDidCancelAuthenticationChallenge(loader->documentLoader(), loader->identifier(), currentWebChallenge);
60 void ResourceLoadNotifier::willSendRequest(ResourceLoader* loader, ResourceRequest& clientRequest, const ResourceResponse& redirectResponse) argument
62 m_frame->loader()
67 didReceiveResponse(ResourceLoader* loader, const ResourceResponse& r) argument
77 didReceiveData(ResourceLoader* loader, const char* data, int dataLength, int encodedDataLength) argument
85 didFinishLoad(ResourceLoader* loader, double finishTime) argument
92 didFailToLoad(ResourceLoader* loader, const ResourceError& error) argument
103 assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request) argument
108 dispatchWillSendRequest(DocumentLoader* loader, unsigned long identifier, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
126 dispatchDidReceiveResponse(DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r) argument
133 dispatchDidReceiveContentLength(DocumentLoader* loader, unsigned long identifier, int dataLength, int encodedDataLength) argument
140 dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier, double finishTime) argument
147 dispatchTransferLoadingResourceFromPage(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request, Page* oldPage) argument
155 sendRemainingDelegateMessages(DocumentLoader* loader, unsigned long identifier, const ResourceResponse& response, int dataLength, int encodedDataLength, const ResourceError& error) argument
[all...]
H A DPolicyChecker.cpp53 checkNavigationPolicy(newRequest, m_frame->loader()->activeDocumentLoader(), 0, function, argument);
56 void PolicyChecker::checkNavigationPolicy(const ResourceRequest& request, DocumentLoader* loader, argument
59 NavigationAction action = loader->triggeringAction();
62 loader->setTriggeringAction(action);
67 if (equalIgnoringHeaderFields(request, loader->lastCheckedRequest()) || (!request.isNull() && request.url().isEmpty())) {
69 loader->setLastCheckedRequest(request);
75 if (loader->substituteData().isValid() && !loader->substituteData().failingURL().isEmpty()) {
82 loader->setLastCheckedRequest(request);
87 m_frame->loader()
[all...]
/external/freetype/src/base/
H A Dftgloadr.c5 /* The FreeType glyph loader (body). */
42 /* The glyph loader is a simple object which is used to load a set of */
47 /* loader.base Is really the bottom of the stack. It describes a */
51 /* loader.current Describes the top of the stack, on which a new */
55 /* Prepare Set up `loader.current' for addition of a new glyph */
60 /* The glyph loader is now a base object. Each driver used to */
67 /* create a new glyph loader */
72 FT_GlyphLoader loader = NULL; local
76 if ( !FT_NEW( loader ) )
78 loader
[all...]
/external/dbus/dbus/
H A Ddbus-message-internal.h53 DBusMessageLoader* _dbus_message_loader_ref (DBusMessageLoader *loader);
54 void _dbus_message_loader_unref (DBusMessageLoader *loader);
56 void _dbus_message_loader_get_buffer (DBusMessageLoader *loader,
58 void _dbus_message_loader_return_buffer (DBusMessageLoader *loader,
62 dbus_bool_t _dbus_message_loader_get_unix_fds (DBusMessageLoader *loader,
65 void _dbus_message_loader_return_unix_fds (DBusMessageLoader *loader,
69 dbus_bool_t _dbus_message_loader_queue_messages (DBusMessageLoader *loader);
70 DBusMessage* _dbus_message_loader_peek_message (DBusMessageLoader *loader);
71 DBusMessage* _dbus_message_loader_pop_message (DBusMessageLoader *loader);
72 DBusList* _dbus_message_loader_pop_message_link (DBusMessageLoader *loader);
[all...]
/external/chromium/chrome/browser/instant/
H A Dinstant_loader_delegate.h24 virtual void InstantStatusChanged(InstantLoader* loader) = 0;
26 // Invoked when the loader has suggested text.
28 InstantLoader* loader,
38 // Invoked when the the loader should be committed.
39 virtual void CommitInstantLoader(InstantLoader* loader) = 0;
41 // Invoked if the loader was created with the intention that the site supports
43 virtual void InstantLoaderDoesntSupportInstant(InstantLoader* loader) = 0;
46 virtual void AddToBlacklist(InstantLoader* loader, const GURL& url) = 0;
H A Dinstant_loader_manager_unittest.cc17 virtual void InstantStatusChanged(InstantLoader* loader) OVERRIDE {}
19 virtual void SetSuggestedTextFor(InstantLoader* loader,
31 virtual void CommitInstantLoader(InstantLoader* loader) OVERRIDE {
35 InstantLoader* loader) OVERRIDE {
38 virtual void AddToBlacklist(InstantLoader* loader,
52 void MarkReady(InstantLoader* loader) { argument
53 loader->ready_ = true;
64 scoped_ptr<InstantLoader> loader; local
65 manager.UpdateLoader(0, &loader);
66 EXPECT_EQ(NULL, loader
77 scoped_ptr<InstantLoader> loader; local
90 scoped_ptr<InstantLoader> loader; local
104 scoped_ptr<InstantLoader> loader; local
119 scoped_ptr<InstantLoader> loader; local
134 scoped_ptr<InstantLoader> loader; local
160 scoped_ptr<InstantLoader> loader; local
173 scoped_ptr<InstantLoader> loader; local
197 scoped_ptr<InstantLoader> loader; local
224 scoped_ptr<InstantLoader> loader; local
241 scoped_ptr<InstantLoader> loader; local
262 scoped_ptr<InstantLoader> loader; local
288 scoped_ptr<InstantLoader> loader; local
296 scoped_ptr<InstantLoader> loader; local
305 scoped_ptr<InstantLoader> loader; local
[all...]
H A Dinstant_loader_manager.cc41 // Determine the new loader.
42 InstantLoader* loader = NULL; local
44 loader = GetInstantLoader(instant_id);
47 loader = current_loader_;
49 loader = pending_loader_;
51 loader = CreateLoader(0);
54 if (loader->ready()) {
55 // The loader is ready, make it the current loader no matter what.
56 current_loader_ = loader;
108 InstantLoader* loader = current_loader_; local
114 DestroyLoader(InstantLoader* loader) argument
118 ReleaseLoader(InstantLoader* loader) argument
135 RemoveLoaderFromInstant(InstantLoader* loader) argument
145 InstantLoader* loader = new InstantLoader(loader_delegate_, id); local
[all...]
/external/webkit/Source/WebCore/page/
H A DPerformanceNavigation.cpp62 DocumentLoader* documentLoader = m_frame->loader()->documentLoader();
82 DocumentLoader* loader = m_frame->loader()->documentLoader();
83 if (!loader)
86 DocumentLoadTiming* timing = loader->timing();
/external/javassist/src/main/javassist/util/proxy/
H A DProxyObjectInputStream.java35 * read from the input stream will default to the current thread's context class loader or the system
36 * classloader if the context class loader is null.
46 loader = Thread.currentThread().getContextClassLoader();
47 if (loader == null) {
48 loader = ClassLoader.getSystemClassLoader();
53 * Reset the loader to be
54 * @param loader
56 public void setClassLoader(ClassLoader loader) argument
58 if (loader != null) {
59 this.loader
98 private ClassLoader loader; field in class:ProxyObjectInputStream
[all...]
/external/freetype/src/truetype/
H A Dttgload.c131 tt_get_metrics( TT_Loader loader, argument
134 TT_Face face = (TT_Face)loader->face;
147 loader->left_bearing = left_bearing;
148 loader->advance = advance_width;
149 loader->top_bearing = top_bearing;
150 loader->vadvance = advance_height;
152 if ( !loader->linear_def )
154 loader->linear_def = 1;
155 loader->linear = advance_width;
163 tt_get_metrics_incr_overrides( TT_Loader loader, argument
714 TT_Hint_Glyph( TT_Loader loader, FT_Bool is_composite ) argument
934 TT_Process_Composite_Component( TT_Loader loader, FT_SubGlyph subglyph, FT_UInt start_point, FT_UInt num_base_points ) argument
1092 TT_Process_Composite_Glyph( TT_Loader loader, FT_UInt start_point, FT_UInt start_contour ) argument
1211 load_truetype_glyph( TT_Loader loader, FT_UInt glyph_index, FT_UInt recurse_count, FT_Bool header_only ) argument
1618 compute_glyph_metrics( TT_Loader loader, FT_UInt glyph_index ) argument
1828 tt_loader_init( TT_Loader loader, TT_Size size, TT_GlyphSlot glyph, FT_Int32 load_flags, FT_Bool glyf_table_only ) argument
1988 TT_LoaderRec loader; local
[all...]
/external/webkit/Source/WebCore/platform/audio/
H A DHRTFDatabaseLoader.cpp46 RefPtr<HRTFDatabaseLoader> loader; local
50 loader = adoptRef(new HRTFDatabaseLoader(sampleRate));
51 s_loader = loader.get();
52 loader->loadAsynchronously();
54 loader = s_loader;
55 ASSERT(sampleRate == loader->databaseSampleRate());
58 return loader;
91 HRTFDatabaseLoader* loader = reinterpret_cast<HRTFDatabaseLoader*>(threadData); local
92 ASSERT(loader);
93 loader
[all...]
/external/chromium/chrome/browser/policy/
H A Dasynchronous_policy_loader_unittest.cc60 scoped_refptr<AsynchronousPolicyLoader> loader = local
62 loader->Init();
63 const DictionaryValue* loaded_dict(loader->policy());
75 scoped_refptr<AsynchronousPolicyLoader> loader = local
77 loader->Init();
79 loader->Reload();
82 const DictionaryValue* loaded_dict(loader->policy());
88 // Ensure that calling stop on the loader stops subsequent reloads from
93 scoped_refptr<AsynchronousPolicyLoader> loader = local
95 loader
120 scoped_refptr<AsynchronousPolicyLoader> loader = local
[all...]
H A Dasynchronous_policy_provider.cc13 scoped_refptr<AsynchronousPolicyLoader> loader)
15 loader_(loader) {
42 scoped_refptr<AsynchronousPolicyLoader> AsynchronousPolicyProvider::loader() { function in class:policy::AsynchronousPolicyProvider
11 AsynchronousPolicyProvider( const PolicyDefinitionList* policy_list, scoped_refptr<AsynchronousPolicyLoader> loader) argument
/external/freetype/src/autofit/
H A Dafloader.h32 FT_GlyphLoader gloader; /* glyph loader */
46 af_loader_init( AF_Loader loader,
51 af_loader_reset( AF_Loader loader,
56 af_loader_done( AF_Loader loader ); variable
60 af_loader_load_glyph( AF_Loader loader,
H A Dafloader.c25 /* Initialize glyph loader. */
28 af_loader_init( AF_Loader loader,
31 FT_ZERO( loader );
33 af_glyph_hints_init( &loader->hints, memory );
35 _af_debug_hints = &loader->hints;
37 return FT_GlyphLoader_New( memory, &loader->gloader );
41 /* Reset glyph loader and compute globals if necessary. */
44 af_loader_reset( AF_Loader loader,
50 loader->face = face;
51 loader
94 af_loader_load_g( AF_Loader loader, AF_Scaler scaler, FT_UInt glyph_index, FT_Int32 load_flags, FT_UInt depth ) argument
[all...]
H A Dafmodule.c36 AF_LoaderRec loader[1]; member in struct:FT_AutofitterRec_
44 return af_loader_init( module->loader, module->root.library->memory );
51 af_loader_done( module->loader );
64 return af_loader_load_glyph( module->loader, slot->face,
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DCompositeResourceLoader.java38 for (ResourceLoader loader : loaders) {
39 add(loader);
44 for (ResourceLoader loader : loaders) {
45 add(loader);
49 public void add(ResourceLoader loader) { argument
50 loaders.add(loader);
54 for (ResourceLoader loader : loaders) {
55 Reader reader = loader.open(name);
57 return new ReaderTracer(reader, loader);
97 for (ResourceLoader loader
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameNetworkingContextAndroid.cpp44 return frame()->loader()->activeDocumentLoader()->mainResourceLoader();
49 return frame()->loader()->client();
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheRefreshTest.java33 IncrementingLoader loader = incrementingLoader();
39 .build(loader);
45 assertEquals(expectedLoads, loader.getLoadCount());
46 assertEquals(expectedReloads, loader.getReloadCount());
53 assertEquals(expectedLoads, loader.getLoadCount());
54 assertEquals(expectedReloads, loader.getReloadCount());
62 assertEquals(expectedLoads, loader.getLoadCount());
63 assertEquals(expectedReloads, loader.getReloadCount());
71 assertEquals(expectedLoads, loader.getLoadCount());
72 assertEquals(expectedReloads, loader
[all...]
/external/webkit/Source/WebCore/html/
H A DPluginDocument.cpp77 if (document()->frame() && document()->frame()->loader())
78 document()->frame()->loader()->dispatchDocumentElementAvailable();
96 DocumentLoader* loader = document()->loader(); local
97 ASSERT(loader);
98 if (loader)
99 m_embedElement->setAttribute(typeAttr, loader->writer()->mimeType());
118 if (!settings || !frame->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin))
132 frame->loader()->client()->redirectDataToPlugin(widget);
136 frame->loader()
[all...]
/external/freetype/include/freetype/internal/
H A Dftgloadr.h5 /* The FreeType glyph loader (specification). */
36 /* The glyph loader is an internal object used to load several glyphs */
40 /* The glyph loader implementation is not part of the high-level API, */
95 /* create new empty glyph loader */
100 /* add an extra points table to a glyph loader */
102 FT_GlyphLoader_CreateExtra( FT_GlyphLoader loader ); variable
104 /* destroy a glyph loader */
106 FT_GlyphLoader_Done( FT_GlyphLoader loader ); variable
108 /* reset a glyph loader (frees everything int it) */
110 FT_GlyphLoader_Reset( FT_GlyphLoader loader ); variable
114 FT_GlyphLoader_Rewind( FT_GlyphLoader loader ); variable
149 FT_GlyphLoader_Prepare( FT_GlyphLoader loader ); variable
153 FT_GlyphLoader_Add( FT_GlyphLoader loader ); variable
[all...]
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameNetworkingContext.cpp38 return frame()->loader()->referrer();
43 return frame()->loader()->blockedError(request);
/external/chromium/chrome/browser/
H A Dicon_loader_linux.cc40 GdkPixbufLoader* loader = gdk_pixbuf_loader_new(); local
41 gdk_pixbuf_loader_set_size(loader, size, size);
42 gdk_pixbuf_loader_write(loader,
45 gdk_pixbuf_loader_close(loader, NULL);
46 // At this point, the pixbuf is owned by the loader.
47 GdkPixbuf* pixbuf = gdk_pixbuf_loader_get_pixbuf(loader);
60 g_object_unref(loader);

Completed in 1484 milliseconds

1234567891011>>