/external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/ |
util.js | 14 * Extracts the first URL from an element. 16 * @return {?string} URL.
|
/external/chromium_org/net/test/android/javatests/src/org/chromium/net/test/util/ |
TestWebServer.java | 33 import java.net.URL; 135 URL url = new URL(mServerUri + SHUTDOWN_PREFIX); local 136 URLConnection connection = openConnection(url); 180 * Gets the URL on the server under which a particular request path will be accessible. 182 * This only gets the URL, you still need to set the response if you intend to access it. 185 * @return The full URL including the requestPath. 199 * @return The full URL including the path that should be requested to get the expected 221 * @return The full URL including the path that should be requested to get the expecte [all...] |
/external/chromium_org/third_party/libxml/src/include/libxml/ |
catalog.h | 151 const xmlChar *URL);
|
relaxng.h | 124 xmlRelaxNGNewParserCtxt (const char *URL);
|
xmlschemas.h | 120 xmlSchemaNewParserCtxt (const char *URL);
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data.h | 60 URL = 1 << 1, 72 // getting a URL. 106 virtual void SetURL(const GURL& url, const base::string16& title) = 0; 115 GURL* url, 177 // A URL can have an optional title in some exchange formats. 178 void SetURL(const GURL& url, const base::string16& title); 193 GURL* url,
|
/external/emma/core/java12/com/vladium/emma/data/ |
DataFactory.java | 26 import java.net.URL; 116 public static IMetaData readMetaData (final URL url) 123 oin = new ObjectInputStream (new BufferedInputStream (url.openStream (), 32 * 1024)); 140 public static void writeMetaData (final IMetaData data, final URL url) 143 final URLConnection connection = url.openConnection (); 160 public static ICoverageData readCoverageData (final URL url) 167 oin = new ObjectInputStream (new BufferedInputStream (url.openStream (), 32 * 1024)) [all...] |
/external/libxml2/include/libxml/ |
catalog.h | 151 const xmlChar *URL);
|
relaxng.h | 124 xmlRelaxNGNewParserCtxt (const char *URL);
|
xmlschemas.h | 120 xmlSchemaNewParserCtxt (const char *URL);
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
MockWebServer.java | 34 import java.net.URL; 99 * Returns a URL for connecting to this server. 103 public URL getUrl(String path) { 106 ? new URL("https://" + getHostName() + ":" + getPort() + path) 107 : new URL("http://" + getHostName() + ":" + getPort() + path);
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestDocumentBuilderFactory.java | 64 public abstract Document load(java.net.URL url) throws DOMTestLoadException;
|
JAXPDOMTestDocumentBuilderFactory.java | 118 public Document load(java.net.URL url) throws DOMTestLoadException { 124 InputStream stream = url.openStream(); 125 doc = builder.parse(stream, url.toString());
|
/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/ |
PartnerBookmarksProvider.java | 114 map.put(PartnerBookmarksContract.Bookmarks.URL, 115 PartnerBookmarksContract.Bookmarks.URL); 171 PartnerBookmarksContract.Bookmarks.URL + 266 PartnerBookmarksContract.Bookmarks.URL); 422 throw new UnsupportedOperationException("Unknown URL " + uri.toString());
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_MimeWriter.py | 131 access-type="URL"; 132 URL="hdl://cnri.kss/generic-knowbot" 243 [("access-type", "URL"), 244 ("URL", "hdl://cnri.kss/generic-knowbot")])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_MimeWriter.py | 131 access-type="URL"; 132 URL="hdl://cnri.kss/generic-knowbot" 243 [("access-type", "URL"), 244 ("URL", "hdl://cnri.kss/generic-knowbot")])
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldResultSetGetterTests.java | 21 import java.net.URL; 146 java.net.URL.class, // not a JDBC 1.0 type 147 java.net.URL.class // not a JDBC 1.0 type 177 " validURL URL, invalidURL URL "+ 703 * "BIGINT","URL","URL"); 710 "BIGINT", "URL", "URL"); [all...] |
/external/chromium_org/third_party/libxml/src/ |
parser.c | 87 xmlCreateEntityParserCtxtInternal(const xmlChar *URL, const xmlChar *ID, 211 void *user_data, int depth, const xmlChar *URL, [all...] |
/external/libxml2/ |
parser.c | 90 xmlCreateEntityParserCtxtInternal(const xmlChar *URL, const xmlChar *ID, 215 void *user_data, int depth, const xmlChar *URL, [all...] |
/external/chromium/chrome/browser/bookmarks/ |
bookmark_codec.cc | 28 const char* BookmarkCodec::kURLKey = "url"; 31 const char* BookmarkCodec::kTypeURL = "url"; 96 if (node->type() == BookmarkNode::URL) { 98 std::string url = node->GetURL().possibly_invalid_spec(); local 99 value->SetString(kURLKey, url); 100 UpdateChecksumWithUrlNode(id, title, url); 243 GURL url = GURL(url_string); 244 if (!node && url.is_valid()) 245 node = new BookmarkNode(id, url); 251 node->set_type(BookmarkNode::URL); [all...] |
/external/chromium/chrome/browser/resources/ |
crashes.js | 54 'URL%20(if%20applicable)%20where%20crash%20occurred:%20%0A%0A' +
|
/external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/ |
navigation_collector.js | 23 * request's tab ID, frame ID, and URL in order to ensure uniqueness. 32 * request's tab ID, frame ID, and URL in order to ensure uniqueness. 41 * request's tab ID, frame ID, and URL in order to ensure uniqueness. 110 * @typedef {{url: string, transitionType: NavigationCollector.NavigationType, 122 * @param {!{tabId: number, frameId: number, url: string}} data Information 139 * @param {!string} url The request's URL. 141 prepareDataStorage_: function(id, url) { 149 this.completed_[url] = this.completed_[url] || []; [all...] |
/external/chromium_org/chrome/browser/resources/ |
crashes.js | 52 'URL (if applicable) where crash occurred:',
|
/external/chromium_org/chrome/browser/resources/media/ |
webrtc_logs.js | 45 'URL (if applicable) where the problem occurred:',
|
/external/chromium_org/chrome/browser/resources/predictors/ |
resource_prefetch_predictor.js | 58 * Renders cache data for URL or host based data.
|