HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 376 - 400 of 983) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 65 * @param {string} location The URL to generate the CSS url for.
66 * @return {Object} Dictionary containing name value pairs for URL.
90 * @param {Object} params URL parameters containing styles for the link.
129 var isServerSuggestion = 'url' in params;
142 * Decodes most visited styles from URL parameters.
146 * @param {Object.<string, string>} params URL parameters specifying style.
173 * @param {string} location A location containing URL parameters.
180 if (!isFinite(params.rid) && !params.url)
183 chrome.embeddedSearch.newTabPage.logEvent(params.url
    [all...]
  /external/chromium_org/chrome/tools/
history-viz.py 31 class URL(object):
32 """Represents a broken-down URL from our most visited database."""
34 def __init__(self, id, url):
35 """Initialize a new URL object. |id| is the database id of the URL."""
37 self.url = url
38 scheme, loc, path, query, fragment = urlparse.urlsplit(url)
49 if len(fragment) > 0 or url.find('#') > 0:
54 """Pretty-print this URL in a form more suitable for the graph
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
test_scripts.py 263 def URL(*args, **kwargs):
381 def ReadURL(self, url, params):
383 return self._url_mock.Call("readurl", url, params)
385 return self._url_mock.Call("readurl", url)
534 "Review URL: https://codereview.chromium.org/9876543210\n")),
540 URL("https://codereview.chromium.org/9876543210/description",
841 URL("https://chromium-build.appspot.com/p/chromium/sheriff_v8.js",
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 26 import java.net.URL;
44 Enumeration<URL> enumeration = Thread.currentThread().getContextClassLoader().getResources("isoparser-custom.properties");
47 URL url = enumeration.nextElement(); local
48 InputStream customIS = new BufferedInputStream(url.openStream());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java 27 import java.net.URL;
63 return request.url().getHost();
216 URL url = new URL(request.url(), location); local
217 if (!url.getProtocol().equals("https") && !url.getProtocol().equals("http")) {
221 return this.request.newBuilder().url(url).build()
    [all...]
  /external/smack/src/org/jivesoftware/smack/provider/
ProviderManager.java 29 import java.net.URL;
160 Enumeration<URL> providerEnum = classLoader.getResources(
163 URL url = providerEnum.nextElement(); local
166 providerStream = url.openStream();
  /frameworks/base/core/java/android/provider/
BrowserContract.java 40 * history, images and the mapping between the image and URL.
162 * This column is valid when the row is a URL. The history table's URL
164 * <P>Type: TEXT (URL)</P>
166 public static final String URL = "url";
236 * The URL. The URL can map onto the different type of images.
237 * <P>Type: TEXT (URL)</P>
239 public static final String URL = "url"
    [all...]
  /frameworks/base/core/java/android/webkit/
JsDialogHelper.java 31 import java.net.URL;
56 String url) {
61 mUrl = url;
69 mUrl = msg.getData().getString("url");
165 URL alertUrl = new URL(mUrl);
170 // do nothing. just use the url as the title
  /frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/
CaptivePortalLoginActivity.java 51 import java.net.URL;
70 private URL mURL;
81 mURL = new URL("http://" + server + "/generate_204");
240 public void onPageStarted(WebView view, String url, Bitmap favicon) {
246 public void onPageFinished(WebView view, String url) {
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 112 mark.url = in.readUTF();
125 String[] urlCol = new String[] { Bookmarks.URL };
129 // Does this URL exist in the bookmark table?
132 Bookmarks.URL + " == ?",
133 new String[] { mark.url }, null);
136 if (DEBUG) Log.v(TAG, "Did not see url: " + mark.url);
140 if (DEBUG) Log.v(TAG, "Skipping extant url: " + mark.url);
168 values.put(Bookmarks.URL, mark.url)
176 public String url; field in class:BrowserBackupAgent.Bookmark
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TableLayoutRule.java 32 import java.net.URL;
48 private static final URL ICON_ADD_ROW =
50 private static final URL ICON_REMOVE_ROW =
GridLayoutRule.java 60 import java.net.URL;
122 private static final URL ICON_HORIZONTAL = GridLayoutRule.class.getResource("hlinear.png"); //$NON-NLS-1$
123 private static final URL ICON_VERTICAL = GridLayoutRule.class.getResource("vlinear.png"); //$NON-NLS-1$
124 private static final URL ICON_ADD_ROW = GridLayoutRule.class.getResource("addrow.png"); //$NON-NLS-1$
125 private static final URL ICON_REMOVE_ROW = GridLayoutRule.class.getResource("removerow.png"); //$NON-NLS-1$
126 private static final URL ICON_ADD_COL = GridLayoutRule.class.getResource("addcol.png"); //$NON-NLS-1$
127 private static final URL ICON_REMOVE_COL = GridLayoutRule.class.getResource("removecol.png"); //$NON-NLS-1$
128 private static final URL ICON_SHOW_STRUCT = GridLayoutRule.class.getResource("showgrid.png"); //$NON-NLS-1$
129 private static final URL ICON_GRID_MODE = GridLayoutRule.class.getResource("gridmode.png"); //$NON-NLS-1$
130 private static final URL ICON_SNAP = GridLayoutRule.class.getResource("snap.png"); //$NON-NLS-1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DexWrapper.java 32 import java.net.URL;
77 URL url = f.toURI().toURL(); local
80 URLClassLoader loader = new URLClassLoader(new URL[] { url },
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 13 import java.net.URL;
233 * @throws MojoExecutionException Problem resolving artifacts to {@link java.net.URL urls}.
237 ArrayList<URL> classPathUrls = new ArrayList<URL>();
247 throw new MojoExecutionException( "Unable to build path URL [" + path + "]" );
251 return new URLClassLoader( classPathUrls.toArray( new URL[classPathUrls.size()] ), getClass().getClassLoader() );
254 protected static URL resolveLocalURL(Artifact artifact) throws MojoExecutionException {
259 throw new MojoExecutionException( "Unable to resolve artifact url : " + artifact.getId(), e );
  /external/chromium_org/chrome/browser/search_engines/
template_url_parser.cc 21 #include "url/gurl.h"
22 #include "url/url_constants.h"
31 const char kURLElement[] = "Url";
91 // Returns true if |url| is empty or is a valid URL with a scheme of HTTP[S].
92 bool IsHTTPRef(const std::string& url) {
93 if (url.empty())
95 GURL gurl(url);
96 return gurl.is_valid() && (gurl.SchemeIs(url::kHttpScheme) ||
97 gurl.SchemeIs(url::kHttpsScheme))
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_service_unittest.cc 92 void(const fileapi::FileSystemURL& url,
115 ACTION_P2(MockSyncFileCallback, status, url) {
117 FROM_HERE, base::Bind(arg0, status, url));
239 FileSystemURL URL(const std::string& path) const {
240 return file_system_->URL(path);
323 const FileSystemURL kFile(file_system_->URL("foo"));
383 const FileSystemURL kFile(file_system_->URL("foo"));
437 const FileSystemURL kFile(file_system_->URL("foo"));
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCClient.java 43 import java.net.URL;
85 * Asynchronously connect to an AppRTC room URL, e.g.
89 public void connectToRoom(String url) {
90 while (url.indexOf('?') < 0) {
92 (new RedirectResolver()).execute(url);
93 return; // RedirectResolver above calls us back with the next URL.
95 (new RoomParameterGetter()).execute(url);
163 // Load the given URL and return the value of the Location header of the
169 throw new RuntimeException("Must be called with a single URL");
179 protected void onPostExecute(String url) {
396 String url = server.getString("urls"); local
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 25 import java.net.URL;
    [all...]
  /external/chromium_org/third_party/libxml/src/
nanoftp.c 125 char *path; /* the path within the URL */
293 * @URL: The URL used to initialize the context
295 * (Re)Initialize an FTP context by parsing the URL and finding
300 xmlNanoFTPScanURL(void *ctx, const char *URL) {
319 if (URL == NULL) return;
321 uri = xmlParseURIRaw(URL, 1);
357 * @URL: The URL used to update the context
359 * Update an FTP context by parsing the URL and findin
    [all...]
pattern.c 920 xmlChar *URL = NULL;
956 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
960 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
976 PUSH(XML_OP_ATTR, NULL, URL);
984 PUSH(XML_OP_ATTR, token, URL);
991 if (URL != NULL)
992 XML_PAT_FREE_STRING(ctxt, URL)
1012 xmlChar *URL = NULL;
1077 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
1081 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i]
    [all...]
  /external/libxml2/
nanoftp.c 126 char *path; /* the path within the URL */
294 * @URL: The URL used to initialize the context
296 * (Re)Initialize an FTP context by parsing the URL and finding
301 xmlNanoFTPScanURL(void *ctx, const char *URL) {
320 if (URL == NULL) return;
322 uri = xmlParseURIRaw(URL, 1);
358 * @URL: The URL used to update the context
360 * Update an FTP context by parsing the URL and findin
    [all...]
pattern.c 924 xmlChar *URL = NULL;
960 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE);
964 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i])
980 PUSH(XML_OP_ATTR, NULL, URL);
988 PUSH(XML_OP_ATTR, token, URL);
995 if (URL != NULL)
996 XML_PAT_FREE_STRING(ctxt, URL)
1016 xmlChar *URL = NULL;
1081 XML_PAT_COPY_NSNAME(ctxt, URL, XML_XML_NAMESPACE)
1085 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i]
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
folder_shortcuts_data_model.js 14 * This uses chrome.storage as backend. Items are always sorted by URL.
69 * Remembers the Drive volume's root URL used for conversions between virtual
118 var onResolveFailure = function(path, url) {
121 var existingIndex = this.getIndexByURL_(url);
146 var url =
148 if (url && volumeInfo) {
150 url,
156 onResolveFailure(path, url);
160 onResolveFailure(path, url);
242 * @param {string} value URL of the entry to be found
    [all...]
  /external/chromium_org/remoting/webapp/
xhr.js 40 * @param {string} url The base URL to GET, excluding parameters.
52 remoting.xhr.get = function(url, onDone, opt_parameters, opt_headers,
54 return remoting.xhr.doMethod('GET', url, onDone, opt_parameters,
61 * @param {string} url The base URL to POST, excluding parameters.
73 remoting.xhr.post = function(url, onDone, opt_parameters, opt_headers,
75 return remoting.xhr.doMethod('POST', url, onDone, opt_parameters,
82 * @param {string} url The base URL to DELETE, excluding parameters
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
saml_injected.js 69 // URL of the page.
86 * @param {!string} pageURL URL of the page.
116 // Use an invalid char for URL as delimiter to concatenate page url and
151 var url = window.location.href;
152 if (!url.match(/^(http|https):\/\//))
171 channel.send({name: 'pageLoaded', url: pageURL});

Completed in 1241 milliseconds

<<11121314151617181920>>