HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 651 - 675 of 1269) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSource2Test.java 25 import java.net.URL;
42 * @tests java.security.CodeSource#CodeSource(java.net.URL,
47 notes = "Verifies constructor with valid URL and null certificate array",
49 args = {java.net.URL.class, java.security.cert.Certificate[].class}
53 // Test for method java.security.CodeSource(java.net.URL,
55 new CodeSource(new java.net.URL("file:///test"), (Certificate[]) null);
60 * @tests java.security.CodeSource#CodeSource(java.net.URL,
67 args = {java.net.URL.class, java.security.CodeSigner[].class}
70 // Test for method java.security.CodeSource(java.net.URL,
73 new CodeSource(new URL("file:///test"), (CodeSigner[]) null)
129 URL url = new java.net.URL("file:\/\/\/test"); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
ActiveTabsPage.java 150 TextView url = (TextView) convertView.findViewById(R.id.url); local
157 url.setText(tab.getUrl());
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImage.java 94 Uri url = mContainer.contentUri(mId); local
95 if (url == null) return null;
98 url, mContentResolver, useNative);
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PhotoEntry.java 135 * The "mini-thumbnail" URL for the photo (currently 144px-cropped).
141 * The "screennail" URL for the photo (currently 800px).
147 * The "content" URL for the photo (currently 1280px, or a video). The
148 * original image URL is not fetched since "imgmax" accepts one size, used
155 * The MIME type of the content URL.
297 String url = attrs.getValue("", "url"); local
299 thumbnailUrl = url;
301 screennailUrl = url;
304 // Only replace an existing URL if the MIME type is video
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
RepoSources.java 96 String url = props.getProperty(String.format("%s%02d", KEY_SRC, i)); //$NON-NLS-1$ local
97 if (url != null) {
98 RepoSource s = new RepoSource(url, true /*userSource*/);
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssReader.java 44 import java.net.URL;
63 * <li>Override of onListItemClick() creates an intent to open the url for that
80 * Url edit text field.
108 public static final String URL_KEY = "url";
212 * open the url for that item.
218 // Creates and starts an intent to open the item.link url.
258 * Given an rss url string, starts the rss-download-thread going.
293 * Worker thread takes in an rss url string, downloads its data, parses
299 public RSSWorker(CharSequence url) {
300 mUrl = url;
308 URL url = new URL(mUrl.toString()); local
    [all...]
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 90 PassRefPtr<InspectorResource> resource = create(identifier, loader, KURL(ParsedURLString, cachedResource->url()));
122 CachedResource* cachedResource = cache()->resourceForURL(response.url().string());
150 jsonObject.set("url", m_requestURL.string());
151 jsonObject.set("documentURL", m_frame->document()->url().string());
234 const String& url = m_requestURL.string(); local
235 CachedResource* cachedResource = m_frame->document()->docLoader()->cachedResource(url);
237 cachedResource = cache()->resourceForURL(url);
  /external/webkit/WebCore/plugins/
PluginView.h 151 NPError getURLNotify(const char* url, const char* target, void* notifyData);
152 NPError getURL(const char* url, const char* target);
153 NPError postURLNotify(const char* url, const char* target, uint32 len, const char* but, NPBool file, void* notifyData);
154 NPError postURL(const char* url, const char* target, uint32 len, const char* but, NPBool file);
213 const KURL& url() const { return m_url; } function in class:WebCore::PluginView
260 NPError handlePost(const char* url, const char* target, uint32 len, const char* buf, bool file, void* notifyData, bool sendNotification, bool allowHeaders);
  /external/webkit/WebKit/wx/
WebFrame.cpp 158 WebCore::KURL url(WebCore::KURL(), baseUrl);
164 WebCore::SubstituteData substituteData(sharedBuffer, WebCore::String("text/html"), WebCore::String("UTF-8"), WebCore::blankURL(), url);
167 m_impl->frame->loader()->load(WebCore::ResourceRequest(url), substituteData, false);
224 void wxWebFrame::LoadURL(const wxString& url)
227 WebCore::KURL kurl = WebCore::KURL(WebCore::KURL(), url, WebCore::UTF8Encoding());
233 if (wxFileExists(url)) {
  /frameworks/base/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 58 extern player_type getPlayerType(const char* url);
132 status_t MetadataRetrieverClient::setDataSource(const char *url)
134 LOGV("setDataSource(%s)", url);
136 if (url == NULL) {
139 player_type playerType = getPlayerType(url);
145 ret = p->setDataSource(url);
  /external/chromium/googleurl/src/
url_canon_relative.cc 50 // The base URL should always be canonical, therefore is ASCII.
71 // consistent about URL paths beginning with slashes. This function is like
89 const CHAR* url,
98 url_parse::TrimURL(url, &begin, &url_len);
112 // We treat "C:/foo" as an absolute URL. We can go ahead and treat "/c:/"
117 // shashes should be treated a a relative URL with a hostname.
118 if (url_parse::DoesBeginWindowsDriveSpec(url, begin, url_len) ||
119 url_parse::DoesBeginUNCPath(url, begin, url_len, true))
123 // See if we've got a scheme, if not, we know this is a relative URL.
125 // "http:foo.html" is a relative URL with path "foo.html". If the scheme i
    [all...]
  /external/chromium/net/http/
http_stream_parser.cc 130 TRACE_EVENT_BEGIN("http.write_headers", request_, request_->url.spec());
135 TRACE_EVENT_END("http.write_headers", request_, request_->url.spec());
138 TRACE_EVENT_BEGIN("http.write_body", request_, request_->url.spec());
143 TRACE_EVENT_END("http.write_body", request_, request_->url.spec());
150 TRACE_EVENT_BEGIN("http.read_headers", request_, request_->url.spec());
159 TRACE_EVENT_END("http.read_headers", request_, request_->url.spec());
166 TRACE_EVENT_BEGIN("http.read_body", request_, request_->url.spec());
172 TRACE_EVENT_END("http.read_body", request_, request_->url.spec());
  /external/chromium/net/proxy/
proxy_resolver_winhttp.cc 24 static BOOL CallWinHttpGetProxyForUrl(HINTERNET session, LPCWSTR url,
28 BOOL rv = WinHttpGetProxyForUrl(session, url, options, results);
64 // If we have been given an empty PAC url, then use auto-detection.
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder.h 17 // Helper class for converting a URL into a filename.
20 // Given a |url| and a |base_path|, returns a FilePath which represents this
21 // |url|.
22 static FilePath Encode(const std::string& url, FilePath base_path) {
23 std::string clean_url(url);
  /external/chromium/net/tools/flip_server/
url_to_filename_encoder.h 13 // Helper class for converting a URL into a filename.
16 // Given a |url| and a |base_path|, returns a string which represents this
17 // |url|.
18 static std::string Encode(const std::string& url, std::string base_path) {
19 std::string clean_url(url);
  /external/webkit/WebCore/bindings/js/
ScriptEventListener.cpp 76 sourceURL = node->document()->url().string();
108 sourceURL = frame->document()->url().string();
  /external/webkit/WebCore/bindings/v8/custom/
V8NotificationCenterCustom.cpp 87 String url = toWebCoreString(args[0]); local
88 RefPtr<Notification> notification = notificationCenter->createHTMLNotification(url, ec);
  /external/webkit/WebCore/bridge/
npapi.h 209 const char* url; member in struct:_NPStream
834 void NP_LOADDS NPP_URLNotify(NPP instance, const char* url,
848 NPError NPN_GetURLNotify(NPP instance, const char* url,
850 NPError NPN_GetURL(NPP instance, const char* url,
852 NPError NPN_PostURLNotify(NPP instance, const char* url,
856 NPError NPN_PostURL(NPP instance, const char* url,
884 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32* len);
885 NPError NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* value, uint32 len);
  /external/webkit/WebCore/inspector/front-end/
Resource.js 29 WebInspector.Resource = function(identifier, url)
32 this._url = url;
136 get url()
141 set url(x)
149 // FIXME: We should make the WebInspector object listen for the "url changed" event.
153 this.dispatchEventToListeners("url changed");
198 if (!title && this.url)
199 title = this.url.trimURL(WebInspector.mainResource ? WebInspector.mainResource.domain : "");
201 title = this.url;
558 WebInspector.ConsoleMessage.MessageLevel.Warning, -1, this.url, null, 1
    [all...]
  /external/webkit/WebCore/loader/
Cache.h 99 CachedResource* requestResource(DocLoader*, CachedResource::Type, const KURL& url, const String& charset, bool isPreload = false);
101 CachedCSSStyleSheet* requestUserCSSStyleSheet(DocLoader*, const String& url, const String& charset);
205 // A URL-based map of all resources that are in the cache (including the freshest version of objects that are currently being
  /external/webkit/WebCore/page/
Chrome.h 124 void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title);
125 void registerContentHandler(const String& mimeType, const String& baseURL, const String& url, const String& title);
DragController.h 68 void setDraggingImageURL(const KURL& url) { m_draggingImageURL = url; }
  /external/webkit/WebCore/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.h 64 void load(const String &url);
131 void createGSTPlayBin(String url);
  /external/webkit/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h 87 void load(const String& url);
131 void createQTMovie(const String& url);
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.cpp 63 ResourceResponseBase::ResourceResponseBase(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
64 : m_url(url)
110 data->m_url = url().copy();
131 const KURL& ResourceResponseBase::url() const function in class:WebCore::ResourceResponseBase
138 void ResourceResponseBase::setURL(const KURL& url)
143 m_url = url;
464 if (a.url() != b.url())

Completed in 911 milliseconds

<<21222324252627282930>>