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

<<11121314151617181920>>

  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/
JmeDesktopSystem.java 42 import java.net.URL;
55 public AssetManager newAssetManager(URL configFile) {
73 final URL iconUrl = JmeSystem.class.getResource(iconPath.startsWith("/") ? iconPath : "/" + iconPath);
  /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/src/main/java/com/squareup/okhttp/
Connection.java 35 import java.net.URL;
318 URL url = new URL("https", tunnelRequest.host, tunnelRequest.port, "/"); local
321 route.proxy, url);
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
MockSpdyServer.java 35 import java.net.URL;
83 public URL getUrl(String path) {
85 return new URL("https://" + getHostName() + ":" + getPort() + path);
  /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
  /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
79 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 23 #include "url/gurl.h"
32 const char kURLElement[] = "Url";
92 // Returns true if |url| is empty or is a valid URL with a scheme of HTTP[S].
93 bool IsHTTPRef(const std::string& url) {
94 if (url.empty())
96 GURL gurl(url);
115 URL,
141 // reason (e.g. the resulting URL was not HTTP[S], a name wasn't supplied,
173 // The list of parameters parsed in the Param nodes of a Url node
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_service_unittest.cc 90 void(const fileapi::FileSystemURL& url,
113 ACTION_P2(MockSyncFileCallback, status, url) {
115 FROM_HERE, base::Bind(arg0, status, url));
234 FileSystemURL URL(const std::string& path) const {
235 return file_system_->URL(path);
318 const FileSystemURL kFile(file_system_->URL("foo"));
378 const FileSystemURL kFile(file_system_->URL("foo"));
432 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;
87 * Asynchronously connect to an AppRTC room URL, e.g.
91 public void connectToRoom(String url) {
92 while (url.indexOf('?') < 0) {
94 (new RedirectResolver()).execute(url);
95 return; // RedirectResolver above calls us back with the next URL.
97 (new RoomParameterGetter()).execute(url);
159 // Load the given URL and return the value of the Location header of the
165 throw new RuntimeException("Must be called with a single URL");
175 protected void onPostExecute(String url) {
392 String url = server.getString("url"); local
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 22 import java.net.URL;
    [all...]
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_result_view.cc 169 colors[NORMAL][URL] = SkColorSetARGB(0xff, 0x00, 0x99, 0x33);
174 colors[SELECTED][URL] = SkColorSetARGB(0xff, 0x00, 0x66, 0x22);
175 colors[HOVERED][URL] = SkColorSetARGB(0xff, 0x00, 0x66, 0x22);
276 colors[i][URL] = color_utils::GetReadableColor(SkColorSetRGB(0, 128, 0),
349 // Check whether or not this text is a URL. URLs are always displayed LTR
354 if (!(i->style & ACMatchClassification::URL)) {
413 if (classifications[i].style & ACMatchClassification::URL)
414 render_text->SetColor(GetColor(state, URL));
  /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 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/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/chrome/browser/resources/shared/js/
util.js 43 * Generates a CSS url string.
44 * @param {string} s The URL to generate the CSS url for.
45 * @return {string} The CSS url string.
47 function url(s) {
58 return 'url("' + s2 + '")';
63 * @param {string} s The URL to generate the CSS url for.
64 * @return {object} Dictionary containing name value pairs for URL
111 // Handle click on a link. If the link points to a chrome: or file: url, the
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
saml_injected.js 24 // URL of the page.
41 * @param {!string} pageURL URL of the page.
75 // Use an invalid char for URL as delimiter to concatenate page url and
122 var url = window.location.href;
123 if (!url.match(/^(http|https):\/\//))
142 channel.send({name: 'pageLoaded', url: pageURL});
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
info.js 81 * Renders the URL for the image, trimming if the length is too long.
83 function renderUrl(url) {
84 var divurl = document.querySelector('#url');
85 var urltext = (url.length < 45) ? url : url.substr(0, 42) + '...';
87 anchor.href = url;
95 function renderThumbnail(url) {
118 image.src = url;
125 function getImageInfoHandler(url) {
    [all...]

Completed in 358 milliseconds

<<11121314151617181920>>