HomeSort by relevance Sort by last modified time
    Searched full:url (Results 76 - 100 of 2261) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libxml2/include/libxml/
nanohttp.h 26 xmlNanoHTTPScanProxy (const char *URL);
28 xmlNanoHTTPFetch (const char *URL,
32 xmlNanoHTTPMethod (const char *URL,
39 xmlNanoHTTPMethodRedir (const char *URL,
47 xmlNanoHTTPOpen (const char *URL,
50 xmlNanoHTTPOpenRedir (const char *URL,
  /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[]);
  /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...]
  /external/webkit/WebCore/css/
CSSCursorImageValue.cpp 39 static inline bool isSVGCursorIdentifier(const String& url)
41 KURL kurl(ParsedURLString, url);
55 CSSCursorImageValue::CSSCursorImageValue(const String& url, const IntPoint& hotspot)
56 : CSSImageValue(url)
64 const String& url = getStringValue(); local
65 if (!isSVGCursorIdentifier(url))
74 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, referencedElement->document()))
88 const String& url = getStringValue();
89 if (!isSVGCursorIdentifier(url))
92 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, element->document()))
115 String url = getStringValue(); local
    [all...]
  /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...]
  /dalvik/libcore/luni/src/main/java/java/net/
URL.java 32 * A URL instance specifies the location of a resource on the internet as
34 * which generates the output dynamically. A URL is divided in its parts
38 public final class URL implements java.io.Serializable {
49 * @serial the file of this URL
57 * @serial the protocol of this URL (http, file)
65 * @serial the host of this URL
73 * @serial the port of this URL
81 * @serial the authority of this URL
104 * @serial the reference of this URL
115 * The URL Stream (protocol) Handle
    [all...]
JarURLConnection.java 28 * This class establishes a connection to a {@code jar:} URL using the {@code
31 * as follows: <i>jar:{archive-url}!/{entry}</i> where "!/" is called a
45 * The location part of the represented URL.
51 private URL fileURL;
53 // the file component of the URL
58 * specified URL.
60 * @param url
61 * the URL that contains the location to connect to.
63 * if an invalid URL has been entered.
65 protected JarURLConnection(URL url) throws MalformedURLException
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URLStreamHandlerFactoryTest.java 6 import java.net.URL;
42 URL.setURLStreamHandlerFactory(shf);
43 URL url = new URL("http://" + local
47 url.openConnection();
56 URL.setURLStreamHandlerFactory(shf);
63 URL.setURLStreamHandlerFactory(null);
77 Field [] fields = URL.class.getDeclaredFields();
127 protected URLConnection openConnection(URL u) throws IOException
    [all...]
  /external/webkit/WebCore/platform/network/chromium/
CookieJarChromium.cpp 40 void setCookies(Document* document, const KURL& url, const String& value)
42 ChromiumBridge::setCookies(url, document->firstPartyForCookies(), value);
45 String cookies(const Document* document, const KURL& url)
47 return ChromiumBridge::cookies(url, document->firstPartyForCookies());
50 String cookieRequestHeaderFieldValue(const Document* document, const KURL& url)
54 getRawCookies(document, url, cookies);
74 bool getRawCookies(const Document* document, const KURL& url, Vector<Cookie>& rawCookies)
76 return ChromiumBridge::rawCookies(url, document->firstPartyForCookies(), &rawCookies);
79 void deleteCookie(const Document*, const KURL& url, const String& cookieName)
81 return ChromiumBridge::deleteCookie(url, cookieName)
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebViewClient.java 45 public boolean shouldOverrideUrlLoading(WebView view, String url) {
46 return mWrappedClient.shouldOverrideUrlLoading(view, url);
51 public void onPageStarted(WebView view, String url, Bitmap favicon) {
52 mWrappedClient.onPageStarted(view, url, favicon);
57 public void onPageFinished(WebView view, String url) {
58 mWrappedClient.onPageFinished(view, url);
63 public void onLoadResource(WebView view, String url) {
64 mWrappedClient.onLoadResource(view, url);
91 public void doUpdateVisitedHistory(WebView view, String url,
93 mWrappedClient.doUpdateVisitedHistory(view, url, isReload)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebIconDatabase.idl 74 @param URL
76 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size;
80 @discussion Returns an icon for a web site URL from memory or disk. nil if none is found.
81 Usually called by a UI element to determine if a site URL has an associated icon.
83 @param URL
86 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
90 @discussion Returns an icon URL for a web site URL from memory or disk. nil if none is found.
91 @param URL
92 - (NSString *)iconURLForURL:(NSString *)URL;
    [all...]
  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
HttpsURLConnectionTest.java 26 import java.net.URL;
58 args = {java.net.URL.class}
62 MyHttpsURLConnection huc = new MyHttpsURLConnection(new URL("https://www.fortify.net/"));
84 URL url = new URL("https://localhost:55555"); local
85 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
97 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"));
115 URL url = new URL("https://localhost:55555") local
200 URL url = new URL("https:\/\/localhost:55555"); local
233 URL url = new URL("https:\/\/localhost:55555"); local
272 URL url = new URL("https:\/\/localhost:55555"); local
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
URLCodec.java 32 * also misleadingly known as URL encoding.</p>
59 * BitSet of www-form-url safe characters.
104 * Encodes an array of bytes into an array of URL safe 7-bit
107 * @param urlsafe bitset of characters deemed URL safe
108 * @param bytes array of bytes to convert to URL safe characters
109 * @return array of bytes containing URL safe characters
146 * Decodes an array of URL safe 7-bit characters into an array of
150 * @param bytes array of URL safe characters
152 * @throws DecoderException Thrown if URL decoding is unsuccessful
170 throw new DecoderException("Invalid URL encoding")
    [all...]
  /external/webkit/WebCore/loader/archive/
ArchiveResource.cpp 36 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const ResourceResponse& response)
38 return data ? adoptRef(new ArchiveResource(data, url, response)) : 0;
41 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName)
43 return data ? adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName)) : 0;
46 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& resourceResponse)
48 return data ? adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName, resourceResponse)) : 0;
51 ArchiveResource::ArchiveResource(PassRefPtr<SharedBuffer> data, const KURL& url, const ResourceResponse& response)
52 : SubstituteResource(url, response, data)
59 ArchiveResource::ArchiveResource(PassRefPtr<SharedBuffer> data, const KURL& url, const String& mimeType, const String& textEncoding, const String& frameName)
60 : SubstituteResource(url, ResourceResponse(url, mimeType, data ? data->size() : 0, textEncoding, String()), data
    [all...]
  /frameworks/base/media/libmediaplayerservice/
TestPlayerStub.h 28 // The URL passed to setDataSource has this format:
30 // test:<name of the .so>?url=<url for the real setDataSource impl.>
33 // test:invoke_test_media_player.so?url=http://youtube.com/
34 // test:invoke_test_media_player.so?url=speedtest
36 // TestPlayerStub::setDataSource loads the library in the test url. 2
44 // implementation is called with the value of the 'url' parameter.
50 // p.setDataSource("test:invoke_mock_media_player.so?url=http://youtube.com");
67 // @param url Should be a test url. See class comment
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/com/android/sdklib/testdata/
repository_sample_1.xml 41 <sdk:desc-url>http://www.example.com/platform1.html</sdk:desc-url>
45 <sdk:release-url>http://some/url/for/the/release/note.html</sdk:release-url>
52 <sdk:url>http://www.example.com/files/plat1.zip</sdk:url>
62 <sdk:desc-url>http://www.example.com/docs.html</sdk:desc-url>
67 <sdk:url>http://www.example.com/docs/docs1.zip</sdk:url>
    [all...]
  /external/proguard/src/proguard/
FileWordReader.java 24 import java.net.URL;
28 * A <code>WordReader</code> that returns words from a file or a URL.
53 * Creates a new FileWordReader for the given URL.
55 public FileWordReader(URL url) throws IOException
59 this.name = url.toString();
62 new InputStreamReader(url.openStream())));
  /external/webkit/WebCore/dom/
