/external/webkit/Source/WebCore/fileapi/ |
D | ThreadableBlobRegistry.cpp | 49 BlobRegistryContext(const KURL& url, const KURL& srcURL) in BlobRegistryContext() 51 , srcURL(srcURL.copy()) in BlobRegistryContext() 61 KURL srcURL; member 86 blobRegistry().registerBlobURL(blobRegistryContext->url, blobRegistryContext->srcURL); in registerBlobURLFromTask() 89 void ThreadableBlobRegistry::registerBlobURL(const KURL& url, const KURL& srcURL) in registerBlobURL() argument 92 blobRegistry().registerBlobURL(url, srcURL); in registerBlobURL() 94 OwnPtr<BlobRegistryContext> context = adoptPtr(new BlobRegistryContext(url, srcURL)); in registerBlobURL()
|
D | Blob.h | 52 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size) in create() argument 54 return adoptRef(new Blob(srcURL, type, size)); in create() 73 Blob(const KURL& srcURL, const String& type, long long size);
|
D | File.h | 46 static PassRefPtr<File> create(const String& path, const KURL& srcURL, const String& type) in create() argument 48 return adoptRef(new File(path, srcURL, type)); in create() 80 File(const String& path, const KURL& srcURL, const String& type);
|
D | Blob.cpp | 51 Blob::Blob(const KURL& srcURL, const String& type, long long size) in Blob() argument 57 ThreadableBlobRegistry::registerBlobURL(m_internalURL, srcURL); in Blob()
|
D | ThreadableBlobRegistry.h | 44 static void registerBlobURL(const KURL&, const KURL& srcURL);
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemExtensionDecl.java | 205 String srcURL = null; in compose() local 217 srcURL = sdecl.getSrc(); in compose() 247 if (null == srcURL) in compose() 251 else if (extNsMgr.namespaceIndex(srcURL, in compose() 254 extNsSpt = extNsMgr.defineJavaNamespace(declNamespace, srcURL); in compose() 261 lang, srcURL, scriptSrc, getSystemId()}; in compose()
|
/external/emma/core/java12/com/vladium/emma/rt/ |
D | ClassPathCacheEntry.java | 28 public ClassPathCacheEntry (final byte [] bytes, final String srcURL) in ClassPathCacheEntry() argument 33 $assert.ASSERT (srcURL != null, "srcURL = null"); in ClassPathCacheEntry() 37 m_srcURL = srcURL; in ClassPathCacheEntry()
|
D | ClassPathProcessorST.java | 99 String srcURL = null; in handleArchiveEntry() local 105 … srcURL = "jar:".concat (m_archiveFile.toURL ().toExternalForm ()).concat ("!/").concat (name); in handleArchiveEntry() 161 m_cache.put (className, new ClassPathCacheEntry (bytes, srcURL)); in handleArchiveEntry() 197 String srcURL = null; in handleFile() local 204 srcURL = inFile.toURL ().toExternalForm (); in handleFile() 261 m_cache.put (className, new ClassPathCacheEntry (bytes, srcURL)); in handleFile()
|
D | InstrClassLoader.java | 342 …Class defineClass (final String className, final byte [] bytes, final int length, final URL srcURL) in defineClass() argument 347 final CodeSource csrc = new CodeSource (srcURL, (Certificate[])null); in defineClass() 364 srcURL); in defineClass()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | BlobRegistryProxy.cpp | 73 void BlobRegistryProxy::registerBlobURL(const KURL& url, const KURL& srcURL) in registerBlobURL() argument 76 m_webBlobRegistry->registerBlobURL(url, srcURL); in registerBlobURL()
|
D | BlobRegistryProxy.h | 47 virtual void registerBlobURL(const KURL&, const KURL& srcURL);
|
D | ContextMenuClientImpl.cpp | 181 data.srcURL = r.absoluteImageURL(); in getCustomMenuFromDefaultItems() 184 data.srcURL = r.absoluteMediaURL(); in getCustomMenuFromDefaultItems() 230 data.srcURL = pluginElement->document()->completeURL(pluginElement->url()); in getCustomMenuFromDefaultItems()
|
/external/webkit/Source/WebCore/platform/win/ |
D | ClipboardUtilitiesWin.cpp | 251 void markupToCFHTML(const String& markup, const String& srcURL, Vector<char>& result) in markupToCFHTML() argument 271 CString sourceURLUTF8 = srcURL == blankURL() ? "" : srcURL.utf8(); in markupToCFHTML() 560 String srcURL; in fragmentFromCFHTML() local 567 srcURL = rawSrcURL.stripWhiteSpace(); in fragmentFromCFHTML() 571 return createFragmentFromMarkup(doc, markup, srcURL, FragmentScriptingNotAllowed); in fragmentFromCFHTML() 587 String srcURL; in fragmentFromHTML() local 589 return createFragmentFromMarkup(doc, html, srcURL, FragmentScriptingNotAllowed); in fragmentFromHTML() 605 String srcURL; in fragmentFromHTML() local 607 return createFragmentFromMarkup(document, stringData, srcURL, FragmentScriptingNotAllowed); in fragmentFromHTML()
|
D | ClipboardUtilitiesWin.h | 52 void markupToCFHTML(const String& markup, const String& srcURL, Vector<char>& result);
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | PasteboardChromium.cpp | 173 KURL srcURL; in documentFragment() local 174 PlatformBridge::clipboardReadHTML(buffer, &markup, &srcURL); in documentFragment() 177 … createFragmentFromMarkup(frame->document(), markup, srcURL, FragmentScriptingNotAllowed); in documentFragment()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebBlobRegistry.h | 51 virtual void registerBlobURL(const WebURL&, const WebURL& srcURL) = 0;
|
D | WebContextMenuData.h | 72 WebURL srcURL; member
|
/external/webkit/Source/WebCore/platform/network/ |
D | BlobRegistryImpl.cpp | 154 void BlobRegistryImpl::registerBlobURL(const KURL& url, const KURL& srcURL) in registerBlobURL() argument 158 RefPtr<BlobStorageData> src = m_blobs.get(srcURL.string()); in registerBlobURL()
|
D | BlobRegistry.h | 59 virtual void registerBlobURL(const KURL&, const KURL& srcURL) = 0;
|
D | BlobRegistryImpl.h | 57 virtual void registerBlobURL(const KURL&, const KURL& srcURL);
|
/external/chromium/webkit/glue/ |
D | context_menu.cc | 29 src_url(data.srcURL), in ContextMenuParams()
|