HomeSort by relevance Sort by last modified time
    Searched defs:loaders (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebKit/chromium/src/
SharedWorkerRepository.cpp 101 AtomicallyInitializedStatic(Vector<SharedWorkerScriptLoader*>&, loaders = *new Vector<SharedWorkerScriptLoader*>);
102 return loaders;
107 // Walk our list of pending loaders and shutdown any that belong to this context.
108 Vector<SharedWorkerScriptLoader*>& loaders = pendingLoaders(); local
109 for (unsigned i = 0; i < loaders.size(); ) {
110 SharedWorkerScriptLoader* loader = loaders[i];
112 loaders.remove(i);
  /frameworks/base/awt/org/apache/harmony/awt/gl/image/
ImageLoader.java 45 List<Thread> loaders = new ArrayList<Thread>(MAX_THREADS); field in class:ImageLoader.ImageLoadersStorage
73 synchronized(storage.loaders) {
74 if (storage.loaders.size() < ImageLoadersStorage.MAX_THREADS) {
79 storage.loaders.add(loader);
149 while (storage.loaders.contains(this)) {
165 synchronized(storage.loaders) {
166 storage.loaders.remove(Thread.currentThread());
172 * Removes current thread from loaders (so we are able
173 * to create more loaders) and decreases its priority.
180 storage.loaders.remove(currThread)
    [all...]
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheGroup.cpp 808 // all other loaders in the m_associatedDocumentLoaders are still associated with
811 // Need to copy loaders, because the cache group may be destroyed at the end of iteration.
812 Vector<DocumentLoader*> loaders; local
813 copyToVector(m_pendingMasterResourceLoaders, loaders);
814 size_t count = loaders.size();
816 disassociateDocumentLoader(loaders[i]); // This can delete this group.
862 Vector<DocumentLoader*> loaders; local
    [all...]

Completed in 78 milliseconds