HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 151 - 175 of 688) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebKit/mac/History/
WebHistory.mm 82 - (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount;
92 - (BOOL)containsURL:(NSURL *)URL;
93 - (WebHistoryItem *)itemForURL:(NSURL *)URL;
97 - (BOOL)loadFromURL:(NSURL *)URL collectDiscardedItemsInto:(NSMutableArray *)discardedItems error:(NSError **)error;
98 - (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error;
287 - (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount
289 ASSERT(url);
292 NSString *URLString = [url _web_originalDataAsString];
304 LOG(History, "Adding new global history entry for %@", url);
333 // If we already have an item with this URL, we need to merge info that drives th
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
AuthenticatorTest.java 28 import java.net.URL;
104 URL url = new URL("http://127.0.0.1"); local
106 .getByName("127.0.0.1"), 80, "HTTP", "", "", url,
184 new URL("http://localhost:" + port).openStream();
201 public URL getRequestingURL() {
  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 27 import java.net.URL;
52 URL url = null; local
58 url = new URL("file:/" + resPath + "/" + fileName);
62 return url.toString();
118 public static File getExternalLocalFile(String url) throws IOException, MalformedURLException {
120 InputStream in = new URL(url).openStream();
151 URL url = ClassLoader.getSystemClassLoader().getResource(name) local
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
AppletHarness.java 44 import java.net.URL;
62 private URL appCfg = null;
63 private URL assetCfg = null;
141 appCfg = new URL(getParameter("AppSettingsURL"));
148 assetCfg = new URL(getParameter("AssetConfigURL"));
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebDragClientMac.mm 117 static NSArray *arrayForURLsWithTitles(NSURL *URL, NSString *title)
119 return [NSArray arrayWithObjects:[NSArray arrayWithObject:[URL _web_originalDataAsString]],
123 void WebDragClient::declareAndWriteDragImage(NSPasteboard *pasteboard, DOMElement *element, NSURL *URL, NSString *title, WebCore::Frame*)
140 title = [[URL path] lastPathComponent];
142 title = [URL _web_userVisibleString];
161 [URL writeToPasteboard:pasteboard];
163 [pasteboard setString:[URL _web_originalDataAsString] forType:PasteboardTypes::WebURLPboardType];
167 [pasteboard setString:[URL _web_userVisibleString] forType:NSStringPboardType];
169 [pasteboard setPropertyList:arrayForURLsWithTitles(URL, title) forType:PasteboardTypes::WebURLsWithTitlesPboardType];
275 draggingImageURL = [response URL];
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FileFilter.java 31 import java.net.URL;
69 URL url = null; local
71 url = new URL(ForwarderManager.getHostSchemePort(false) +
81 byte[] httpAnswer = FsUtils.readDataFromUrl(url);
148 Log.e(LOG_TAG, "url=" + url, e);
262 * Return a URL of the test on the server.
267 * @return a URL of the test on the serve
    [all...]
AdditionalTextOutput.java 23 import java.net.URL;
59 URL url = new URL(urlString); local
60 protocol = url.getProtocol();
61 host = url.getHost();
62 if (url.getPort() > -1) {
63 port = url.getPort();
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 22 import java.net.URL;
75 private final Set<URL> services;
85 this.services = new HashSet<URL>();
188 private final Set<URL> services;
221 for (URL url : services) {
224 reader = new BufferedReader(new InputStreamReader(url.openStream(), "UTF-8"));
245 throw new ServiceConfigurationError("Couldn't read " + url, e);
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldManifestTest.java 25 import java.net.URL;
85 Manifest manifest = new Manifest(new URL(Support_Resources
93 Manifest manifest1 = new Manifest(new URL(Support_Resources.getURL(
95 Manifest manifest2 = new Manifest(new URL(Support_Resources.getURL(
110 manifest1 = new Manifest(new URL(Support_Resources
113 fail("Malformed URL");
138 fail("Malformed URL");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RuleLoader.java 33 import java.net.URL;
118 List<URL> urls = new ArrayList<URL>();
129 URL url; local
131 url = pathFile.toURI().toURL();
132 urls.add(url);
137 "Invalid URL: %1$s", //$NON-NLS-1$
144 return new URLClassLoader(urls.toArray(new URL[urls.size()]),
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-protocol.js 1 description('Test setting the protocol attribute of the URL in HTMLAnchorElement .');
32 debug("Set a protocol to a URL with invalid host name");
63 // Firefox 3.5.2 tries to build a hierarchical URL.
64 debug("Set protocol to http on malformed URL");
70 debug("Set protocol to a URL which points to a local file");
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 80 - (void)_sendNotificationForURL:(NSString *)URL;
128 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache
134 if (!URL || ![self isEnabled])
135 return [self defaultIconForURL:URL withSize:size];
138 if ([URL _webkit_isFileURL])
139 return [self _iconForFileURL:URL withSize:size];
141 if (Image* image = iconDatabase().synchronousIconForPageURL(URL, IntSize(size)))
144 return [self defaultIconForURL:URL withSize:size];
147 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size
149 return [self iconForURL:URL withSize:size cache:YES]
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatSymbolsTest.java 20 import java.net.URL;
74 URL path1 = new File("src/test/resources/provider/correct").toURL();
75 URL path2 = new File("resources/provider/correct").toURL();
77 new URL[] { path1, path2 }) {
104 URL path1 = new File("src/test/resources/provider/wrong").toURL();
105 URL path2 = new File("resources/provider/wrong").toURL();
107 new URL[] { path1, path2 }) {
178 URL path1 = new File("src/test/resources/provider/correct").toURL();
179 URL path2 = new File("resources/provider/correct").toURL();
181 new URL[] { path1, path2 })
    [all...]
DecimalFormatSymbolsTest.java 25 import java.net.URL;
83 URL path1 = new File("src/test/resources/provider/correct").toURL();
84 URL path2 = new File("resources/provider/correct").toURL();
86 new URL[] { path1, path2 }) {
113 URL path1 = new File("src/test/resources/provider/wrong").toURL();
114 URL path2 = new File("resources/provider/wrong").toURL();
116 new URL[] { path1, path2 }) {
189 URL path1 = new File("src/test/resources/provider/correct").toURL();
190 URL path2 = new File("resources/provider/correct").toURL();
192 new URL[] { path1, path2 })
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 70 * headers for the provided url. The keys can't be the standard HTTP headers
71 * as they are set by the WebView. The url's schema must be http(s).
80 BookmarkColumns.URL, // 1
152 * and/or a url, both of which can be edited by the user before saving.
156 * @param url Url for the bookmark. Can be null or empty string.
160 String url) {
163 i.putExtra("url", url);
230 * column, {@link BookmarkColumns#URL}
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory4Test.java 23 import java.net.URL;
89 URL certUrl = new URL(BASE_URL + CERTIFICATE_URLS[i]);
111 URL certUrl = new URL(BASE_URL + CRL_URLS[i]);
132 URL certUrl = new URL(BASE_URL + CRLCOLLECTION_URLS[i]);
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
JarURLConnectionImpl.java 18 package libcore.net.url;
30 import java.net.URL;
46 * file which can be anywhere that can be referred to by an URL.
50 static HashMap<URL, JarFile> jarCache = new HashMap<URL, JarFile>();
52 private URL jarFileURL;
63 * @param url
64 * the URL of the JAR
66 * if the URL is malformed
70 public JarURLConnectionImpl(URL url) throws MalformedURLException
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory4Test.java 29 import java.net.URL;
92 URL certUrl = new URL(BASE_URL + CERTIFICATE_URLS[i]);
114 URL certUrl = new URL(BASE_URL + CRL_URLS[i]);
135 URL certUrl = new URL(BASE_URL + CRLCOLLECTION_URLS[i]);
    [all...]
  /external/libxml2/include/libxml/
xmlreader.h 122 xmlParserInputBufferPtr input, const char *URL,
320 const char *URL,
330 const char *URL,
335 const char *URL,
342 const char *URL,
352 const char *URL,
364 const char *URL,
370 const char *URL,
378 const char *URL,
  /external/android-mock/src/com/google/android/testing/mocking/
ProcessorLogger.java 25 import java.net.URL;
55 URL[] allUrls = ((URLClassLoader) this.getClass().getClassLoader()).getURLs();
56 for (URL url : allUrls) {
57 printMessage(Kind.NOTE, url.toString());
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 24 import java.net.URL;
174 public static void setClassLoaderAndBaseClass(URL[] urlSearchPaths)
202 setClassLoaderAndBaseClass(new URL[] { mAndroidSdkPath.toURL() });
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
JmeSystem.java 39 import java.net.URL;
66 public static URL getResource(String name) {
96 public static AssetManager newAssetManager(URL configFile) {
JmeSystemDelegate.java 39 import java.net.URL;
76 public URL getResource(String name) {
99 public abstract AssetManager newAssetManager(URL configFile);
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
AppHarness.java 45 import java.net.URL;
59 private URL appCfg = null;
115 appCfg = new URL(getParameter("AppSettingsURL"));
  /external/replicaisland/src/com/replica/replicaisland/
EventReporter.java 4 import java.net.URL;
81 URL serverAddress = null;
86 serverAddress = new URL(REPORT_SERVER + "?"

Completed in 1744 milliseconds

1 2 3 4 5 67 8 91011>>