HomeSort by relevance Sort by last modified time
    Searched defs:Part (Results 1 - 9 of 9) sorted by null

  /packages/apps/Email/src/com/android/email/mail/
Part.java 22 public interface Part extends Fetchable {
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 69 struct Part {
78 Vector<Part> parts;
  /frameworks/base/core/java/com/android/internal/http/multipart/
MultipartEntity.java 57 * a series of parts. Each part is expected to contain a content-disposition
71 * Part[] parts = {
118 protected Part[] parts;
131 public MultipartEntity(Part[] parts, HttpParams params) {
142 public MultipartEntity(Part[] parts) {
153 * this part. The first call to this method will implicitly create a new
190 Part.sendParts(out, parts, getMultipartBoundary());
208 return Part.getLengthOfParts(parts, getMultipartBoundary());
222 Part.sendParts(baos, this.parts, this.multipartBoundary);
Part.java 2 * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/java/org/apache/commons/httpclient/methods/multipart/Part.java,v 1.16 2005/01/14 21:16:40 olegk Exp $
42 * Abstract class for one Part of a multipart post object.
52 public abstract class Part {
55 private static final Log LOG = LogFactory.getLog(Part.class);
138 * Return the name of this part.
144 * Returns the content type of this part.
150 * Return the character encoding of this part.
157 * Return the transfer encoding of this part.
163 * Gets the part boundary to be used.
164 * @return the part boundary as an array of bytes
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 318 this.mParts.add(new Part(src, md5, size));
322 static class Part {
323 Part(String src, String md5, long size) {
332 ArrayList<Part> mParts = new ArrayList<Part>();
336 for(Part part : mParts) {
337 if (part.size > 0) {
338 result += part.size;
352 * <part src="http:..." /
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 122 public static final Uri EMPTY = new HierarchicalUri(null, Part.NULL,
123 PathPart.EMPTY, Part.NULL, Part.NULL);
132 * Absolute URIs are hierarchical if the scheme-specific part starts with
139 * scheme-specific part of an opaque URI cannot start with a '/'.
171 * Gets the scheme-specific part of this URI, i.e. everything between the
177 * @return the decoded scheme-specific-part
182 * Gets the scheme-specific part of this URI, i.e. everything between the
189 * @return the decoded scheme-specific-part
194 * Gets the decoded authority part of this URI. Fo
    [all...]
  /frameworks/base/core/java/android/provider/
Telephony.java     [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 48 /** Get the possible values for the last part of a domain name.
72 private ArrayList<Part> parts;
104 this.parts = new ArrayList<Part>();
121 /** Return the part at the given index. */
122 public final Part getPart(int index) { return parts.get(index); }
125 public final List<Part> getParts() { return parts; }
237 parts.add(new Part());
242 // The first part inherits the meText of the line.
248 /** Returns the last part in the list. */
249 private Part lastPart() { return parts.get(parts.size() - 1);
    [all...]
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 

Completed in 534 milliseconds