/frameworks/opt/mms/src/java/com/google/android/mms/pdu/ |
H A D | PduBody.java | 44 private void putPartToMaps(PduPart part) { argument 45 // Put part to mPartMapByContentId. 46 byte[] contentId = part.getContentId(); 48 mPartMapByContentId.put(new String(contentId), part); 51 // Put part to mPartMapByContentLocation. 52 byte[] contentLocation = part.getContentLocation(); 55 mPartMapByContentLocation.put(clc, part); 58 // Put part to mPartMapByName. 59 byte[] name = part.getName(); 62 mPartMapByName.put(clc, part); 80 addPart(PduPart part) argument 96 addPart(int index, PduPart part) argument 138 getPartIndex(PduPart part) argument [all...] |
H A D | PduParser.java | 54 * Specify the part position. 185 // should take only the first part. 842 PduPart part = new PduPart(); 845 // Invalid part. 849 /* parse part's content-type */ 853 part.setContentType(contentType); 855 part.setContentType((PduContentTypes.contentTypes[0]).getBytes()); //"*/*" 861 part.setName(name); 867 part.setCharset(charset); 870 /* parse part' 1590 parsePartHeaders(ByteArrayInputStream pduDataStream, PduPart part, int length) argument 1761 checkPartPosition(PduPart part) argument [all...] |
H A D | PduPersister.java | 81 "content://mms/" + Long.MAX_VALUE + "/part"; 358 Uri.parse("content://mms/" + msgId + "/part"), 366 Log.v(TAG, "loadParts(" + msgId + "): no part to load."); 375 PduPart part = new PduPart(); 379 part.setCharset(charset); 385 part.setContentDisposition(contentDisposition); 391 part.setContentId(contentId); 397 part.setContentLocation(contentLocation); 403 part.setContentType(contentType); 411 part 696 getPartContentType(PduPart part) argument 700 persistPart(PduPart part, long msgId, HashMap<Uri, InputStream> preOpenedFiles) argument 780 persistData(PduPart part, Uri uri, String contentType, HashMap<Uri, InputStream> preOpenedFiles) argument 1085 updatePart(Uri uri, PduPart part, HashMap<Uri, InputStream> preOpenedFiles) argument [all...] |
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
H A D | FwdLockFile.c | 228 unsigned char part = pNonce[i] + (unsigned char)(blockIndex >> (i * CHAR_BIT)); local 229 pCounter[i] = part + carry; 230 carry = (part < pNonce[i] || pCounter[i] < part) ? 1 : 0;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
H A D | h264bsd_reconstruct.c | 92 read at correct position and the predicted part is written to 101 chromaPartWidth width of the predicted part in pixels 102 chromaPartHeight height of the predicted part in pixels 104 predPartChroma pointer where predicted part is written 199 read at correct position and the predicted part is written to 295 image (ref) is read at correct position and the predicted part 484 image (ref) is read at correct position and the predicted part 602 image (ref) is read at correct position and the predicted part 736 image (ref) is read at correct position and the predicted part 859 image (ref) is read at correct position and the predicted part 1968 h264bsdPredictSamples( u8 *data, mv_t *mv, image_t *refPic, u32 colAndRow, u32 part, u8 *pFill) argument [all...] |
/frameworks/base/cmds/bootanimation/ |
H A D | BootAnimation.cpp | 428 Animation::Part part; local 429 part.playUntilComplete = pathType == 'c'; 430 part.count = count; 431 part.pause = pause; 432 part.path = path; 433 animation.parts.add(part); 460 Animation::Part& part(animation.parts.editItemAt(j)); 461 part.frames.add(frame); 498 const Animation::Part& part(animation.parts[i]); 499 const size_t fcount = part [all...] |
/frameworks/opt/vcard/java/com/android/vcard/ |
H A D | VCardBuilder.java | 562 private void buildSinglePartNameField(String property, String part) { argument 565 !VCardUtils.containsOnlyNonCrLfPrintableAscii(part)); 567 encodeQuotedPrintable(part) : 568 escapeCharacters(part); 575 if (shouldAppendCharsetParam(part)) { 1806 * SIP (Session Initiation Protocol) is first supported in RFC 4770 as part of IMPP
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
H A D | omxVCM4P10_MotionEstimationMB.c | 1420 OMX_U32 part, MaxPart; local 1597 /* part size 4, 2, 2 and 1 corresponding to 8x8, 8x16, 16x8 and 16x16 MB */ 1598 for (part = 0; part < MaxPart; part++) 1600 PartStartX = (part % XPerMB) * PartWidth; 1601 PartStartY = (part / XPerMB) * PartHeight;
|
/frameworks/base/core/java/android/net/ |
H A D | Uri.java | 137 * Absolute URIs are hierarchical if the scheme-specific part starts with 144 * scheme-specific part of an opaque URI cannot start with a '/'. 176 * Gets the scheme-specific part of this URI, i.e. everything between the 182 * @return the decoded scheme-specific-part 187 * Gets the scheme-specific part of this URI, i.e. everything between the 194 * @return the decoded scheme-specific-part 199 * Gets the decoded authority part of this URI. For 210 * Gets the encoded authority part of this URI. For 292 * Gets the decoded fragment part of this URI, everything after the '#'. 299 * Gets the encoded fragment part o 2030 nonNull(Part part) argument [all...] |
/frameworks/base/tools/aapt/ |
H A D | AaptAssets.cpp | 153 AaptGroupEntry::parseNamePart(const String8& part, int* axis, uint32_t* value) argument 158 if (getMccName(part.string(), &config)) { 165 if (getMncName(part.string(), &config)) { 172 if (part.length() == 2 && isalpha(part[0]) && isalpha(part[1])) { 174 *value = part[1] << 8 | part[0]; 179 if (part.length() == 5 && isalpha(part[ 395 String8 part = parts[index]; local [all...] |