BeforeLoadEvent.h 39 static PassRefPtr<BeforeLoadEvent> create(const String& url)
41 return adoptRef(new BeforeLoadEvent(url));
44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url)
51 m_url = url;
54 const String& url() const { return m_url; } function in class:WebCore::BeforeLoadEvent
57 BeforeLoadEvent(const String& url)
59 , m_url(url)
  /external/webkit/WebCore/manual-tests/
css3-cursor-fallback-quirks.html 7 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div>
8 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div>
15 <td><div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), text;"></div></td> <!-- Valid, no fallback needed -->
16 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff);'></div></td> <!-- Invalid, but allowed by WinIE -->
17 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), help;'></div></td>
18 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), url(custom-cursors.html), url(unknown-scheme:custom-cursors.html), url(resources/helpCursor.tiff), text;'></div></td
    [all...]
css3-cursor-fallback-strict.html 9 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png), auto;"><span style="cursor:url(nonexistent.png), auto;">some text</span></div>
10 <div style="width:100px;height:50px;background-color:lightblue; cursor:url(nonexistent.png);"></div>
17 <td><div style="width:100px;height:100px;background-color:lightblue; cursor:url(resources/helpCursor.tiff), text;"></div></td> <!-- Valid, no fallback needed -->
18 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), help;'></div></td>
19 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), url(custom-cursors.html), url(unknown-scheme:custom-cursors.html), url(resources/helpCursor.tiff), text;'></div></td>
20 <td><div style='width:100px;height:100px;background-color:lightblue; cursor:url(nonexistent.png), url("resources/helpCursor.tiff"), text;'></div></td
    [all...]
  /external/webkit/WebKit/chromium/public/
