/external/chromium_org/ppapi/c/trusted/ |
ppb_url_loader_trusted.h | 21 * URL loader trusted interfaces. */ 53 void (*GrantUniversalAccess)(PP_Resource loader); 61 * mutate the URL loader or cause it to be destroyed. 65 * Loader. Setting to a NULL callback will disable it. 67 void (*RegisterStatusCallback)(PP_Resource loader,
|
/libcore/luni/src/main/java/libcore/reflect/ |
ParameterizedTypeImpl.java | 28 private ClassLoader loader; field in class:ParameterizedTypeImpl 31 ListOfTypes args, ClassLoader loader) { 35 this.loader = loader; 61 rawType = Class.forName(rawTypeName, false, loader);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
LeaveBehindData.java | 47 private LeaveBehindData(Parcel arg, ClassLoader loader) { 48 data = arg.readParcelable(loader); 49 op = arg.readParcelable(loader); 62 public LeaveBehindData createFromParcel(Parcel source, ClassLoader loader) { 63 return new LeaveBehindData(source, loader);
|
ConversationCursorLoader.java | 62 for (ConversationCursorLoader loader: sLoaders) { 63 LogUtils.d(TAG, " >> " + loader.mName + " (" + loader.mUri + ")"); 70 LogUtils.d(TAG, "Add loader: " + mUri); 79 * Indicate whether the loader's cursor should be retained after reset 93 LogUtils.d(TAG, "Reset loader/disable cursor: " + mName); 101 LogUtils.d(TAG, "Reset loader/retain cursor: " + mName); 123 LogUtils.d(TAG, "Restarting reset loader: " + mName); 128 LogUtils.d(TAG, "Resuming retained loader: " + mName);
|
ContactLoaderCallbacks.java | 22 import android.content.Loader; 56 public Loader<ImmutableMap<String, ContactInfo>> onCreateLoader(int id, Bundle args) { 61 public void onLoadFinished(Loader<ImmutableMap<String, ContactInfo>> loader, 68 public void onLoaderReset(Loader<ImmutableMap<String, ContactInfo>> loader) {
|
/libcore/support/src/test/java/tests/util/ |
ClassLoaderBuilder.java | 29 * Builds a configured class loader. The constructed class loader can load a 31 * loader. It can also refuse to load a class altogether, even if that class 46 * the constructed class loader and the application class loader. 55 * this class loader. Attempts to load such classes will fail at runtime 70 * new class loaders: a bridge class loader and a leaf class loader. 72 * The bridge class loader is a child of the application class loader [all...] |
/frameworks/support/v4/java/android/support/v4/content/ |
Loader.java | 28 * Static library support version of the framework's {@link android.content.Loader}. 34 public class Loader<D> { 46 * it to the Loader to have the loader re-load its data when the observer 68 * Interface that is implemented to discover when a Loader has finished 71 * to find out when a Loader it is managing has completed so that this can 73 * Loader is not being used in conjunction with LoaderManager. 77 * Called on the thread that created the Loader when the load is complete. 79 * @param loader the loader that completed the loa [all...] |
/frameworks/base/core/java/android/content/ |
Loader.java | 32 * any calls on to a Loader from the main thread of their process (that is, 34 * of Loader (such as {@link AsyncTaskLoader}) will often perform their work 52 public class Loader<D> { 65 * it to the Loader to have the loader re-load its data when the observer 87 * Interface that is implemented to discover when a Loader has finished 90 * to find out when a Loader it is managing has completed so that this can 92 * Loader is not being used in conjunction with LoaderManager. 96 * Called on the thread that created the Loader when the load is complete. 98 * @param loader the loader that completed the loa [all...] |
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
loader.js | 30 var loader = loader || {}; 42 loader.request = function(url, success, error, opt_isBinaryData) 59 loader.Loader = function() 75 loader.Loader._flattenTrie = function(trie, prefix) 84 var partialResult = loader.Loader._flattenTrie(data, fullName); 93 loader.Loader.prototype = [all...] |
/packages/apps/Gallery2/src/com/android/photos/ |
PhotoSetFragment.java | 22 import android.content.Loader; 82 public Loader<Cursor> onCreateLoader(int id, Bundle args) { 84 MediaItemsLoader loader = new MediaItemsLoader(getActivity()); local 85 mLoaderCompatShim = loader; 87 return loader; 91 public void onLoadFinished(Loader<Cursor> loader, 98 public void onLoaderReset(Loader<Cursor> loader) {
|
/external/chromium/chrome/browser/instant/ |
instant_controller.cc | 226 // TODO(sky): this shouldn't nuke the loader. It should just nuke non-instant 253 // If the loader was showing an instant page then it's navigation stack is 355 // Make sure the pending loader is active. Ideally we would call 359 InstantLoader* loader = loader_manager_->active_loader(); local 360 if (loader && loader->ready() && 361 loader == loader_manager_->pending_loader()) { 367 // Loader may be null if the url blacklisted instant. 368 scoped_ptr<InstantLoader> loader; local 370 loader.reset(loader_manager_->ReleaseCurrentLoader()) 495 InstantLoader* loader = NULL; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSShaderValue.cpp | 56 KURL CSSShaderValue::completeURL(ResourceFetcher* loader) const 58 return loader->document()->completeURL(m_url); 61 StyleFetchedShader* CSSShaderValue::resource(ResourceFetcher* loader) 63 ASSERT(loader); 68 FetchRequest request(ResourceRequest(completeURL(loader)), FetchInitiatorTypeNames::css); 69 if (ResourcePtr<ShaderResource> resource = loader->fetchShader(request))
|
/external/guava/guava-tests/test/com/google/common/cache/ |
CacheEvictionTest.java | 44 IdentityLoader<Object> loader = identityLoader(); local 48 .build(loader); 54 IdentityLoader<Object> loader = identityLoader(); local 59 .build(loader); 65 IdentityLoader<Integer> loader = identityLoader(); local 69 .build(loader); 80 IdentityLoader<Integer> loader = identityLoader(); local 85 .build(loader); 97 IdentityLoader<Integer> loader = identityLoader(); local 101 .build(loader); 116 IdentityLoader<Integer> loader = identityLoader(); local 135 IdentityLoader<Integer> loader = identityLoader(); local 148 IdentityLoader<Integer> loader = identityLoader(); local 165 IdentityLoader<Integer> loader = identityLoader(); local 197 IdentityLoader<Integer> loader = identityLoader(); local 240 IdentityLoader<Integer> loader = identityLoader(); local 263 IdentityLoader<Integer> loader = identityLoader(); local [all...] |
/packages/apps/Dialer/src/com/android/dialer/list/ |
SmartDialNumberPickerFragment.java | 18 import android.content.Loader; 52 public Loader<Cursor> onCreateLoader(int id, Bundle args) { 58 Log.v(TAG, "Creating loader"); 60 SmartDialCursorLoader loader = new SmartDialCursorLoader(super.getContext()); local 61 adapter.configureLoader(loader); 62 return loader;
|
/external/chromium_org/components/ |
nacl.gyp | 30 'nacl/loader/nacl_ipc_adapter.cc', 31 'nacl/loader/nacl_ipc_adapter.h', 32 'nacl/loader/nacl_main.cc', 33 'nacl/loader/nacl_main_platform_delegate.h', 34 'nacl/loader/nacl_main_platform_delegate_linux.cc', 35 'nacl/loader/nacl_main_platform_delegate_mac.mm', 36 'nacl/loader/nacl_main_platform_delegate_win.cc', 37 'nacl/loader/nacl_listener.cc', 38 'nacl/loader/nacl_listener.h', 39 'nacl/loader/nacl_validation_db.h' [all...] |
/frameworks/base/docs/html/sdk/api_diff/16/changes/ |
android.content.Loader.html | 10 android.content.Loader 74 Class android.content.<A HREF="../../../../reference/android/content/Loader.html" target="_top"><font size="+2"><code>Loader</code></font></A> 86 <A NAME="android.content.Loader.cancelLoad_added()"></A> 87 <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/Loader.html#cancelLoad()" target="_top"><code>cancelLoad</code></A>()</nobr> 93 <A NAME="android.content.Loader.deliverCancellation_added()"></A> 94 <nobr><code>void</code> <A HREF="../../../../reference/android/content/Loader.html#deliverCancellation()" target="_top"><code>deliverCancellation</code></A>()</nobr> 100 <A NAME="android.content.Loader.onCancelLoad_added()"></A> 101 <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/Loader.html#onCancelLoad()" target="_top"><code>onCancelLoad</code></A>()</nobr> 107 <A NAME="android.content.Loader.registerOnLoadCanceledListener_added(android.content.Loader.OnLoadCanceledListener<D>)"></A [all...] |
/external/chromium_org/content/renderer/media/android/ |
media_info_loader.cc | 50 scoped_ptr<WebURLLoader> loader; local 52 loader = test_loader_.Pass(); 68 loader.reset(frame->createAssociatedURLLoader(options)); 72 loader->loadAsynchronously(request, this); 73 active_loader_.reset(new ActiveLoader(loader.Pass())); 79 WebURLLoader* loader, 98 WebURLLoader* loader, 105 WebURLLoader* loader, 127 WebURLLoader* loader, 135 blink::WebURLLoader* loader, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementInclude.py | 9 # 2003-11-14 fl fixed default loader 66 # Default loader. This loader reads an included resource from disk. 73 # is a Unicode string. If the loader fails, it can return None 75 # @throws IOError If the loader fails to load the resource. 92 # @param loader Optional resource loader. If omitted, it defaults 99 def include(elem, loader=None): 100 if loader is None: 101 loader = default_loade [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementInclude.py | 9 # 2003-11-14 fl fixed default loader 66 # Default loader. This loader reads an included resource from disk. 73 # is a Unicode string. If the loader fails, it can return None 75 # @throws IOError If the loader fails to load the resource. 92 # @param loader Optional resource loader. If omitted, it defaults 99 def include(elem, loader=None): 100 if loader is None: 101 loader = default_loade [all...] |
/external/chromium/webkit/glue/media/ |
simple_data_source.h | 61 WebKit::WebURLLoader* loader, 65 WebKit::WebURLLoader* loader, 69 WebKit::WebURLLoader* loader, 72 WebKit::WebURLLoader* loader, 75 WebKit::WebURLLoader* loader, 80 WebKit::WebURLLoader* loader, 83 WebKit::WebURLLoader* loader, 86 WebKit::WebURLLoader* loader,
|
/external/chromium_org/components/nacl/common/ |
nacl_messages.h | 37 // Tells the NaCl broker to launch a NaCl loader process. 39 std::string /* channel ID for the loader */) 41 // Notify the browser process that the loader was launched successfully. 43 std::string, /* channel ID for the loader */ 44 base::ProcessHandle /* loader process handle */) 47 // given NaCl loader process. 54 // attaching a debug exception handler to the given NaCl loader 60 // Notify the broker that all loader processes have been terminated and it
|
/external/chromium_org/components/nacl/loader/ |
nacl_helper_linux.h | 25 // For communications between NaCl loader and browser. 29 // For communications between NaCl loader and zygote.
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afmodule.h | 36 * loaded into `loader' (see function `af_loader_reset'). 45 AF_LoaderRec loader[1]; member in struct:AF_ModuleRec_
|
/external/chromium_org/third_party/freetype/src/truetype/ |
truetype.c | 24 #include "ttpload.c" /* tables loader */ 25 #include "ttgload.c" /* glyph loader */
|
/external/freetype/src/autofit/ |
afmodule.h | 36 * loaded into `loader' (see function `af_loader_reset'). 45 AF_LoaderRec loader[1]; member in struct:AF_ModuleRec_
|