HomeSort by relevance Sort by last modified time
    Searched refs:loader (Results 101 - 125 of 1242) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DefaultContactListAdapter.java 51 public void configureLoader(CursorLoader loader, long directoryId) {
52 if (loader instanceof ProfileAndContactsLoader) {
53 ((ProfileAndContactsLoader) loader).setLoadProfile(shouldIncludeProfile());
66 loader.setUri(Contacts.CONTENT_URI);
67 loader.setProjection(getProjection(false));
68 loader.setSelection("0");
79 loader.setUri(builder.build());
80 loader.setProjection(getProjection(true));
83 configureUri(loader, directoryId, filter);
84 loader.setProjection(getProjection(false))
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheExpirationTest.java 52 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
57 .build(loader);
58 checkExpiration(cache, loader, ticker, removalListener);
64 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
69 .build(loader);
70 checkExpiration(cache, loader, ticker, removalListener);
73 private void checkExpiration(LoadingCache<String, Integer> cache, WatchedCreatorLoader loader,
81 loader.reset();
83 assertFalse("Creator should not have been called @#" + i, loader.wasCalled());
101 WatchedCreatorLoader loader = new WatchedCreatorLoader() local
113 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
188 CacheLoader<Integer, AtomicInteger> loader = new CacheLoader<Integer, AtomicInteger>() { local
215 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
227 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
239 WatchedCreatorLoader loader = new WatchedCreatorLoader(); local
252 IdentityLoader<Integer> loader = identityLoader(); local
304 IdentityLoader<Integer> loader = identityLoader(); local
351 IdentityLoader<Integer> loader = identityLoader(); local
    [all...]
  /external/chromium_org/components/nacl/renderer/
file_downloader.h 48 virtual void didReceiveResponse(blink::WebURLLoader* loader,
50 virtual void didReceiveData(blink::WebURLLoader* loader,
54 virtual void didFinishLoading(blink::WebURLLoader* loader,
57 virtual void didFail(blink::WebURLLoader* loader,
manifest_downloader.cc 36 blink::WebURLLoader* loader,
44 blink::WebURLLoader* loader,
58 blink::WebURLLoader* loader,
73 blink::WebURLLoader* loader,
  /external/chromium_org/media/blink/
active_loader.h 23 // Creates an ActiveLoader with the given loader. It is assumed that the
24 // initial state of |loader| is loading and not deferred.
25 explicit ActiveLoader(scoped_ptr<blink::WebURLLoader> loader);
  /external/chromium_org/mojo/shell/
shell_test_helper.h 36 // Sets a ApplicationLoader for the specified URL. |loader| is ultimately used
39 void SetLoaderForURL(scoped_ptr<ApplicationLoader> loader, const GURL& url);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLNoEmbedElement.cpp 37 #include "core/loader/FrameLoader.h"
52 if (document().frame()->loader().allowPlugins(NotAboutToInstantiatePlugin))
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserOptions.cpp 33 #include "core/loader/FrameLoader.h"
41 pluginsEnabled = frame && frame->loader().allowPlugins(NotAboutToInstantiatePlugin);
50 // See LayoutTests/loader/iframe-sync-loads.html
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
egl_g3d_loader.h 48 egl_g3d_create_driver(const struct egl_g3d_loader *loader);
  /external/lldb/test/unittest2/
collector.py 3 from unittest2.loader import defaultTestLoader
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_loader.h 48 egl_g3d_create_driver(const struct egl_g3d_loader *loader);
  /external/mockito/src/org/mockito/internal/creation/jmock/
SearchingClassLoader.java 36 // In an Eclipse plug-in, jMock itself will not be on the system class loader
37 // but in the class loader of the plug-in.
53 ClassLoader loader = parentLoaders.get(parentLoaders.size()-1); local
56 loader = new SearchingClassLoader(parentLoaders.get(i), loader);
59 return loader;
  /frameworks/base/core/java/android/os/
Parcelable.java 129 * @param loader The ClassLoader that this object is being created in.
132 public T createFromParcel(Parcel source, ClassLoader loader);
  /frameworks/support/v4/honeycomb_mr2/android/support/v4/os/
ParcelableCompatCreatorCallbacks.java 34 * @param loader The ClassLoader that this object is being created in.
37 public T createFromParcel(Parcel in, ClassLoader loader);
  /external/chromium_org/content/renderer/pepper/
pepper_url_loader_host.h 45 virtual void willSendRequest(blink::WebURLLoader* loader,
48 virtual void didSendData(blink::WebURLLoader* loader,
51 virtual void didReceiveResponse(blink::WebURLLoader* loader,
53 virtual void didDownloadData(blink::WebURLLoader* loader,
56 virtual void didReceiveData(blink::WebURLLoader* loader,
60 virtual void didFinishLoading(blink::WebURLLoader* loader,
63 virtual void didFail(blink::WebURLLoader* loader,
116 // wrapping the main document's loader (i.e. loader_ is null).
122 // Set to true when this loader can ignore same originl policy.
125 // The loader associated with this request. MAY BE NULL
    [all...]
  /external/chromium_org/chrome/browser/
icon_manager.cc 63 IconLoader* loader = new IconLoader(file_name, size, this); local
64 loader->AddRef();
65 loader->Start();
74 requests_[loader] = client_request;
80 bool IconManager::OnGroupLoaded(IconLoader* loader,
82 ClientRequests::iterator rit = requests_.find(loader);
93 return OnImageLoaded(loader, result, group);
97 IconLoader* loader, gfx::Image* result, const IconGroupID& group) {
98 ClientRequests::iterator rit = requests_.find(loader);
101 loader->Release()
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
AbstractClassGenerator.java 71 private String getClassName(final ClassLoader loader) {
72 final Set nameCache = getClassNameCache(loader);
80 private Set getClassNameCache(ClassLoader loader) {
81 return (Set)((Map)source.cache.get(loader)).get(NAME_KEY);
90 * the generated classes to be removed when the associated loader is garbage collected.
91 * @param classLoader the loader to generate the new class with, or null to use the default
192 ClassLoader loader = getClassLoader();
194 cache2 = (Map)source.cache.get(loader);
198 source.cache.put(loader, cache2);
211 gen = loader.loadClass(getClassName())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
LinkImport.cpp 69 if (m_child->loader()->hasError())
95 HTMLImportLoader* loader = m_owner->document().importLoader(); local
96 HTMLImport* parent = loader ? static_cast<HTMLImport*>(loader->firstImport()) : static_cast<HTMLImport*>(controller->root());
134 return m_child && m_child->isDone() && !m_child->loader()->hasError();
  /libcore/luni/src/main/java/libcore/reflect/
ParameterizedTypeImpl.java 30 private final ClassLoader loader; field in class:ParameterizedTypeImpl
33 ListOfTypes args, ClassLoader loader) {
40 this.loader = loader;
65 rawType = Class.forName(rawTypeName, false, loader);
  /external/chromium_org/content/test/
weburl_loader_mock_factory.cc 84 WebURLLoaderMock* loader = iter->first; local
91 // Follow any redirects while the loader is still active.
94 WebURLRequest newRequest = loader->ServeRedirect(response);
95 if (!IsPending(loader) || loader->isDeferred())
100 // Serve the request if the loader is still active.
101 if (IsPending(loader) && !loader->isDeferred())
102 loader->ServeAsynchronousRequest(response, data, error);
103 // The loader might have already been removed
    [all...]
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 47 * loader} in order to load classes from more than one dex file. The primary
82 * Patches the application context class loader by appending extra dex files
126 /* The patched class loader is expected to be a descendant of
131 ClassLoader loader; local
133 loader = context.getClassLoader();
139 Log.w(TAG, "Failure while trying to obtain Context class loader. " +
143 if (loader == null) {
144 // Note, the context class loader is null when running Robolectric tests.
146 "Context class loader is null. Must be running in test mode. "
161 installSecondaryDexes(loader, dexDir, files)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java 31 private final ClassLoader loader = getClass().getClassLoader(); field in class:ProxyTest
40 * Make sure the proxy's class loader fails if it cannot see the class
71 Proxy.newProxyInstance(loader, new Class[] {ReturnsInt.class, ReturnsFloat.class},
80 Proxy.newProxyInstance(loader, new Class[] {ReturnsInt.class, ReturnsInteger.class},
89 Proxy.newProxyInstance(loader, new Class[] {ReturnsInt.class, ReturnsVoid.class},
98 Proxy.newProxyInstance(loader, new Class[] {ReturnsInteger.class, ReturnsString.class },
106 Proxy.newProxyInstance(loader, new Class[] {ReturnsString.class, ReturnsCharSequence.class},
108 Proxy.newProxyInstance(loader, new Class[]{ReturnsObject.class, ReturnsCharSequence.class,
110 Proxy.newProxyInstance(loader, new Class[]{ReturnsObject.class, ReturnsCharSequence.class,
117 Proxy.newProxyInstance(loader, new Class[] {ReturnsString.class, ReturnsObject.class}
    [all...]
  /libcore/luni/src/main/java/java/lang/
Runtime.java 325 void load(String absolutePath, ClassLoader loader) {
329 String error = doLoad(absolutePath, loader);
358 void loadLibrary(String libraryName, ClassLoader loader) {
359 if (loader != null) {
360 String filename = loader.findLibrary(libraryName);
366 throw new UnsatisfiedLinkError(loader + " couldn't find \"" +
369 String error = doLoad(filename, loader);
384 String error = doLoad(candidate, loader);
400 private String doLoad(String name, ClassLoader loader) {
421 if (loader != null && loader instanceof BaseDexClassLoader)
    [all...]
  /external/chromium_org/chrome/browser/policy/
chrome_browser_policy_connector.cc 107 scoped_ptr<AsyncPolicyLoader> loader(PolicyLoaderWin::Create(
110 return new AsyncPolicyProvider(GetSchemaRegistry(), loader.Pass());
112 scoped_ptr<AsyncPolicyLoader> loader(new PolicyLoaderMac(
116 return new AsyncPolicyProvider(GetSchemaRegistry(), loader.Pass());
120 scoped_ptr<AsyncPolicyLoader> loader(new ConfigDirPolicyLoader(
124 return new AsyncPolicyProvider(GetSchemaRegistry(), loader.Pass());
  /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

Completed in 680 milliseconds

1 2 3 45 6 7 8 91011>>