HomeSort by relevance Sort by last modified time
    Searched refs:subresource (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/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 524 RefPtr<ArchiveResource> subresource = _private->loader->subresource(URL);
526 return subresource ? [[[WebResource alloc] _initWithCoreResource:subresource.get()] autorelease] : nil;
529 - (void)addSubresource:(WebResource *)subresource
531 _private->loader->addArchiveResource([subresource _coreResource]);
WebArchive.mm 186 WebResource *subresource;
187 while ((subresource = [enumerator nextObject]) != nil)
188 coreResources.append([subresource _coreResource]);
  /external/webkit/Source/WebCore/loader/archive/android/
WebArchiveAndroid.cpp 242 PassRefPtr<ArchiveResource> subresource = loadArchiveResource(resourceNode); local
243 if (!subresource) {
244 ALOGD("loadArchive: Failed to load subresource.");
247 subresources.append(subresource);
413 for (Vector<const RefPtr<ArchiveResource> >::iterator subresource = archive->subresources().begin();
414 subresource != archive->subresources().end();
415 subresource++) {
416 if (!saveArchiveResource(writer, *subresource))
  /external/webkit/Source/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...]
  /external/webkit/Source/WebKit/win/
WebDataSource.h 100 /* [in] */ IWebResource *subresource);
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTreeModel.js 291 var subresource = frameTreePayload.resources[i];
292 var resource = this._createResource(framePayload, subresource.url);
293 resource.type = WebInspector.Resource.Type[subresource.type];
  /external/webkit/Source/WebCore/loader/
DocumentLoader.cpp 522 PassRefPtr<ArchiveResource> DocumentLoader::subresource(const KURL& url) const function in class:WebCore::DocumentLoader
553 RefPtr<ArchiveResource> subresource = this->subresource(KURL(ParsedURLString, it->second->url())); local
554 if (subresource)
555 subresources.append(subresource.release());
DocumentLoader.h 153 PassRefPtr<ArchiveResource> subresource(const KURL&) const;
  /external/chromium/chrome/browser/net/
predictor_unittest.cc 261 // Functions to help synthesize and test serializations of subresource referrer
294 const GURL& subresource,
304 // Provide empty subresource list.
315 // We won't bother to check for the subresource being there already. Worst
319 subresource_list->Append(new StringValue(subresource.spec()));
325 // For a given motivation, and subresource, find what latency is currently
330 const GURL& subresource,
343 if (subresource == GURL(url_spec)) {
  /external/webkit/Source/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 143 RetainPtr<CFDictionaryRef> subresource = createPropertyListRepresentation(subresources[i].get(), Subresource); local
144 if (subresource)
145 CFArrayAppendValue(subresourcesArray.get(), subresource.get());
147 LOG(Archives, "LegacyWebArchive - Failed to create property list for subresource");
336 LOG(Archives, "LegacyWebArchive - Subresource is not expected CFDictionary, aborting invalid WebArchive");
526 RefPtr<ArchiveResource> resource = documentLoader->subresource(subresourceURL);
542 LOG_ERROR("Failed to archive subresource for %s", subresourceURL.string().utf8().data());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.cpp 654 RefPtr<ArchiveResource> resource = loader->subresource(url);
675 RefPtr<ArchiveResource> resource = loader->subresource(url);
WebPage.cpp     [all...]
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm     [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp     [all...]

Completed in 537 milliseconds