/prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6/ |
gradle-tooling-api-1.6.pom | 2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
/prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.7/ |
gradle-tooling-api-1.7.pom | 2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
/prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/ |
osgi-4.0.0.pom | 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion12.xml | 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
edithandling.xml | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
|
/libcore/luni/src/test/java/libcore/java/net/ |
URLTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 31 URL url = new URL("http://username:password@host:8080/directory/file?query#ref"); 32 assertEquals("http", url.getProtocol()); 43 // http://code.google.com/p/android/issues/detail?id=12724 45 URL url = new URL("http://www.google.com:80/example?language[id]=2"); 61 URL urlByHostName = new URL("http://localhost/foo?bar=baz#quux"); 62 URL urlByAddress = new URL("http://" + address + "/foo?bar=baz#quux"); 69 assertEquals(new URL("HTTP://localhost/foo?bar=baz#quux"), 70 new URL("HTTP://localhost/foo?bar=baz#quux")); 71 assertTrue(new URL("http://localhost/foo?bar=baz#quux").equals [all...] |
OldURITest.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 27 "http://user@www.google.com:45/search?q=helpinfo#somefragment", 28 // http with authority, query and fragment 34 "http://123.24.17.98/test", // IPv4 authority 35 "http://www.google.com:80/test",// domain name authority 36 "http://joe@[3ffe:2a00:100:7031::1]:80/test", 42 "http://user@host:80", // UI, host,port 43 "http://user@host", // ui, host 44 "http://host", // host 45 "http://host:80", // host,por [all...] |
/external/chromium/chrome/browser/history/ |
visit_tracker_unittest.cc | 63 {1, 1, "http://www.google.com/", 1, "", 0}, 65 {1, 2, "http://images.google.com/", 2, "http://www.google.com/", 1}, 67 {1, 3, "http://video.google.com/", 3, "http://www.google.com/", 1}, 79 {1, 1, "http://foo.com/", 1, "", 0}, 81 {1, 1, "http://foo.com/ad.html", 2, "http://foo.com/", 1}, 83 {1, 1, "http://foo.com/ad2.html", 3, "http://foo.com/", 1} [all...] |
/external/chromium_org/chrome/browser/history/ |
visit_tracker_unittest.cc | 63 {1, 1, "http://www.google.com/", 1, "", 0}, 65 {1, 2, "http://images.google.com/", 2, "http://www.google.com/", 1}, 67 {1, 3, "http://video.google.com/", 3, "http://www.google.com/", 1}, 79 {1, 1, "http://foo.com/", 1, "", 0}, 81 {1, 1, "http://foo.com/ad.html", 2, "http://foo.com/", 1}, 83 {1, 1, "http://foo.com/ad2.html", 3, "http://foo.com/", 1} [all...] |
/external/chromium/googleurl/src/ |
gurl_unittest.cc | 52 EXPECT_EQ("http://hostname.com/", TypesTestCase("http:HOSTNAME.com")); 53 EXPECT_EQ("http://hostname.com/", TypesTestCase("http:/HOSTNAME.com")); 54 EXPECT_EQ("http://hostname.com/", TypesTestCase("http://HOSTNAME.com")); 55 EXPECT_EQ("http://hostname.com/", TypesTestCase("http:///HOSTNAME.com")); 70 GURL url(WStringToUTF16(L"http://user:pass@google.com:99/foo;bar?q=a#ref")); 72 EXPECT_TRUE(url.SchemeIs("http")); [all...] |
/external/chromium_org/chrome/browser/browsing_data/ |
cookies_tree_model_unittest.cc | 107 AddCookieSamples(GURL("http://foo1"), "A=1"); 109 AddCookieSamples(GURL("http://foo2"), "B=1"); 111 AddCookieSamples(GURL("http://foo3"), "C=1"); 143 // host1 -> localstorage -> http://host1:1/, 144 // -> sessionstorage -> http://host1:1/, 145 // host2 -> localstorage -> http://host2:2/. 146 // -> sessionstorage -> http://host2:2/, 147 // idbhost1 -> indexeddb -> http://idbhost1:1/, 148 // idbhost2 -> indexeddb -> http://idbhost2:2/, 149 // fshost1 -> filesystem -> http://fshost1:1/ [all...] |
/external/oauth/core/src/main/java/net/oauth/client/ |
OAuthResponseMessage.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 25 import net.oauth.http.HttpMessage; 26 import net.oauth.http.HttpResponseMessage; 29 * An HTTP response, encapsulated as an OAuthMessage. 36 OAuthResponseMessage(HttpResponseMessage http) throws IOException 38 super(http.method, http.url.toExternalForm(), null); 39 this.http = http; 40 getHeaders().addAll(http.headers) 52 private final HttpMessage http; field in class:OAuthResponseMessage [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
JunitTestCases.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 34 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrcreatedocumentfragment"); 38 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrcreatetextnode"); 42 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrcreatetextnode2"); 46 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attreffectivevalue"); 50 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrname"); 54 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrnextsiblingnull"); 58 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrparentnodenull"); 62 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrprevioussiblingnull"); 66 runDomTest("http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrspecifiedvalue") [all...] |
/external/chromium_org/build/android/pylib/gtest/filter/ |
content_browsertests_disabled | 3 Http/MediaTest.* 41 # http://crbug.com/187500 51 # Multiple test servers support: http://crbug/187570 54 # http://crbug.com/215894 65 # http://crbug.com/181069 78 # http://crbug.com/175683 81 # http://crbug.com/224134 84 # http://crbug.com/233118 91 # http://crbug.com/256184 96 # http://crbug.com/24879 [all...] |
/external/chromium_org/tools/lsan/ |
suppressions.txt | 4 # False positives in libfontconfig. http://crbug.com/39050 7 # Intentionally leaked "static" strings in Blink. http://crbug.com/268258 10 # V8 leak, expect 1024 bytes leaked per process. http://crbug.com/99304 13 # V8 GC issue which comes up in lots of tests. http://crbug.com/169678 16 # V8 GC issues in ProxyResolver tests, probably harmless. http://crbug.com/67378 21 # NSS leaks in CertDatabaseNSSTest tests. http://crbug.com/51988 33 # Skia leaks. http://crbug.com/189170 36 # Angle leaks. http://crbug.com/181691 40 # Skia leaks GrGpuGL::ProgramCache::Entry. http://crbug.com/262934 43 # Small test-only leak in ppapi_unittests. http://crbug.com/25811 [all...] |
/external/chromium_org/net/proxy/ |
proxy_config_service_android_unittest.cc | 125 initial_configuration["http.proxyHost"] = "httpproxy.com"; 126 initial_configuration["http.proxyPort"] = "8080"; 133 AddProperty("http.proxyHost", "localhost"); 148 TestMapping("http://example.com/", "PROXY httpproxy.com:8080"); 152 AddProperty("http.proxyHost", "httpproxy.com"); 154 TestMapping("http://example.com/", "PROXY httpproxy.com:80"); 167 TestMapping("http://example.com/", "DIRECT"); 172 // Test http.proxyHost and http.proxyPort works. 173 AddProperty("http.proxyHost", "httpproxy.com") [all...] |
/external/chromium/net/http/ |
http_response_headers_unittest.cc | 10 #include "net/http/http_response_headers.h" 72 "HTTP/1.1 202 Accepted \n" 77 "HTTP/1.1 202 Accepted\n" 92 "HTTP/1.1 202 Accepted \n" 98 "HTTP/1.1 202 Accepted\n" 110 "HTTP/1.1 200 OK\n" 117 "HTTP/1.1 200 OK\n" 131 // Don't believe the http/0.9 version if there are headers! 133 "hTtP/0.9 201\n" 136 "HTTP/1.0 201 OK\n [all...] |
/external/chromium_org/chrome/browser/search_engines/ |
template_url_unittest.cc | 86 { "http://foo{searchTerms}", ASCIIToUTF16("sea rch/bar"), 87 "http://foosea%20rch/bar" }, 88 { "http://foo{searchTerms}?boo=abc", ASCIIToUTF16("sea rch/bar"), 89 "http://foosea%20rch/bar?boo=abc" }, 90 { "http://foo/?boo={searchTerms}", ASCIIToUTF16("sea rch/bar"), 91 "http://foo/?boo=sea+rch%2Fbar" }, 92 { "http://en.wikipedia.org/{searchTerms}", ASCIIToUTF16("wiki/?"), 93 "http://en.wikipedia.org/wiki/%3F" } 111 data.SetURL("http://foo{searchTerms}{count?}"); 118 EXPECT_EQ("http://foox/", result.spec()) [all...] |
/packages/apps/Browser/res/values/ |
all_search_engines.xml | 8 http://www.apache.org/licenses/LICENSE-2.0 35 http://www.opensearch.org/Specifications/OpenSearch/1.1/Draft_4#OpenSearch_1.1_parameters 42 <item>http://uk.search.yahoo.com/favicon.ico</item> 43 <item>http://uk.search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}</item> 45 <item>http://uk-sayt.ff.search.yahoo.com/gossip-uk-sayt?output=fxjson&command={searchTerms}</item> 50 <item>http://search.yahoo.co.jp/favicon.ico</item> 51 <item>http://search.yahoo.co.jp/search?ei={inputEncoding}&fr=crmas&p={searchTerms}</item> 58 <item>http://www.rambler.ru/favicon.ico</item> 59 <item>http://www.rambler.ru/srch?words={searchTerms}</item> 66 <item>http://br.search.yahoo.com/favicon.ico</item [all...] |
/external/chromium_org/extensions/common/ |
user_script_unittest.cc | 25 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com"))); 26 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com/foo"))); 29 EXPECT_TRUE(script.MatchesURL(GURL("http://woo.mail.google.com/foo"))); 30 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.yahoo.com/bar"))); 31 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.msn.com/baz"))); 32 EXPECT_FALSE(script.MatchesURL(GURL("http://www.hotmail.com"))); 35 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com"))); 36 EXPECT_FALSE(script.MatchesURL(GURL("http://mail.google.com/foo"))); 43 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com"))); 44 EXPECT_TRUE(script.MatchesURL(GURL("http://mail.google.com/"))) [all...] |
/external/chromium_org/net/android/javatests/src/org/chromium/net/ |
AndroidProxySelectorTest.java | 45 // java.net.Proxy only knows about http and socks proxies. 48 case HTTP: return "PROXY " + proxy.address().toString(); 83 checkMapping("http://example.com/", "DIRECT"); 88 * Test http.proxyHost and http.proxyPort works. 95 System.setProperty("http.proxyHost", "httpproxy.com"); 96 System.setProperty("http.proxyPort", "8080"); 98 checkMapping("http://example.com/", "PROXY httpproxy.com:8080"); 110 System.setProperty("http.proxyHost", "httpproxy.com"); 112 checkMapping("http://example.com/", "PROXY httpproxy.com:80") [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/build/ |
license.txt | 4 http://www.antlr.org/license.html 9 http://developer.yahoo.net/yui/license.txt
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/ |
NOTICE | 4 Copyright (c) 2008 Jacob Seidelin, jseidelin@nihilogic.dk, http://blog.nihilogic.dk/ 5 MIT License [http://www.nihilogic.dk/licenses/mit-license.txt]
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/maps_app/ |
manifest.json | 7 "http://maps.google.com/" 10 "web_url": "http://maps.google.com/"
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news_i18n/ |
manifest.json | 13 "http://news.google.com/*", 14 "http://news.google.es/*"
|