HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 51 - 75 of 1125) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/libcore/xml/src/main/java/org/apache/xalan/res/
XSLTInfo.properties 25 vendor-url=http://xml.apache.org/xalan-j
  /external/skia/include/ports/
SkStream_Win.h 33 SkURLStream(const char url[] = NULL);
36 /** Close the current URL, and open a new URL.
37 If URL is null, just close the current URL.
39 void setURL(const char url[]);
  /external/webkit/WebCore/bindings/js/
ScriptSourceProvider.h 38 ScriptSourceProvider(const JSC::UString& url, JSC::SourceBOMPresence hasBOMs = JSC::SourceCouldHaveBOMs)
39 : SourceProvider(url, hasBOMs)
ScriptSourceCode.h 44 ScriptSourceCode(const String& source, const KURL& url = KURL(), int startLine = 1)
45 : m_provider(StringSourceProvider::create(source, url.isNull() ? String() : url.string()))
47 , m_url(url)
65 const KURL& url() const { return m_url; } function in class:WebCore::ScriptSourceCode
  /external/webkit/WebCore/loader/mac/
LoaderNSURLExtras.h 35 NSString *suggestedFilenameWithMIMEType(NSURL *url, NSString *MIMEType);
  /external/webkit/WebCore/platform/chromium/
SSLKeyGeneratorChromium.cpp 52 const KURL& url)
56 url);
  /external/webkit/WebCore/platform/mac/
KURLMac.mm 33 KURL::KURL(NSURL *url)
35 if (!url) {
40 CFIndex bytesLength = CFURLGetBytes(reinterpret_cast<CFURLRef>(url), 0, 0);
43 CFURLGetBytes(reinterpret_cast<CFURLRef>(url), reinterpret_cast<UInt8*>(bytes), bytesLength);
64 // CFURL can't hold an empty URL, unlike NSURL.
  /external/webkit/WebCore/platform/network/android/
ResourceResponse.h 39 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
40 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename) { }
  /external/webkit/WebCore/platform/network/curl/
ResourceResponse.h 40 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
41 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename),
  /external/webkit/WebCore/platform/network/qt/
ResourceResponse.h 39 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
40 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
  /external/webkit/WebKit/qt/Api/
qwebhistoryinterface.h 38 virtual bool historyContains(const QString &url) const = 0;
39 virtual void addHistoryEntry(const QString &url) = 0;
  /frameworks/base/core/java/android/service/urlrenderer/
IUrlRendererCallback.aidl 25 void complete(String url, in ParcelFileDescriptor result);
  /frameworks/base/core/java/android/webkit/
UrlInterceptHandler.java 31 * Given an URL, returns the CacheResult which contains the
35 * @param url URL string.
42 public CacheResult service(String url, Map<String, String> headers);
45 * Given an URL, returns the PluginData which contains the
49 * @param url URL string.
56 public PluginData getPluginData(String url, Map<String, String> headers);
  /external/webkit/WebCore/loader/
DocLoader.h 59 CachedImage* requestImage(const String& url);
60 CachedCSSStyleSheet* requestCSSStyleSheet(const String& url, const String& charset);
61 CachedCSSStyleSheet* requestUserCSSStyleSheet(const String& url, const String& charset);
62 CachedScript* requestScript(const String& url, const String& charset);
63 CachedFont* requestFont(const String& url);
66 CachedXSLStyleSheet* requestXSLStyleSheet(const String& url);
69 CachedXBLDocument* requestXBLDocument(const String &url);
72 // Logs an access denied message to the console for the specified URL.
73 void printAccessDeniedMessage(const KURL& url) const;
75 CachedResource* cachedResource(const String& url) const { return m_documentResources.get(url).get();
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebNavigationData.mm 31 NSString *url;
45 [url release];
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource;
62 _private->url = [url retain];
72 - (NSString *)url
74 return _private->url;
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/
Handler.java 22 import java.net.URL;
34 protected URLConnection openConnection(URL url) throws IOException {
35 return new HttpsURLConnectionImpl(url, getDefaultPort());
39 protected URLConnection openConnection(URL url, Proxy proxy)
41 if ((url == null) || (proxy == null)) {
42 // K034b=url and proxy can not be null
45 return new HttpsURLConnectionImpl(url, getDefaultPort(), proxy);
  /external/webkit/WebKit/chromium/src/
WebStorageAreaImpl.h 48 virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue);
49 virtual void removeItem(const WebString& key, const WebURL& url, WebString& oldValue);
50 virtual void clear(const WebURL& url, bool& somethingCleared);
58 ScopedStorageEventURL(const WebURL& url)
63 storageEventURL = &url;
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 111 String url = server.getCookieUrl("conquest.html"); local
112 loadUrl(url);
115 assertNull(mCookieManager.getCookie(url));
120 url = server.getCookieUrl("war.html");
121 loadUrl(url);
123 waitForCookie(url);
124 String cookie = mCookieManager.getCookie(url);
132 url = server.getCookieUrl("famine.html");
133 loadUrl(url);
135 waitForCookie(url);
178 String url = "http:\/\/www.example.com"; local
221 final String url = "http:\/\/www.example.com"; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 63 public Cursor query(Uri url, String[] projectionIn, String selection,
65 int match = sURLMatcher.match(url);
68 String query = url.getLastPathSegment();
76 throw new IllegalArgumentException("Unknown URL: " + url);
86 public String getType(Uri url) {
87 int match = sURLMatcher.match(url);
92 throw new IllegalArgumentException("Unknown URL: " + url);
97 public int update(Uri url, ContentValues values, String where, String[] whereArgs)
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
Handler.java 22 import java.net.URL;
35 * Returns a connection to the a file pointed by this <code>URL</code> in
38 * @return A connection to the resource pointed by this url.
39 * @param url
40 * URL The URL to which the connection is pointing to
44 public URLConnection openConnection(URL url) throws IOException {
45 return openConnection(url, null);
49 * The behaviour of this method is the same as openConnection(URL)
    [all...]
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 55 public boolean acceptsURL(String url) throws SQLException {
57 if (url == null) {
60 // Everything's fine if the quoted url starts with the base url for this
62 if (url.startsWith(baseURL)) {
76 public Connection connect(String url, Properties info) throws SQLException {
77 // Does the URL have the right form?
78 if (this.acceptsURL(url)) {
79 // The datasource name is the remainder of the url after the ":"
80 String datasource = url.substring(baseURL.length() + 1)
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_ClassLoader.java 19 import java.net.URL;
31 public abstract ClassLoader getClassLoader(URL url, ClassLoader parent);
33 public static ClassLoader getInstance(URL url, ClassLoader parent) {
45 return factory.getClassLoader(url, parent);
68 public ClassLoader getClassLoader(URL url, ClassLoader parent) {
69 return new DexClassLoader(url.getPath(), tmp.getAbsolutePath(),
80 public ClassLoader getClassLoader(URL url, ClassLoader parent)
    [all...]
Support_GetLocal.java 28 import java.net.URL;
37 public static File getLocalFile(String url) throws IOException,
39 url = Support_Resources.RESOURCE_PACKAGE + url;
40 File temp = cache.get(url);
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
53 cache.put(url, temp);
58 public static File getExternalLocalFile(String url) throws IOException,
60 File temp = cache.get(url);
62 InputStream in = new URL(url).openStream()
    [all...]
  /external/webkit/JavaScriptCore/parser/
SourceProvider.h 41 SourceProvider(const UString& url, SourceBOMPresence hasBOMs = SourceCouldHaveBOMs)
42 : m_url(url)
52 const UString& url() { return m_url; } function in class:JSC::SourceProvider
64 static PassRefPtr<UStringSourceProvider> create(const UString& source, const UString& url)
66 return adoptRef(new UStringSourceProvider(source, url));
74 UStringSourceProvider(const UString& source, const UString& url)
75 : SourceProvider(url)
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 57 g_free (file->url.lpszScheme);
58 g_free (file->url.lpszHostName);
59 g_free (file->url.lpszUserName);
60 g_free (file->url.lpszPassword);
61 g_free (file->url.lpszUrlPath);
62 g_free (file->url.lpszExtraInfo);
104 memset (&file->url, 0, sizeof (file->url));
105 file->url.dwStructSize = sizeof (file->url);
    [all...]

Completed in 604 milliseconds

1 23 4 5 6 7 8 91011>>