Searched refs:URL (Results 151 - 175 of 542) sorted by relevance

1234567891011>>

/external/libxml2/include/libxml/
H A Dparser.h358 * @SystemID: the SYSTEM ID (e.g. filename or URL)
371 * @SystemID: the SYSTEM ID (e.g. filename or URL)
794 * @URL: The System ID of the resource requested
802 typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL,
963 const xmlChar *URL,
969 const xmlChar *URL,
1070 xmlLoadExternalEntity (const char *URL,
1130 const char *URL,
1134 xmlReadFile (const char *URL,
1140 const char *URL,
[all...]
/external/emma/tools/java/com/vladium/tools/
H A DClassDep.java15 import java.net.URL;
51 final URL [] classPath;
54 classPath = new URL [tokenizer.countTokens ()];
99 public ClassDep (final String [] rootSet, final URL [] classPath)
217 private final URL [] m_classPath;
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpTransportSE.java33 import java.net.URL;
296 retVal = new URL(url).getHost();
309 retVal = new URL(url).getPort();
322 retVal = new URL(url).getPath();
335 retVal = new URL(url).getQuery();
H A DHttpsServiceConnectionSE.java7 import java.net.URL;
24 * The explicit setting is necessary since pure url passing and letting the Java URL class parse the string does not
54 connection = (HttpsURLConnection) new URL(HttpsTransportSE.PROTOCOL, host, port, file)
H A DServiceConnectionSE.java66 ? (HttpURLConnection) new URL(url).openConnection()
67 : (HttpURLConnection) new URL(url).openConnection(proxy);
/external/chromium_org/third_party/libxml/src/
H A Dcatalog.c137 xmlChar *URL; /* The expanded URL using the base */ member in struct:_xmlCatalogEntry
271 const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer,
300 if (URL == NULL)
301 URL = value;
302 if (URL != NULL)
303 ret->URL = xmlStrdup(URL);
305 ret->URL = NULL;
349 if (ret->URL !
270 xmlNewCatalogEntry(xmlCatalogEntryType type, const xmlChar *name, const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer, xmlCatalogEntryPtr group) argument
1148 xmlChar *URL = NULL; local
3620 xmlCatalogAddLocal(void *catalogs, const xmlChar *URL) argument
[all...]
/external/libxml2/
H A Dcatalog.c141 xmlChar *URL; /* The expanded URL using the base */ member in struct:_xmlCatalogEntry
275 const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer,
304 if (URL == NULL)
305 URL = value;
306 if (URL != NULL)
307 ret->URL = xmlStrdup(URL);
309 ret->URL = NULL;
353 if (ret->URL !
274 xmlNewCatalogEntry(xmlCatalogEntryType type, const xmlChar *name, const xmlChar *value, const xmlChar *URL, xmlCatalogPrefer prefer, xmlCatalogEntryPtr group) argument
1146 xmlChar *URL = NULL; local
3616 xmlCatalogAddLocal(void *catalogs, const xmlChar *URL) argument
[all...]
/external/chromium_org/chrome/browser/android/bookmarks/
H A Dpartner_bookmarks_shim_unittest.cc101 partner_bookmark1->set_type(BookmarkNode::URL);
106 partner_bookmark2->set_type(BookmarkNode::URL);
135 partner_bookmark1->set_type(BookmarkNode::URL);
165 partner_bookmark1->set_type(BookmarkNode::URL);
170 partner_bookmark2->set_type(BookmarkNode::URL);
179 partner_bookmark3->set_type(BookmarkNode::URL);
256 partner_bookmark1->set_type(BookmarkNode::URL);
262 partner_bookmark2->set_type(BookmarkNode::URL);
336 partner_bookmark1->set_type(BookmarkNode::URL);
342 partner_bookmark2->set_type(BookmarkNode::URL);
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node.h20 // BookmarkNode contains information about a starred entry: title, URL, favicon,
25 URL, enumerator in enum:BookmarkNode::Type
63 // Returns the favicon's URL. Returns an empty URL if there is no favicon
84 // node whose type is not URL.
85 bool is_folder() const { return type_ != URL; }
86 bool is_url() const { return type_ == URL; }
126 // Sets the favicon's URL.
153 // The URL of this node. BookmarkModel maintains maps off this URL, s
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_operation_runner_unittest.cc57 FileSystemURL URL(const std::string& path) { function in class:content::FileSystemOperationRunnerTest
81 operation_runner()->Truncate(URL("foo"), 0,
93 // Invalid URL error, which calls DidFinish synchronously.
110 // Call Truncate with non-existent URL, and try to cancel it immediately
113 operation_runner()->Truncate(URL("foo"), 0,
135 // Call Truncate with invalid URL, and try to cancel it immediately
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_aura.cc39 // URL and filename metadata, and does not implement the DownloadURL protocol.
58 formats_ |= OSExchangeData::URL;
94 if ((formats_ & OSExchangeData::URL) == 0) {
141 if ((formats_ & OSExchangeData::URL) != 0) {
144 // No URL, see if we have plain text that can be parsed as a URL.
/external/mockito/src/org/mockito/internal/configuration/
H A DClassPathLoader.java14 import java.net.URL;
144 Enumeration<URL> resources;
152 for (URL resource : Collections.list(resources)) {
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpClient4.java21 import java.net.URL;
88 HttpClient client = clientPool.getHttpClient(new URL(httpRequest.getURI().toString()));
119 public HttpClient getHttpClient(URL server)
/external/smack/src/org/jivesoftware/smack/
H A DSmackConfiguration.java24 import java.net.URL;
85 Enumeration<URL> configEnum = classLoader.getResources("META-INF/smack-config.xml");
87 URL url = configEnum.nextElement();
/external/apache-harmony/security/src/test/api/java.injected/java/security/
H A DSecureClassLoaderTest.java24 import java.net.URL;
172 URL[] urls = new URL[] { new URL("http://localhost") };
181 URL url = new URL("http://localhost");
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthMessage.java49 public OAuthMessage(String method, String URL, argument
52 this.URL = URL;
65 public String URL; field in class:OAuthMessage
73 return "OAuthMessage(" + method + ", " + URL + ", " + parameters + ")";
213 into.put("URL", URL);
/external/apache-harmony/support/src/test/java/tests/util/
H A DSerializationTester.java29 import java.net.URL;
145 URL url = SerializationTester.class.getClassLoader().getResource(
/external/blktrace/
H A Dbtrace.spec19 URL: http://brick.kernel.dk/snaps
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProviderSuggestionsCursor.java66 return mCursor.getString(mCursor.getColumnIndex(BookmarkColumns.URL));
71 return mCursor.getString(mCursor.getColumnIndex(BookmarkColumns.URL));
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_context_unittest.cc245 const FileSystemURL kFile(file_system.URL("file"));
297 const FileSystemURL kFile(file_system.URL("file"));
403 const FileSystemURL kURL(file_system.URL("foo"));
441 const FileSystemURL kURL1(file_system1.URL("foo"));
442 const FileSystemURL kURL2(file_system2.URL("bar"));
549 const FileSystemURL kURL1(file_system.URL("foo"));
619 const FileSystemURL kFile(file_system.URL("file"));
620 const FileSystemURL kDir(file_system.URL("dir"));
621 const FileSystemURL kChild(file_system.URL("dir/child"));
707 const FileSystemURL kFile(file_system.URL("fil
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/
H A DIDLExtendedAttributes.txt102 URL
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocket.idl49 [DeprecateAs=WebSocketURL] readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons.
/external/javassist/src/main/javassist/tools/web/
H A DViewer.java163 URL url = new URL("http", server, port,
/external/oauth/core/src/main/java/net/oauth/client/
H A DURLConnectionClient.java23 import java.net.URL;
49 final URL url = request.url;
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DOkHttpAsync.java25 import java.net.URL;
86 @Override public void enqueue(URL url) throws Exception {

Completed in 700 milliseconds

1234567891011>>