Searched refs:part (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduBody.java44 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 DPduPersister.java81 "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...]
H A DPduParser.java54 * 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 DPduComposer.java289 * ;must be omitted. The Quote is not part of the contents.
310 * ;must be omitted. The Quote is not part of the contents.
870 PduPart part;
872 part = body.getPart(0);
874 byte[] start = part.getContentId();
886 appendTextString(part.getContentType());
901 part = body.getPart(i);
908 byte[] partContentType = part.getContentType();
928 byte[] name = part.getName();
931 name = part
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp153 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...]
H A DResourceFilter.cpp25 String8 part(p, q-p);
27 if (part == "zz_ZZ") {
32 if (AaptGroupEntry::parseNamePart(part, &axis, &value)) {
/frameworks/base/core/java/com/google/android/util/
H A DSmileyParser.java62 // should have only one part since we parse smiley only
63 Part part = getPart(0);
64 ArrayList<Token> tokens = part.getTokens();
H A DAbstractMessageParser.java48 /** Get the possible values for the last part of a domain name.
121 /** Return the part at the given index. */
242 // The first part inherits the meText of the line.
248 /** Returns the last part in the list. */
402 // tricky part here is that some URL characters are also punctuation, so
1243 for (Part part : parts) {
1247 for (Token token : part.getTokens()) {
1469 /** Adds the given token to this part. */
1481 /** Returns the original text of this part. */
1493 /** Returns the tokens in this part
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp428 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/base/media/mca/filterfw/
H A DAndroid.mk48 # part of a system image.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java127 * Send a multi-part text based SMS.
135 * <code>PendingIntent</code>s (one for each message part) that is
136 * broadcast when the corresponding message part has been sent.
146 * <code>PendingIntent</code>s (one for each message part) that is
147 * broadcast when the corresponding message part has been delivered
158 for (String part : parts) {
160 ", part[" + (i++) + "]=" + part);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java78 /** maps a part string to a parser object */
562 * (2) For each part, find substrings for left/right sides of '=' (name/value).
587 * includes a BYMONTHDAY part.
600 for (String part : parts) {
601 // allow empty part (e.g., double semicolon ";;")
602 if (TextUtils.isEmpty(part)) {
605 int equalIndex = part.indexOf('=');
608 throw new InvalidFormatException("Missing LHS in " + part);
611 String lhs = part.substring(0, equalIndex);
612 String rhs = part
[all...]
/frameworks/base/services/java/com/android/server/display/
H A DOverlayDisplayAdapter.java134 for (String part : value.split(";")) {
135 Matcher matcher = SETTING_PATTERN.matcher(part);
165 } else if (part.isEmpty()) {
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c225 unsigned char part = pNonce[i] + (unsigned char)(blockIndex >> (i * CHAR_BIT)); local
226 pCounter[i] = part + carry;
227 carry = (part < pNonce[i] || pCounter[i] < part) ? 1 : 0;
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk47 # part of a system image.
/frameworks/ex/carousel/
H A DAndroid.mk17 # Note: the source code is in java/, not src/, because this code is also part of
/frameworks/ex/common/
H A DAndroid.mk17 # Note: the source code is in java/, not src/, because this code is also part of
/frameworks/support/v13/
H A DAndroid.mk17 # Note: the source code is in java/, not src/, because this code is also part of
/frameworks/support/v7/
H A DAndroid.mk17 # Note: the source code is in java/, not src/, because this code is also part of
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_reconstruct.h67 u32 part, /* packaged data |partX|partY|partWidth|partHeight|*/
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_MotionEstimationMB.c1420 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/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_mid_hor.s17 ;-- Abstract : ARMv6 optimized version horizontal part of
/frameworks/support/v4/
H A DAndroid.mk17 # Note: the source code is in java/, not src/, because this code is also part of
/frameworks/base/core/java/android/net/
H A DUri.java137 * 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/core/java/android/app/
H A DDownloadManager.java861 for (String part : parts) {
865 builder.append(part);

Completed in 8573 milliseconds

12