HomeSort by relevance Sort by last modified time
    Searched full:loader (Results 176 - 200 of 2347) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.cpp 53 #include "core/loader/DocumentLoader.h"
54 #include "core/loader/DocumentThreadableLoader.h"
55 #include "core/loader/FrameLoader.h"
56 #include "core/loader/ThreadableLoader.h"
57 #include "core/loader/ThreadableLoaderClient.h"
149 m_callback->sendFailure("Couldn't create a loader");
153 void setLoader(PassRefPtr<ThreadableLoader> loader)
155 m_loader = loader;
200 static PassRefPtr<TypeBuilder::Network::ResourceTiming> buildObjectForTiming(const ResourceLoadTiming& timing, DocumentLoader* loader)
203 .setRequestTime(loader->timing()->monotonicTimeToPseudoWallTime(timing.requestTime)
729 RefPtr<DocumentThreadableLoader> loader = DocumentThreadableLoader::create(document, inspectorThreadableLoaderClient, request, options); local
    [all...]
InspectorInstrumentation.cpp 97 void continueAfterPingLoaderImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& response)
99 willSendRequestImpl(instrumentingAgents, identifier, loader, request, response, FetchInitiatorInfo());
102 void didReceiveResourceResponseButCanceledImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
104 didReceiveResourceResponse(frame, identifier, loader, r, 0);
107 void continueAfterXFrameOptionsDeniedImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
109 didReceiveResourceResponseButCanceledImpl(frame, loader, identifier, r);
112 void continueWithPolicyDownloadImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
114 didReceiveResourceResponseButCanceledImpl(frame, loader, identifier, r);
117 void continueWithPolicyIgnoreImpl(Frame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r)
119 didReceiveResourceResponseButCanceledImpl(frame, loader, identifier, r)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationScheduler.cpp 33 #include "core/loader/NavigationScheduler.h"
39 #include "core/loader/DocumentLoader.h"
40 #include "core/loader/FormState.h"
41 #include "core/loader/FormSubmission.h"
42 #include "core/loader/FrameLoadRequest.h"
43 #include "core/loader/FrameLoader.h"
44 #include "core/loader/FrameLoaderClient.h"
45 #include "core/loader/FrameLoaderStateMachine.h"
113 frame->loader().load(request);
134 virtual bool shouldStartTimer(Frame* frame) { return frame->loader().allAncestorsAreComplete();
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsCategory.java 26 import android.content.Loader;
88 * so that the loader can be updated.
93 public PackageIntentReceiver(AppListLoader loader) {
94 mLoader = loader;
108 // Tell the loader about the change.
114 * A custom Loader that loads all of the installed applications.
141 // An async query came in while the loader is stopped. We
151 // If the Loader is currently started, we can immediately
165 * Handles a request to start the Loader.
195 * Handles a request to stop the Loader
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
runpy.py 89 # loader protocol (specifically, "get_filename" is non-standard)
92 def _get_filename(loader, mod_name):
94 meth = getattr(loader, attr, None)
99 # Helper to get the loader, code and filename for a module
101 loader = get_loader(mod_name)
102 if loader is None:
104 if loader.is_package(mod_name):
113 code = loader.get_code(mod_name)
116 filename = _get_filename(loader, mod_name)
117 return mod_name, loader, code, filenam
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
runpy.py 89 # loader protocol (specifically, "get_filename" is non-standard)
92 def _get_filename(loader, mod_name):
94 meth = getattr(loader, attr, None)
99 # Helper to get the loader, code and filename for a module
101 loader = get_loader(mod_name)
102 if loader is None:
104 if loader.is_package(mod_name):
113 code = loader.get_code(mod_name)
116 filename = _get_filename(loader, mod_name)
117 return mod_name, loader, code, filenam
    [all...]
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 22 import android.content.Loader;
68 // Prepare the loader. Either re-connect with an existing one,
86 // the search filter, and restart the loader to do a new query
113 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
114 // This is called when a new Loader needs to be created. This
115 // sample only has one Loader, so we don't care about the ID.
136 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
149 public void onLoaderReset(Loader<Cursor> loader) {
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
owner_manager_unittest.cc 99 MockKeyLoadObserver loader; local
116 MockKeyLoadObserver loader; local
117 loader.ExpectKeyFetchSuccess(true);
134 MockKeyLoadObserver loader; local
135 loader.ExpectKeyFetchSuccess(true);
155 MockKeyLoadObserver loader; local
156 loader.ExpectKeyFetchSuccess(false);
205 MockKeyLoadObserver loader; local
206 loader.ExpectKeyFetchSuccess(true);
207 loader.SetQuitOnKeyFetch(false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameOwnerElement.cpp 27 #include "core/loader/FrameLoader.h"
28 #include "core/loader/FrameLoaderClient.h"
85 frame->loader().frameDetached();
141 RefPtr<Frame> childFrame = parentFrame->loader().client()->createFrame(url, frameName, referrer, this);
144 parentFrame->loader().checkCompleted();
154 childFrame->loader().started();
169 // create the child first, then invoke the loader separately.
170 if (childFrame->loader().state() == FrameStateComplete && !childFrame->loader().policyDocumentLoader())
171 childFrame->loader().checkCompleted()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebEmbeddedWorkerImpl.cpp 42 #include "core/loader/FrameLoadRequest.h"
43 #include "core/loader/SubstituteData.h"
59 class WebEmbeddedWorkerImpl::Loader : public WorkerScriptLoaderClient {
61 static PassOwnPtr<Loader> create(ExecutionContext* loadingContext, const KURL& scriptURL, const Closure& callback)
63 return adoptPtr(new Loader(loadingContext, scriptURL, callback));
66 virtual ~Loader()
86 Loader(ExecutionContext* loadingContext, const KURL& scriptURL, const Closure& callback)
164 m_mainScriptLoader = Loader::create(
201 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(m_workerStartData.scriptURL), SubstituteData(buffer, "text/html", "UTF-8", KURL())));
209 // Tell the loader to load the data into the 'shadow page' synchronously
    [all...]
  /external/chromium_org/tools/gn/
loader.h 25 // The loader manages execution of the different build files. It receives
29 // This loader class is abstract so it can be mocked out for testing the
31 class Loader : public base::RefCountedThreadSafe<Loader> {
33 Loader();
67 friend class base::RefCountedThreadSafe<Loader>;
68 virtual ~Loader();
71 class LoaderImpl : public Loader {
82 // Loader implementation.
101 // This callback is used when the loader finds it wants to load a file
    [all...]
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 41 ClassLoader loader = mergeAndLoad( local
45 Class<?> basic = loader.loadClass("testdata.Basic");
48 Class<?> fillArrayData = loader.loadClass("testdata.FillArrayData");
61 ClassLoader loader = mergeAndLoad( local
65 Class<?> basic = loader.loadClass("testdata.Basic");
68 Class<?> tryCatchFinally = loader.loadClass("testdata.TryCatchFinally");
73 ClassLoader loader = mergeAndLoad( local
77 Class<?> basic = loader.loadClass("testdata.Basic");
80 Class<?> staticValues = loader.loadClass("testdata.StaticValues");
97 ClassLoader loader = mergeAndLoad local
    [all...]
  /developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/
CursorLoaderListFragment.java 22 import android.content.Loader;
85 // Prepare the loader. Either re-connect with an existing one,
129 * filter, and restart the loader to do a new query with this filter.
139 // Prevents restarting the loader when restoring state.
147 // Restart the Loader.
149 // creating the query for the Loader.
181 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
182 // This is called when a new Loader needs to be created. This
183 // sample only has one Loader, so we don't care about the ID.
208 public void onLoadFinished(Loader<Cursor> loader, Cursor data)
    [all...]
  /libcore/libart/src/main/java/java/lang/
ClassLoader.java 53 * parent class loaders. Only if the parent class loader cannot satisfy the
54 * request, the child class loader itself tries to handle it.
69 * classes from the classpath. It is not equal to the bootstrap class loader -
74 * creation of the system class loader until first use. We use a static
81 public static ClassLoader loader = ClassLoader.createSystemClassLoader(); field in class:ClassLoader.SystemClassLoader
90 * The packages known to the class loader.
99 * loader.
107 * Create the system class loader. Note this is NOT the bootstrap class
108 * loader (which is managed by the VM). We use a null value for the parent
109 * to indicate that the bootstrap loader is our parent
357 ClassLoader loader; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
DesktopAssetManager.java 102 public void addClassLoader(ClassLoader loader){
106 classLoaders.add(loader);
110 public void removeClassLoader(ClassLoader loader){
112 classLoaders.remove(loader);
124 public void registerLoader(Class<? extends AssetLoader> loader, String ... extensions){
125 handler.addLoader(loader, extensions);
127 logger.log(Level.FINER, "Registered loader: {0} for extensions {1}",
128 new Object[]{loader.getSimpleName(), Arrays.toString(extensions)});
137 logger.log(Level.WARNING, "Failed to find loader: "+clsName, ex);
139 logger.log(Level.WARNING, "Failed to find loader: "+clsName, ex);
246 AssetLoader loader = handler.aquireLoader(key); local
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
ClassLoader.java 53 * parent class loaders. Only if the parent class loader cannot satisfy the
54 * request, the child class loader itself tries to handle it.
69 * classes from the classpath. It is not equal to the bootstrap class loader -
74 * creation of the system class loader until first use. We use a static
81 public static ClassLoader loader = ClassLoader.createSystemClassLoader(); field in class:ClassLoader.SystemClassLoader
90 * The packages known to the class loader.
95 * Create the system class loader. Note this is NOT the bootstrap class
96 * loader (which is managed by the VM). We use a null value for the parent
97 * to indicate that the bootstrap loader is our parent.
120 * Returns the system class loader. This is the parent for ne
345 ClassLoader loader; local
    [all...]
  /external/chromium_org/content/test/
weburl_loader_mock_factory.h 66 // Called by the loader to load a resource.
72 WebURLLoaderMock* loader);
74 // Removes the loader from the list of pending loaders.
75 void CancelLoad(WebURLLoaderMock* loader);
91 // Checks if the loader is pending. Otherwise, it may have been deleted.
92 bool IsPending(WebURLLoaderMock* loader);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditorDelegate.cpp 31 #include "core/loader/DocumentLoader.h"
32 #include "core/loader/FrameLoader.h"
33 #include "core/loader/FrameLoaderClient.h"
34 #include "core/loader/PingLoader.h"
80 FrameLoader& frameLoader = m_document->frame()->loader();
105 FrameLoader& frameLoader = m_document->frame()->loader();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
runner.py 41 def __init__(self, printer, loader, webkit_finder):
43 self.loader = loader
48 self.worker_factory = lambda caller: _Worker(caller, self.loader, self.webkit_finder)
71 def __init__(self, caller, loader, webkit_finder):
73 self._loader = loader
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetConfigure.java 25 import android.content.Loader;
82 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
95 public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) {
113 public void onLoaderReset(Loader<Cursor> loader) {
  /packages/apps/Settings/src/com/android/settings/location/
LocationSettingsBase.java 23 import android.content.Loader;
111 public Loader<Cursor> onCreateLoader(int id, Bundle args) {
123 public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
128 public void onLoaderReset(Loader<Cursor> loader) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
EventLogView.java 37 ImageLoader loader = ImageLoader.getDdmUiLibLoader(); local
42 optionsAction.setImageDescriptor(loader.loadDescriptor("edit.png")); //$NON-NLS-1$
46 clearLogAction.setImageDescriptor(loader.loadDescriptor("clear.png")); //$NON-NLS-1$
50 saveAction.setImageDescriptor(loader.loadDescriptor("save.png")); //$NON-NLS-1$
54 loadAction.setImageDescriptor(loader.loadDescriptor("load.png")); //$NON-NLS-1$
58 importBugAction.setImageDescriptor(loader.loadDescriptor("importBug.png")); //$NON-NLS-1$
  /external/chromium/chrome/browser/policy/
asynchronous_policy_provider_unittest.cc 45 AsynchronousPolicyLoader* loader = local
49 loader); local
51 loader->Reload();
  /external/chromium_org/chrome_frame/test/
simple_resource_loader_test.cc 84 SimpleResourceLoader* loader = SimpleResourceLoader::GetInstance(); local
86 ASSERT_TRUE(NULL != loader);
87 ASSERT_TRUE(NULL != loader->GetResourceModuleHandle());
  /external/chromium_org/ui/base/cursor/
cursor_loader.h 22 // Returns the display the loader loads images for.
27 // Sets the display the loader loads images for.
67 // The display the loader loads images for.

Completed in 400 milliseconds

1 2 3 4 5 6 78 91011>>