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

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
RelativeLayoutRule.java 62 import java.net.URL;
78 private static final URL ICON_CENTER_VERTICALLY =
80 private static final URL ICON_CENTER_HORIZONTALLY =
82 private static final URL ICON_SHOW_STRUCTURE =
84 private static final URL ICON_SHOW_CONSTRAINTS =
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java 55 import java.net.URL;
427 URL sourceURL = bundle.getEntry(sourcePath);
429 URL url = null;
431 url = FileLocator.resolve(sourceURL);
434 if (url != null) {
435 androidSrcOsPath = url.getFile();
549 URL testURL = new URL(androidApiURL);
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 187 const GURL url("http://foo.com");
189 const BookmarkNode* new_node = model.AddURL(root, 0, title, url);
195 ASSERT_TRUE(url == new_node->GetURL());
196 ASSERT_EQ(BookmarkNode::URL, new_node->type());
197 ASSERT_TRUE(new_node == model.GetMostRecentlyAddedNodeForURL(url));
228 const GURL url("http://foo.com");
229 model.AddURL(root, 0, title, url);
237 // Make sure there is no mapping for the URL.
238 ASSERT_TRUE(model.GetMostRecentlyAddedNodeForURL(url) == NULL);
247 // Add a URL as a child
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlreader.c 533 if (cur->URL != NULL) xmlFree((char *) cur->URL);
    [all...]
  /external/libxml2/
xmlreader.c 533 if (cur->URL != NULL) xmlFree((char *) cur->URL);
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 21 import java.net.URL;
507 URL basis = new URL("file", "", System.getProperty("user.dir") + "/.");
508 URL url = new URL(basis, systemid); local
509 URLConnection c = url.openConnection();
867 theDoctypeSystemId = new URL(new URL(theDoctypeSystemId), systemid).toString();
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 142 BookmarkColumns._ID, BookmarkColumns.URL, BookmarkColumns.VISITS,
150 BookmarkColumns.URL,
277 // Match against common URL prefixes.
360 throw new IllegalArgumentException(TAG + ": query - unknown URL uri = " + uri);
394 throw new IllegalArgumentException(TAG + ": insert - unknown URL " + uri);
451 throw new IllegalArgumentException(TAG + ": delete - unknown URL " + uri);
477 String url = null; local
478 if (values.containsKey(Browser.BookmarkColumns.URL)) {
479 url = values.getAsString(Browser.BookmarkColumns.URL);
554 String url = values.getAsString(Browser.BookmarkColumns.URL); local
800 public String url() { method in class:ChromeBrowserProvider.BookmarkNode
1158 String url; field in class:ChromeBrowserProvider.BookmarkRow
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 35 import java.net.URL;
432 URL url = new URL("http://www.google.com/"); local
433 connection = (HttpURLConnection) url.openConnection();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 19 import java.net.URL;
129 URL url = (URL) imageFiles.nextElement(); local
131 File outputFile = new File(output, url.getFile());
135 Util.copyStream(url.openStream(), outputFile);
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 3 import java.net.URL;
24 simple = (SimpleInterface) simpleClass.toClass(new URLClassLoader(new URL[0], getClass().getClassLoader()), Class.class.getProtectionDomain()).newInstance();
34 ComplexInterface instance = (ComplexInterface) clazz.toClass(new URLClassLoader(new URL[0], getClass().getClassLoader()), Class.class.getProtectionDomain()).newInstance();
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 46 import java.net.URL;
219 Enumeration<URL> resources = classLoader.getResources(path);
222 URL resource = resources.nextElement();
  /frameworks/base/core/java/android/net/
CaptivePortalTracker.java 52 import java.net.URL;
369 * Do a URL fetch on a known server to see if we get the data we expect.
380 URL url = new URL(mUrl); local
381 urlConnection = (HttpURLConnection) url.openConnection();
  /libcore/luni/src/main/java/java/sql/
ResultSet.java 23 import java.net.URL;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 20 import java.net.URL;
115 URL url = new URL(systemId); local
116 URLConnection urlConnection = url.openConnection();
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 11 import java.net.URL;
292 final URL url = new URL(systemId); local
293 stream = url.openStream();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 39 import java.net.URL;
61 private Map<URL, Image> mUrlMap = Maps.newHashMap();
261 * Returns the image indicated by the given URL
263 * @param url the url to the image resources
264 * @return the image for the url, or null if it cannot be initialized
266 public Image getIcon(URL url) {
267 Image image = mUrlMap.get(url);
269 ImageDescriptor descriptor = ImageDescriptor.createFromURL(url);
    [all...]
  /development/scripts/app_engine_server/
memcache_zipserve.py 90 """Handles get requests for a given URL.
100 NEG_CACHE_PREFIX = 'noncache://' # memcache key prefix for non-existant URL
124 name: URL requested
146 # Do some prep for handling intl requests. Parse the url and validate
147 # the intl/lang substring, extract the url lang code (urlLangName) and the
161 # the user's preferred language url.
181 # Preprocess the req url. If it references a directory or the domain itself,
182 # append '/index.html' to the url and 302 redirect. Otherwise, continue
191 # Try to form a response using the actual request url.
209 # handle the case where we have a non-clean url (usually a non-int
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassLoaderTest.java 167 // Test for method java.net.URL
169 java.net.URL u = ClassLoader.getSystemClassLoader().getResource("hyts_Foo.c");
219 // Test for method java.net.URL
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 36 NOTREACHED() << "Can't delete requested URL";
58 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
75 // However, if the parser did not mark this as a URL, then the user probably
80 if ((input.type() != AutocompleteInput::URL) &&
132 size_t HistoryProvider::TrimHttpPrefix(string16* url) {
134 if (!HasHTTPScheme(*url))
137 url->find(ASCIIToUTF16(chrome::kHttpScheme) + char16(':'));
142 const size_t after_slashes = std::min(url->length(), prefix_end + 2);
143 while ((prefix_end < after_slashes) && ((*url)[prefix_end] == '/'))
145 url->erase(scheme_pos, prefix_end - scheme_pos)
    [all...]
keyword_provider_unittest.cc 46 { "ab", "bogus URL %s", "ab" },
129 TEST_F(KeywordProviderTest, URL) {
131 // No query input -> empty destination URL.
136 // and query input, but not rest of URL, is escaped.
144 GURL("bogus URL 1+2+3"),
206 std::string url("http://www.google.com/foo?q={searchTerms}");
207 template_url->SetURL(url, 0, 0);
215 string16 url(ASCIIToUTF16("http://aaaa/?aaaa=1&b={searchTerms}&c"));
  /external/chromium/chrome/browser/extensions/
extension_omnibox_unittest.cc 13 const int kUrl = ACMatchClassification::URL;
38 // Test output key: n = character with no styling, d = dim, m = match, u = url
79 AppendStyle("url", 0, 5, &styles_value);
101 AppendStyle("url", 0, 5, &styles_value);
119 AppendStyle("url", 0, 5, &styles_value);
  /external/chromium/chrome/browser/ui/views/frame/
browser_root_view.cc 32 *formats = ui::OSExchangeData::URL | ui::OSExchangeData::STRING;
46 // If there is a URL, we'll allow the drop.
50 // If there isn't a URL, see if we can 'paste and go'.
90 // Extract the URL and create a new ui::OSExchangeData containing the URL. We
93 GURL url;
96 if (!event.data().GetURLAndTitle(&url, &title) || !url.is_valid()) {
97 // The url isn't valid. Use the paste and go url
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_match.h 16 #include "url/gurl.h"
55 URL = 1 << 0, // A URL
161 // Convenience function to check if |type| is a search (as opposed to a URL or
171 // If |profile| is not NULL, it is used to get a template URL corresponding
222 // Returns whether this match is a "verbatim" match: a URL navigation directly
256 // by pressing the arrow keys. This may be different than a URL, for example,
275 // The URL to actually load when the autocomplete item is selected. This URL
280 // The destination URL with "www." stripped off for better dupe finding
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
player_testapi.js 10 * To test the Video Player open a tab with the URL:
13 * To test the Audio Player open a tab with the URL:
73 * To test the video player open a tab with the url:
84 var url = util.makeFilesystemUrl(filePath);
85 location.href = location.origin + location.pathname + '?' + url;
  /external/chromium_org/chrome/browser/ui/views/toolbar/
home_button.cc 152 *formats = ui::OSExchangeData::URL;

Completed in 1879 milliseconds

<<11121314151617181920>>