OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebAddress
(Results
1 - 13
of
13
) sorted by null
/frameworks/base/core/tests/coretests/src/android/net/
WebAddressTest.java
19
import android.net.
WebAddress
;
28
WebAddress
webAddress
= new
WebAddress
("http://google.com./b/c/g");
29
assertEquals("google.com.",
webAddress
.getHost());
30
assertEquals("/b/c/g",
webAddress
.getPath());
36
WebAddress
webAddress
= new
WebAddress
("http://www.myspace.com?si=1");
37
assertEquals("www.myspace.com",
webAddress
.getHost())
[
all
...]
/frameworks/base/core/java/android/webkit/
CookieManager.java
20
import android.net.
WebAddress
;
146
* @param uri the
WebAddress
for which the cookies are requested
152
public synchronized String getCookie(
WebAddress
uri) {
URLUtil.java
26
import android.net.
WebAddress
;
51
WebAddress
webAddress
;
70
webAddress
= new
WebAddress
(inUrl);
80
if (
webAddress
.getHost().indexOf('.') == -1) {
82
webAddress
.setHost("www." +
webAddress
.getHost() + ".com");
84
return
webAddress
.toString();
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
WebAddress.java
26
* Below is a partial copy of {@link android.net.
WebAddress
}. The original author doesn't
31
* This is called
WebAddress
, rather than URL or URI, because it
42
public class
WebAddress
{
65
public
WebAddress
(String address) throws ParseException {
70
// android.util.Log.d(LOGTAG, "
WebAddress
: " + address);
DataAction.java
45
import com.android.contacts.quickcontact.
WebAddress
.ParseException;
173
final
WebAddress
webAddress
= new
WebAddress
(url);
174
mIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(
webAddress
.toString()));
QuickContactActivity.java
167
import com.android.contacts.quickcontact.
WebAddress
.ParseException;
[
all
...]
/external/apache-http/android/src/android/net/compatibility/
WebAddress.java
28
* This is called
WebAddress
, rather than URL or URI, because it
39
public class
WebAddress
{
62
public
WebAddress
(String address) throws IllegalArgumentException {
67
// android.util.Log.d(LOGTAG, "
WebAddress
: " + address);
/frameworks/base/core/java/android/net/
WebAddress.java
32
* This is called
WebAddress
, rather than URL or URI, because it
43
// TODO(igsolla): remove
WebAddress
from the system SDK once the WebView apk does not
46
public class
WebAddress
{
69
public
WebAddress
(String address) throws ParseException {
74
// android.util.Log.d(LOGTAG, "
WebAddress
: " + address);
/external/apache-http/android/src/android/net/http/
RequestHandle.java
19
import android.net.compatibility.
WebAddress
;
39
private
WebAddress
mUri;
58
public RequestHandle(RequestQueue requestQueue, String url,
WebAddress
uri,
82
public RequestHandle(RequestQueue requestQueue, String url,
WebAddress
uri,
175
mUri = new
WebAddress
(mUrl);
RequestQueue.java
31
import android.net.compatibility.
WebAddress
;
293
WebAddress
uri = new
WebAddress
(url);
310
String url,
WebAddress
uri, String method, Map<String, String> headers,
363
public RequestHandle queueSynchronousRequest(String url,
WebAddress
uri,
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java
49
import android.net.
WebAddress
;
479
WebAddress
webAddress
= new
WebAddress
(entry.data);
481
Uri.parse(
webAddress
.toString()));
/prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 720 milliseconds