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

  /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]);
  /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...]
  /external/webkit/WebKit/win/
WebDataSource.h 100 /* [in] */ IWebResource *subresource);
  /external/webkit/WebCore/loader/
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.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/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 913 RefPtr<ArchiveResource> coreResource(loader->subresource(KURL(KURL(), uri)));
    [all...]

Completed in 243 milliseconds