Lines Matching refs:from

69     that some threads will immediately see changes from other threads on
72 overhead, which means the most common case, access from a single thread,
90 For reference, from RFC 2396:
224 * Gets the decoded user information from the authority.
233 * Gets the encoded user information from the authority.
242 * Gets the encoded host from the authority for this URI. For example,
251 * Gets the port from the authority for this URI. For example,
275 * Gets the decoded query component from this URI. The query comes after
285 * Gets the encoded query component from this URI. The query comes after
409 * Constructs a new builder, copying the attributes from this Uri.
441 * Creates a Uri from a file. The URI has the form
801 * Creates an opaque Uri from the given components. Encodes the ssp
1209 * Creates the encoded scheme-specific part from its sub parts.
1739 * <p>All URIs received from outside Android (such as user input,
1765 * Reads Uris from Parcels.
1996 * creates the encoded or decoded version from the other.
2024 return from(parcel.readString(), parcel.readString());
2043 * Creates a part from the encoded string.
2048 return from(encoded, NOT_CACHED);
2052 * Creates a part from the decoded string.
2057 return from(NOT_CACHED, decoded);
2061 * Creates a part from the encoded and decoded strings.
2066 static Part from(String encoded, String decoded) {
2101 * creates the encoded or decoded version from the other.
2150 // This check keeps us from adding a segment if the path starts
2209 return from(parcel.readString(), parcel.readString());
2220 * Creates a path from the encoded string.
2225 return from(encoded, NOT_CACHED);
2229 * Creates a path from the decoded string.
2234 return from(NOT_CACHED, decoded);
2238 * Creates a path from the encoded and decoded strings.
2243 static PathPart from(String encoded, String decoded) {
2306 * usable across user boundaries. Should always be called from the app