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