/frameworks/base/location/java/com/android/internal/location/ |
D | GpsNetInitiatedHandler.java | 470 String decoded; in decodeGSMPackedString() local 484 decoded = GsmAlphabet.gsm7BitPackedToString(input, 0, lengthSeptets); in decodeGSMPackedString() 487 if (null == decoded) { in decodeGSMPackedString() 489 decoded = ""; in decodeGSMPackedString() 492 return decoded; in decodeGSMPackedString() 497 String decoded = ""; in decodeUTF8String() local 499 decoded = new String(input, "UTF-8"); in decodeUTF8String() 505 return decoded; in decodeUTF8String() 510 String decoded = ""; in decodeUCS2String() local 512 decoded = new String(input, "UTF-16"); in decodeUCS2String() [all …]
|
/frameworks/base/core/java/android/net/ |
D | Uri.java | 1956 volatile String decoded; field in Uri.AbstractPart 1958 AbstractPart(String encoded, String decoded) { in AbstractPart() argument 1960 this.decoded = decoded; in AbstractPart() 1967 boolean hasDecoded = decoded != NOT_CACHED; in getDecoded() 1968 return hasDecoded ? decoded : (decoded = decode(encoded)); in getDecoded() 1976 boolean hasDecoded = decoded != NOT_CACHED; in writeTo() 1981 parcel.writeString(decoded); in writeTo() 1987 parcel.writeString(decoded); in writeTo() 2006 private Part(String encoded, String decoded) { in Part() argument 2007 super(encoded, decoded); in Part() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | GsmSmsTest.java | 374 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, 128, 0, language, 0); in decodeSingle() local 375 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, language, 0); in decodeSingle() 377 assertEquals(sBasicTables[language], decoded); in decodeSingle() 451 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, in testDecodeExtended() local 453 byte[] reEncoded = GsmAlphabet.stringToGsm7BitPacked(decoded, 0, language); in testDecodeExtended() 455 assertEquals(sExtendedTables[language], decoded); in testDecodeExtended() 526 String decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, in testDecodeExtendedFallback() local 529 assertEquals(defaultTable.toString(), decoded); in testDecodeExtendedFallback() local 531 decoded = GsmAlphabet.gsm7BitPackedToString(septets, 0, numSeptets, 0, 1, language); in testDecodeExtendedFallback() 532 assertEquals(turkishTable.toString(), decoded); in testDecodeExtendedFallback() local [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | h264bsd_conceal.c | 160 while (i < pStorage->picSizeInMbs && !pStorage->mb[i].decoded) in h264bsdConceal() 195 mb[j].decoded = 1; in h264bsdConceal() 200 if (!mb[j].decoded) in h264bsdConceal() 203 mb[j].decoded = 1; in h264bsdConceal() 217 mb->decoded = 1; in h264bsdConceal() 231 if (!mb[j].decoded) in h264bsdConceal() 234 mb[j].decoded = 1; in h264bsdConceal() 279 ASSERT(!pMb->decoded); in ConcealMb() 338 if (row && (pMb-width)->decoded) in ConcealMb() 351 if ((row != height - 1) && (pMb+width)->decoded) in ConcealMb() [all …]
|
D | h264bsd_slice_data.c | 133 if (!pSliceHeader->redundantPicCnt && pStorage->mb[currMbAddr].decoded) in h264bsdDecodeSliceData() 195 if (pStorage->mb[currMbAddr].decoded == 1) in h264bsdDecodeSliceData() 339 (pStorage->mb[currMbAddr].decoded) ) in h264bsdMarkSliceCorrupted() 341 pStorage->mb[currMbAddr].decoded--; in h264bsdMarkSliceCorrupted()
|
D | h264bsd_macroblock_layer.h | 179 u32 decoded; member
|
D | h264bsd_storage.c | 475 pStorage->mb[i].decoded = 0; in h264bsdResetStorage() 563 tmp += pStorage->mb[i].decoded ? 1 : 0; in h264bsdIsEndOfPicture()
|
D | h264bsd_macroblock_layer.c | 987 pMb->decoded++; in h264bsdDecodeMacroblock() 1005 if (pMb->decoded > 1) in h264bsdDecodeMacroblock() 1109 if (pMb->decoded > 1) in h264bsdDecodeMacroblock()
|
D | h264bsd_inter_prediction.c | 325 if (pMb->decoded > 1) in h264bsdInterPrediction() 467 if (pMb->decoded > 1) in h264bsdInterPrediction()
|
D | h264bsd_intra_prediction.c | 521 if (pMb->decoded > 1) in h264bsdIntraPrediction()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
D | omxVCM4P2_DecodePadMV_PVOP_s.s | 57 ; * same decoded vector. 58 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded, 65 ; * macroblock which contains four decoded motion vectors
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/ |
D | omxVCM4P2_DecodePadMV_PVOP_s.s | 57 ; * same decoded vector. 58 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded, 65 ; * macroblock which contains four decoded motion vectors
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
D | NetworkDetail.java | 224 CharBuffer decoded = decoder.decode(ByteBuffer.wrap(ssidOctets)); in NetworkDetail() local 225 ssid = decoded.toString(); in NetworkDetail()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiNative.java | 1529 CharBuffer decoded = decoder.decode(ByteBuffer.wrap(bytes)); in readKernelLog() local 1530 return decoded.toString(); in readKernelLog() 1802 CharBuffer decoded = decoder.decode(ByteBuffer.wrap(rawSsid)); in ssidConvert() local 1803 ssid = decoded.toString(); in ssidConvert()
|
/frameworks/base/docs/html/ndk/guides/audio/ |
D | opensl-for-android.jd | 1028 keeping track of decoded buffers; the callback parameter list does not include 1035 <code>SL_PLAYEVENT_HEADATEND</code> event at the end of the stream. After the app has decoded 1043 Determining the format of decoded PCM data via metadata</a>. 1055 unspecified, but may include: dropping the decoded 1134 <h3 id="meta">Determining the format of decoded PCM data via metadata</h3> 1138 However, the metadata keys that indicate the actual format of decoded PCM data are specific to
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
D | load-bitmap.jd | 97 is decoded with an {@link android.graphics.BitmapFactory.Options#inSampleSize} of 4 produces a
|
/frameworks/base/docs/html/training/multiple-threads/ |
D | communicate-ui.jd | 152 the decoded data and the {@link android.view.View} object that will show the data. It receives
|
/frameworks/base/docs/html/training/volley/ |
D | request.jd | 52 calling back with a decoded bitmap. It also provides convenience features like specifying
|
/frameworks/base/docs/html/training/contacts-provider/ |
D | display-contact-badge.jd | 56 for the thumbnail image, you usually use a {@link android.graphics.Bitmap} decoded from the
|
/frameworks/base/docs/html/about/versions/ |
D | android-4.4.jd | 392 … bitmap is a different size---as long as the resulting byte count of the decoded bitmap (available…
|
D | android-4.0-highlights.jd | 929 preview, decoded video, OpenGL game scenes, and more. TextureView can be viewed
|