/external/webkit/LayoutTests/http/tests/appcache/resources/ |
foreign-iframe.manifest | 4 foreign-iframe-subresource.js
|
foreign-iframe.html | 3 <script src="foreign-iframe-subresource.js"></script>
|
/external/webkit/LayoutTests/http/tests/appcache/resources/auth/ |
subresource.php | 8 echo "/* Empty subresource */";
|
manifest.php | 10 echo "subresource.php\n";
|
/external/webkit/WebKit/mac/WebView/ |
WebDataSource.h | 161 @abstract Returns a subresource for a given URL. 162 @param URL The URL of the subresource. 163 @description Returns non-nil if the data source has fully downloaded a subresource with the given URL. 169 @abstract Adds a subresource to the data source. 170 @param subresource The subresource to be added. 171 @description addSubresource: adds a subresource to the data source's list of subresources. 172 Later, if something causes the data source to load the URL of the subresource, the data source 173 will load the data from the subresource instead of from the network. For example, if one wants to add 176 subresource with the same URL, addSubresource: will replace it [all...] |
WebDataSource.mm | 508 RefPtr<ArchiveResource> subresource = _private->loader->subresource(URL); 510 return subresource ? [[[WebResource alloc] _initWithCoreResource:subresource.get()] autorelease] : nil; 513 - (void)addSubresource:(WebResource *)subresource 515 _private->loader->addArchiveResource([subresource _coreResource]);
|
WebArchive.mm | 184 WebResource *subresource; 185 while ((subresource = [enumerator nextObject]) != nil) 186 coreResources.append([subresource _coreResource]);
|
WebArchive.h | 79 @result The subresource of the archive (can be nil).
|
/external/webkit/WebKit/win/Interfaces/ |
IWebDataSource.idl | 184 @abstract Returns a subresource for a given URL. 185 @param URL The URL of the subresource. 186 @description Returns non-nil if the data source has fully downloaded a subresource with the given URL. 193 @abstract Adds a subresource to the data source. 194 @param subresource The subresource to be added. 195 @description addSubresource: adds a subresource to the data source's list of subresources. 196 Later, if something causes the data source to load the URL of the subresource, the data source 197 will load the data from the subresource instead of from the network. For example, if one wants to add 200 subresource with the same URL, addSubresource: will replace it [all...] |
IWebArchive.idl | 88 @result The subresource of the archive (can be nil).
|
/external/webkit/WebCore/manual-tests/ |
new-window-subresource-crash.html | 14 triggers subresource loads. If you have popup blocking enabled you can
|
/external/webkit/WebCore/loader/archive/ |
Archive.h | 51 void addSubresource(PassRefPtr<ArchiveResource> subResource) { m_subresources.append(subResource); }
|
/external/webkit/WebCore/loader/ |
SubresourceLoader.cpp | 151 // Since a subresource loader does not load multipart sections progressively, 172 // A subresource loader does not load multipart sections progressively. 231 // The only way the subresource loader can reach the terminal state here is if the run loop spins when calling
|
DocumentLoader.cpp | 477 PassRefPtr<ArchiveResource> DocumentLoader::subresource(const KURL& url) const function in class:WebCore::DocumentLoader 508 RefPtr<ArchiveResource> subresource = this->subresource(KURL(ParsedURLString, it->second->url())); local 509 if (subresource) 510 subresources.append(subresource.release());
|
DocumentLoader.h | 127 PassRefPtr<ArchiveResource> subresource(const KURL&) const;
|
/external/webkit/WebCore/loader/archive/cf/ |
LegacyWebArchive.h | 55 enum MainResourceStatus { Subresource, MainResource };
|
LegacyWebArchive.cpp | 142 RetainPtr<CFDictionaryRef> subresource = createPropertyListRepresentation(subresources[i].get(), Subresource); local 143 if (subresource) 144 CFArrayAppendValue(subresourcesArray.get(), subresource.get()); 146 LOG(Archives, "LegacyWebArchive - Failed to create property list for subresource"); 335 LOG(Archives, "LegacyWebArchive - Subresource is not expected CFDictionary, aborting invalid WebArchive"); 525 RefPtr<ArchiveResource> resource = documentLoader->subresource(subresourceURL); 541 LOG_ERROR("Failed to archive subresource for %s", subresourceURL.string().utf8().data());
|
/external/webkit/WebKit/win/ |
WebDataSource.h | 100 /* [in] */ IWebResource *subresource);
|
WebDataSource.cpp | 300 /* [in] */ IWebResource* /*subresource*/)
|
/external/webkit/WebCore/platform/network/ |
ResourceRequestBase.h | 59 TargetIsSubresource, // Resource is a generic subresource. (Generally a specific type should be specified)
|
/external/webkit/WebKit/chromium/src/ |
FrameLoaderClientImpl.cpp | 242 // subresource load. The following functions that accept an |identifier| are 243 // called for each subresource, so they should not be dispatched to the 257 // A subresource in this context is anything other than a frame -- 259 // subresource is NOT limited to stuff loaded through the frame's subresource 261 // subresource loader, but we still label them as TargetIsSubResource. [all...] |
/external/webkit/WebKit/mac/Misc/ |
WebNSPasteboardExtras.mm | 200 // This image data is either the only subresource of an archive (HTML image case)
|
/external/chromium/third_party/icu/source/test/cintltst/ |
crestst.c | 421 UResourceBundle *subResource = NULL; 445 subResource = ures_getByKey(fr_FR, "MeasurementSystem", NULL, &status); 451 ures_close(subResource); [all...] |
/external/icu4c/test/cintltst/ |
crestst.c | 424 UResourceBundle *subResource = NULL; 448 subResource = ures_getByKey(fr_FR, "MeasurementSystem", NULL, &status); 454 ures_close(subResource); [all...] |
/external/chromium/net/tools/flip_server/ |
flip_in_mem_edsm_server.cc | 136 // Does the server send X-Subresource headers); 536 // Adds an X-Subresource or X-Associated-Content to |referer| for |url| 552 LOG(ERROR) << "Skipping subresource with unknown content-type"; 588 header_name = "X-Subresource"; [all...] |