Searched defs:encoded (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/id3/
H A DID3.cpp108 bool ID3::ParseSyncsafeInteger(const uint8_t encoded[4], size_t *x) { argument
111 if (encoded[i] & 0x80) {
115 *x = ((*x) << 7) | encoded[i];
/frameworks/base/tools/aapt2/
H A DStringPool.cpp358 const std::string& encoded = entry->value; local
365 EncodedLengthUnits<char>(encoded.length()) +
366 encoded.size() + 1;
374 data = EncodeLength(data, encoded.length());
375 strncpy(data, encoded.data(), encoded.size());
378 const std::u16string encoded = util::Utf8ToUtf16(entry->value); local
379 const ssize_t utf16_length = encoded.size();
383 EncodedLengthUnits<char16_t>(utf16_length) + encoded.size() + 1;
389 const size_t byte_length = encoded
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java214 * Gets the encoded authority part of this URI. For
234 * Gets the encoded user information from the authority.
243 * Gets the encoded host from the authority for this URI. For example,
268 * Gets the encoded path.
270 * @return the encoded path, or null if this is not a hierarchical URI
286 * Gets the encoded query component from this URI. The query comes after
291 * @return the encoded query or null if there isn't one
303 * Gets the encoded fragment part of this URI, everything after the '#'.
305 * @return the encoded fragment or null if there isn't one
325 * encoded strin
1956 volatile String encoded; field in class:Uri.AbstractPart
1959 AbstractPart(String encoded, String decoded) argument
2007 Part(String encoded, String decoded) argument
2048 fromEncoded(String encoded) argument
2067 from(String encoded, String decoded) argument
2112 PathPart(String encoded, String decoded) argument
2225 fromEncoded(String encoded) argument
2244 from(String encoded, String decoded) argument
[all...]
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp501 // Return the size of the encoded image data (does not include size of PKM header).
510 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
521 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
553 etc1_encode_block(block, mask, encoded);
554 memcpy(pOut, encoded, sizeof(encoded));
555 pOut += sizeof(encoded);
562 // pIn - pointer to encoded data.
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStaNetworkHal.java2419 * Creates the JSON encoded network extra using the map of string key, value pairs.
2422 final String encoded;
2424 encoded = URLEncoder.encode(new JSONObject(values).toString(), "UTF-8");
2432 return encoded;
2436 * Parse the network extra JSON encoded string to a map of string key, value pairs.
2438 public static Map<String, String> parseNetworkExtra(String encoded) { argument
2439 if (TextUtils.isEmpty(encoded)) {
2447 final JSONObject json = new JSONObject(URLDecoder.decode(encoded, "UTF-8"));
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 235 milliseconds