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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLVideoElement.idl 33 [Reflect, URL, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute DOMString poster;
  /external/chromium_org/third_party/libxml/src/
check-relaxng-test-suite.py 45 def resolver(URL, ID, ctxt):
48 if string.find(URL, '#') != -1:
49 URL = URL[0:string.find(URL, '#')]
50 if resources.has_key(URL):
51 return(StringIO.StringIO(resources[URL]))
52 log.write("Resolver failure: asked %s\n" % (URL))
207 # resource handling: keep a dictionary of URL->string mappings
  /external/doclava/src/com/google/doclava/
JarUtils.java 23 import java.net.URL;
35 URL jarUrl = clazz.getResource(path);
40 String url = jarUrl.toString(); local
41 int bang = url.indexOf("!");
43 if (url.startsWith(JAR_URI_PREFIX) && bang != -1) {
45 return new JarFile(url.substring(JAR_URI_PREFIX.length(), bang));
  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 16 grep ^URL .svninfo >> tdb.c
  /external/javassist/src/main/javassist/
ClassPoolTail.java 21 import java.net.URL;
53 public URL find(String classname) {
104 public URL find(String classname) {
107 URL url = jars[i].find(classname); local
108 if (url != null)
109 return url;
153 public URL find(String classname) {
158 return new URL("jar:" + jarfileURL + "!/" + jarname);
355 * Searches the class path to obtain the URL of the class fil
367 URL url = null; local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ClasspathLocator.java 40 import java.net.URL;
69 URL url; local
80 url = ClasspathLocator.class.getResource("/" + name);
82 url = Thread.currentThread().getContextClassLoader().getResource(name);
84 if (url == null)
87 if (url.getProtocol().equals("file")){
89 String path = new File(url.toURI()).getCanonicalPath();
102 throw new AssetLoadException("Error converting URL to URI", ex);
104 throw new AssetLoadException("Failed to get canonical path for " + url, ex)
    [all...]
  /frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/
PacService.java 29 import java.net.URL;
73 public String resolvePacFile(String host, String url) throws RemoteException {
76 new URL(url);
82 return mPacNative.makeProxyRequest(url, host);
84 throw new RemoteException("Invalid URL was passed");
  /libcore/luni/src/main/java/javax/net/ssl/
HttpsURLConnection.java 21 import java.net.URL;
54 * URL url = new URL("https://www.example.com/");
55 * HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
88 * URL url = new URL("https://www.example.com/");
89 * HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
177 * Creates a new {@code HttpsURLConnection} with the specified {@code URL}
    [all...]
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
JarUtils.java 22 import java.net.URL;
36 final URL resUrl = mainClass.getResource(mainClassPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
Activator.java 28 import java.net.URL;
80 public static URL findFile(IPath path) {
  /external/chromium_org/native_client_sdk/src/doc/reference/
nacl-manifest-format.rst 44 application, this is a URL for the statically linked bitcode ``pexe`` file.
46 of URLs, one URL for each supported architecture (currently the choices
50 section for the rules on URL resolution.
60 // url is required
61 "url": "url_to_my_pexe"
91 "arm": { "url": "url_to_arm_nexe" },
92 "x86-32": { "url": "url_to_x86_32_nexe" },
93 "x86-64": { "url": "url_to_x86_64_nexe" }
106 "x86-32": { "url": "lib32/runnable-ld.so" },
107 "x86-64": { "url": "lib64/runnable-ld.so"
    [all...]
  /external/chromium_org/tools/measure_page_load_time/ff_ext/content/
measure_page_load_time.js 9 * form url,time, where "time" is the load time in milliseconds or the
28 * Incoming URL buffer
34 * URL we're currently visiting
37 URL : '',
104 // Remove the URL from the buffer
105 MPLT.URL = MPLT.textBuffer.substr(0, firstCR);
108 // Remember the current time and navigate to the new URL
110 gBrowser.loadURIWithFlags(MPLT.URL, gBrowser.LOAD_FLAGS_BYPASS_CACHE);
144 * @param {string} result The value to send along with the URL
148 if (MPLT.URL) {
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 20 import java.net.URL;
79 private URL resolveURI(String baseURI) throws DOMTestLoadException {
82 URL resolvedURI = null;
84 resolvedURI = new URL(docURI);
93 // build a URL for a test file in the JAR
105 resolvedURI = new URL(docURI);
176 URL url = tempFile.toURL(); local
177 return url.toString();
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 27 import java.net.URL;
203 for (URL resource : createServiceFileIterator()) {
329 private Iterable<URL> createServiceFileIterator() {
331 URL resource = XPathFactoryFinder.class.getClassLoader().getResource(SERVICE_ID);
335 Enumeration<URL> e = classLoader.getResources(SERVICE_ID);
370 URL it = loader.getResource(classnameAsResource);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 4 import java.net.URL;
21 public Document load(URL url, DocumentBuilder builder) {
27 doc = builder.parse(url.openStream());
51 private URL resolveURI(String baseURI) {
54 URL resolvedURI = null;
56 resolvedURI = new URL(docURI);
64 // build a URL for a test file in the JAR
75 resolvedURI = new URL(docURI);
185 // Jar URL's will have any actual path like file:/c:/somedrive..
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 61 * @param url URL of the website to be bookmarked.
69 /* package */ static void addBookmark(Context context, boolean showToast, String url,
76 values.put(BrowserContract.Bookmarks.URL, url);
92 * Remove a bookmark from the database. If the url is a visited site, it
99 * @param url URL of the website to be removed.
102 ContentResolver cr, String url, String title) {
108 BrowserContract.Bookmarks.URL + " = ? AND "
    [all...]
  /external/chromium_org/remoting/webapp/
third_party_host_permissions.js 10 * third-party server. For that, once the URL is received from the host the
12 * "host" permission needed to access that URL. If the webapp hasn't already
26 * @param {string} url The URL to request permission for.
28 remoting.ThirdPartyHostPermissions = function(url) {
29 this.url_ = url;
30 this.permissions_ = {'origins': [url]};
34 * Get permissions to the URL, asking interactively if necessary.
71 var url = document.getElementById('third-party-auth-url');
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 42 import java.net.URL;
232 URL[] jars = getExternalJars();
255 private final URL[] getExternalJars() {
259 ArrayList<URL> oslibraryList = new ArrayList<URL>();
299 return oslibraryList.toArray(new URL[oslibraryList.size()]);
302 private void handleClassPathEntry(IClasspathEntry e, ArrayList<URL> oslibraryList) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
InstallDependencyPage.java 43 import java.net.URL;
55 /** URL containing more info */
56 private static final String URL =
105 mLink.setText("<a href=\"" + URL + "\">" + URL + "</a>"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
286 browser.openURL(new URL(URL));
289 URL);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
drive_metadata_store_unittest.cc 42 fileapi::FileSystemURL URL(const base::FilePath& path) {
154 SyncStatusCode RemoveOrigin(const GURL& url) {
157 url, base::Bind(&DriveMetadataStoreTest::DidFinishDBTask,
163 SyncStatusCode UpdateEntry(const fileapi::FileSystemURL& url,
167 url, metadata,
174 SyncStatusCode DeleteEntry(const fileapi::FileSystemURL& url) {
177 url,
303 const fileapi::FileSystemURL url = URL(base::FilePath()); local
306 metadata_store()->ReadEntry(url, &metadata))
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 8 * @param {String} url_request_token The OAuth request token URL.
9 * @param {String} url_auth_token The OAuth authorize token URL.
10 * @param {String} url_access_token The OAuth access token URL.
53 * "request_url" {String} OAuth request token URL.
54 * "authorize_url" {String} OAuth authorize token URL.
55 * "access_url" {String} OAuth access token URL.
61 * Authorization token URL. For an example, 'hd', 'hl', 'btmpl':
74 if (changeInfo.url &&
75 changeInfo.url.substr(0, url_match.length) === url_match &&
76 changeInfo.url != tabs[tabId] &
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 8 * @param {String} url_request_token The OAuth request token URL.
9 * @param {String} url_auth_token The OAuth authorize token URL.
10 * @param {String} url_access_token The OAuth access token URL.
53 * "request_url" {String} OAuth request token URL.
54 * "authorize_url" {String} OAuth authorize token URL.
55 * "access_url" {String} OAuth access token URL.
61 * Authorization token URL. For an example, 'hd', 'hl', 'btmpl':
74 if (changeInfo.url &&
75 changeInfo.url.substr(0, url_match.length) === url_match &&
76 changeInfo.url != tabs[tabId] &
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
parser.h 355 * @SystemID: the SYSTEM ID (e.g. filename or URL)
368 * @SystemID: the SYSTEM ID (e.g. filename or URL)
791 * @URL: The System ID of the resource requested
799 typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL,
960 const xmlChar *URL,
966 const xmlChar *URL,
    [all...]
  /external/libxml2/include/libxml/
parser.h 355 * @SystemID: the SYSTEM ID (e.g. filename or URL)
368 * @SystemID: the SYSTEM ID (e.g. filename or URL)
791 * @URL: The System ID of the resource requested
799 typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL,
960 const xmlChar *URL,
966 const xmlChar *URL,
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 33 import java.net.URL;
148 // Get the URL for the feed from the cursor.
149 int urlColumnIndex = mCur.getColumnIndex(RssContentProvider.URL);
150 String url = mCur.getString(urlColumnIndex); local
151 queryItem(url);
162 private boolean queryItem(String url) {
164 URL wrappedUrl = new URL(url);
166 mLogger.info("RSS Feed " + url + ":\n " + rssFeed)
    [all...]

Completed in 2872 milliseconds

1 2 3 4 5 6 7 891011>>