/external/webrtc/webrtc/base/ |
httpcommon_unittest.cc | 23 TEST(Url, DecomposesUrls) { 24 Url<char> url(TEST_URL); 25 EXPECT_TRUE(url.valid()); 26 EXPECT_FALSE(url.secure()); 27 EXPECT_STREQ(TEST_HOST, url.host().c_str()); 28 EXPECT_EQ(80, url.port()); 29 EXPECT_STREQ(TEST_PATH, url.path().c_str()); 30 EXPECT_STREQ(TEST_QUERY, url.query().c_str()); 31 EXPECT_STREQ(TEST_HOST, url.address().c_str()) [all...] |
httpcommon-inl.h | 21 // Url 25 void Url<CTYPE>::do_set_url(const CTYPE* val, size_t len) { 46 void Url<CTYPE>::do_set_address(const CTYPE* val, size_t len) { 65 void Url<CTYPE>::do_set_full_path(const CTYPE* val, size_t len) { 82 void Url<CTYPE>::do_get_url(string* val) const { 91 void Url<CTYPE>::do_get_address(string* val) const { 102 void Url<CTYPE>::do_get_full_path(string* val) const { 108 bool Url<CTYPE>::get_attribute(const string& name, string* value) const {
|
autodetectproxy_unittest.cc | 50 Url<char> host_url(path, host, port); 52 auto_detect_proxy_->set_server_url(host_url.url());
|
proxydetect.cc | 204 bool ProxyItemMatch(const Url<char>& url, char * item, size_t len) { 208 if (url.port() != atol(port)) { 224 SocketAddress addr(url.host(), 0); 232 size_t hostlen = url.host().length(); 234 && (stricmp(url.host().c_str() + (hostlen - len), item) == 0); 238 if (!string_match(url.host().c_str(), item)) 244 bool ProxyListMatch(const Url<char>& url, const std::string& proxy_list, 273 if (!ProxyItemMatch(url, buffer, len) [all...] |
httpcommon.h | 194 // Url 198 class Url { 208 Url(const string& url) { do_set_url(url.c_str(), url.size()); } 209 Url(const string& path, const string& host, uint16_t port = HTTP_DEFAULT_PORT) 226 string url() const { function in class:rtc::Url
|
sslsocketfactory.cc | 46 Url<char> url("/", remote_.HostAsURIString(), remote_.port()); 48 detect_->set_server_url(url.url());
|
autodetectproxy.cc | 36 const char* url, 38 return GetProxySettingsForUrl(agent, url, proxy, true); 54 Url<char> url(proxy_.address.HostAsURIString()); 55 if (url.valid()) { 57 proxy_.address.SetIP(url.host());
|
httpclient.cc | 181 std::string id, url; local 184 request.getAbsoluteUri(&url); 185 id.append(url); 373 std::string url; local 374 if (request().getAbsoluteUri(&url)) { 375 request().path = url; 416 void HttpClient::prepare_get(const std::string& url) { 418 Url<char> purl(url); 424 void HttpClient::prepare_post(const std::string& url, [all...] |
httpcommon.cc | 554 Url<char> url(path); 555 if (url.valid()) { 562 url.set_address(host); 563 url.set_full_path(path); 564 uri->assign(url.url()); 565 return url.valid(); 573 Url<char> url(this->path) [all...] |
/external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/ |
base_encoder_test.py | 78 """Check that Img() and Url() return the same URL.""" 79 self.assertIn(self.chart.display.Url(500, 100, use_html_entities=True), 110 """Check that empty parameters don't end up in the URL.""" 112 self.assertNotIn('chxt', self.chart.display.Url(0, 0)) 115 self.assertIn('89x102', self.chart.display.Url(89, 102)) 126 url = self.chart.display.Url(100.1, 200.2) 127 self.assertIn('100x200', url) 134 assertStartsWith(self.chart.display.Url(0, 0) [all...] |
encoders.py | 32 For example, 'cht':'lti' becomes ?cht=lti in the URL. 39 escape_url: If True, URL will be properly escaped. If False, characters 40 like | and , will be unescapped (which makes the URL easier to 50 self.escape_url = True # You can turn off URL escaping for debugging. 51 self._width = 0 # These are set when someone calls Url() 54 def Url(self, width, height, use_html_entities=False): 55 """Get the URL for our graph. 59 URL are replaced with HTML entities (&, <, etc.). Default is False. 69 url = self.Url(width, height, use_html_entities=True [all...] |
pie_chart_test.py | 104 self.assertRaises(RuntimeWarning, chart.display.Url, 320, 240)
|
/external/libexif/ |
libexif.spec | 6 Url: http://sourceforge.net/projects/libexif/
|
/cts/tests/tests/location/src/android/location/cts/ |
AddressTest.java | 184 String Url = "Url"; 185 address.setUrl(Url); 186 assertEquals(Url, address.getUrl()); 211 "longitude=0.0,phone=null,url=www.google.com,extras=null]";
|
/external/autotest/server/cros/ |
sonic_client_utils.py | 64 class Url(object): 65 """Container for URL information.""" 76 """Returns the URL.""" 90 """Sends a custom request throug pycurl, to the url specified. 92 url = Url() 93 url.netloc = ':'.join((host, str(port))) 94 url.path = app_path 95 full_url = url.Build() 99 conn.setopt(conn.URL, full_url [all...] |
/frameworks/base/location/java/android/location/ |
Address.java | 380 * Returns the public URL for the address if known, 388 * Sets the public URL associated with this address. 390 public void setUrl(String Url) { 391 mUrl = Url; 467 sb.append(",url=");
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/ |
test_connection.py | 57 'stack_name', template_url='http://url', 83 'TemplateURL': 'http://url', 135 'stack_name', template_url='http://url', 168 'TemplateURL': 'http://url', 413 <OutputValue>http://url/</OutputValue> 414 <Description>Server URL</Description> 451 self.assertEqual(stack.outputs[0].description, 'Server URL') 453 self.assertEqual(stack.outputs[0].value, 'http://url/') 605 template_url='http://url') 627 'TemplateURL': 'http://url', [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
agtctl.h | [all...] |
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
model.py | 102 url, 112 url: task url in str. 124 self.url = url 172 url=self.url, 453 # Url to call when mapreduce finishes its execution. 568 chart_url: last computed mapreduce status chart url. This chart displays the 570 sparkline_url: last computed mapreduce status chart url in small format [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/ |
base.js | 599 * @return {?string} Url corresponding to the rule, or null. [all...] |
/external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/ |
mootools-more-yui-compressed.min.js | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.jasper_5.5.17.v201004212143.jar | |
/prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/ |
htmlunit-2.14.jar | |
/external/libgdx/backends/gdx-backends-gwt/libs/ |
gwt-dev.jar | |
/external/robolectric/v1/lib/main/ |
android.jar | |