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

<<21222324252627282930>>

  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/screenshot/
background.js 6 // query param to the url that displays the screenshot.
17 chrome.tabs.create({url: viewTabUrl}, function(tab) {
33 // the screenshot. The url of the tab which will display the
35 // ensures that exactly one view will have the matching URL.
52 if (tab.url.match("^https?://code.google.com")) {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
background.js 31 // Custom URL's (such as opening mailto in Gmail tab) should have a
35 console.log('Custom url: ' + action_url);
36 chrome.tabs.create({ url: action_url });
40 console.log('Action url: ' + action_url);
41 chrome.tabs.update(tab_id, { url: action_url });
54 executeMailto(tab.id, info.title, tab.url, info.selection);
62 if (tab.url.indexOf("http:") != 0 &&
63 tab.url.indexOf("https:") != 0) {
64 executeMailto(tab.id, "", tab.url, "");
  /external/chromium_org/chrome/renderer/resources/extensions/
image_util.js 6 // corresponding to the internet URL to be translated - and optionally
  /external/chromium_org/chrome/test/functional/gtalk/
jsutils.js 18 * The first Chrome extension view with a URL containing the query.
23 var url = views[i].location.href;
24 if (url && url.indexOf(query) >= 0) {
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
Chromoting.java 37 import java.net.URL;
233 new URL(HOST_LIST_PATH + JniInterface.nativeGetApiKey()).openConnection();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-create-patch 162 if (/^URL: (.+?)[\r\n]*$/) {
208 if (/^Copied From URL: (.+?)[\r\n]*$/) {
  /external/chromium_org/third_party/icu/source/config/
dist.mk 26 SVNURL=$(shell svn info $(SVNTOP) | grep '^URL:' | cut -d: -f2-)
  /external/chromium_org/third_party/libxslt/libxslt/
imports.c 118 if (xmlStrEqual(res->doc->URL, URI)) {
120 "xsl:import : recursion detected on imported URL %s\n", URI);
219 if (xmlStrEqual(docptr->doc->URL, URI)) {
221 "xsl:include : recursion detected on included URL %s\n", URI);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-137.js 28 // See <URL:http://code.google.com/p/v8/issues/detail?id=137>
regress-233.js 28 // See issue 233 <URL: http://code.google.com/p/v8/issues/detail?id=233 >
  /external/dnsmasq/contrib/Suse/
dnsmasq-suse.spec 14 URL: http://www.thekelleys.org.uk/dnsmasq
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 41 import java.net.URL;
141 browserSupport.openURL(new URL(event.location));
  /external/icu4c/config/
dist.mk 26 SVNURL=$(shell svn info $(SVNTOP) | grep '^URL:' | cut -d: -f2-)
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
DesktopAssetManager.java 46 import java.net.URL;
82 public DesktopAssetManager(URL configFile){
  /external/libxslt/libxslt/
imports.c 118 if (xmlStrEqual(res->doc->URL, URI)) {
120 "xsl:import : recursion detected on imported URL %s\n", URI);
219 if (xmlStrEqual(docptr->doc->URL, URI)) {
221 "xsl:include : recursion detected on included URL %s\n", URI);
  /external/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 143 String url = message.URL; local
144 int q = url.indexOf('?');
148 // Combine the URL query string with the other parameters:
150 parameters.addAll(OAuth.decodeForm(message.URL.substring(q + 1)));
152 url = url.substring(0, q);
155 + OAuth.percentEncode(normalizeUrl(url)) + '&'
159 protected static String normalizeUrl(String url) throws URISyntaxException {
160 URI uri = new URI(url);
    [all...]
  /external/stlport/etc/
STLport-4.5.1.spec 8 URL: http://www.stlport.org/
STLport-4.5.3.spec 8 URL: http://www.stlport.org/
STLport-4.6.spec 8 URL: http://www.stlport.org/
  /external/v8/test/mjsunit/regress/
regress-137.js 28 // See <URL:http://code.google.com/p/v8/issues/detail?id=137>
regress-233.js 28 // See issue 233 <URL: http://code.google.com/p/v8/issues/detail?id=233 >
  /frameworks/base/media/java/android/media/
TimedText.java 328 * The linked-to URL
330 public final String URL;
342 * @param url the linked-to URL.
345 public HyperText(int startChar, int endChar, String url, String alt) {
348 this.URL = url;
656 byte[] url = parcel.createByteArray();
657 final String urlString = new String(url, 0, len);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 37 import java.net.URL;
63 URL url = this.getClass().getClassLoader().getResource("data/mock_android.jar"); local
66 mOsJarPath.add(url.getFile());
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 23 import java.net.URL;
100 * properties to be set: URL, database name, user name, password,
221 * Gets the URL property value for this {@code RowSet}. If there is no
222 * {@code DataSource} object specified, the {@code RowSet} uses the URL to
223 * establish a connection to the database. The default value for the URL is
226 * @return a String holding the value of the URL property.
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
RequestHandler.java 103 History.URL,
107 private static final String SELECTION = History.URL
131 if (key.equals("url")) {
174 if ("url".equals(key)) {

Completed in 2058 milliseconds

<<21222324252627282930>>