WebScriptSource.h 41 WebURL url; member in struct:WebKit::WebScriptSource
46 WebScriptSource(const WebString& code, const WebURL& url)
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
49 : code(code), url(url), startLine(startLine) { }
  /packages/apps/AlarmClock/src/com/android/alarmclock/
AlarmProvider.java 96 public Cursor query(Uri url, String[] projectionIn, String selection,
101 int match = sURLMatcher.match(url);
109 qb.appendWhere(url.getPathSegments().get(1));
112 throw new IllegalArgumentException("Unknown URL " + url);
122 ret.setNotificationUri(getContext().getContentResolver(), url); local
129 public String getType(Uri url) {
130 int match = sURLMatcher.match(url);
137 throw new IllegalArgumentException("Unknown URL");
142 public int update(Uri url, ContentValues values, String where, String[] whereArgs)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 101 * Return a hashmap with one row's Title, Url, and favicon.
103 * @return Bundle Stores title, url of row position, favicon, and id
104 * for the url. Return a blank map if position is out of
113 String url = mCursor.getString(Browser.HISTORY_PROJECTION_URL_INDEX); local
116 map.putString(Browser.BookmarkColumns.URL, url);
129 * @param map Bundle storing id, title and url of new information
153 String url = map.getString(Browser.BookmarkColumns.URL); local
154 if (!url.equals(mCursor
179 String url = mCursor.getString(Browser.HISTORY_PROJECTION_URL_INDEX); local
195 String url = mCursor.getString(Browser.HISTORY_PROJECTION_URL_INDEX); local
378 String url = mCursor.getString(Browser.HISTORY_PROJECTION_URL_INDEX); local
542 String url = mCursor.getString(Browser.HISTORY_PROJECTION_URL_INDEX); local
    [all...]
  /external/webkit/WebCore/loader/appcache/
ApplicationCache.cpp 79 const String& url = resource->url(); local
81 ASSERT(!m_resources.contains(url));
93 m_resources.set(url, resource);
96 unsigned ApplicationCache::removeResource(const String& url)
98 HashMap<String, RefPtr<ApplicationCacheResource> >::iterator it = m_resources.find(url);
112 ApplicationCacheResource* ApplicationCache::resourceForURL(const String& url)
114 ASSERT(!KURL(ParsedURLString, url).hasFragmentIdentifier());
115 return m_resources.get(url).get();
120 if (!request.url().protocolInHTTPFamily()
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
Handler.java 22 import java.net.URL;
36 * <code>URL</code>.
39 * the URL to which the connection is pointing to
40 * @return a connection to the resource pointed by this url.
46 protected URLConnection openConnection(URL u) throws IOException {
52 * to the HTTP server specified by this <code>URL</code>. If the
57 * the URL which the connection is pointing to
60 * @return a connection to the resource pointed by this url.
70 protected URLConnection openConnection(URL u, Proxy proxy)

Completed in 852 milliseconds

1 2 34 5 6 7 8 91011>>