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

  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.h 39 * Traditional .got.plt is placed in the front part of GOT (PLTGOT), and
40 * traditional .got is placed in the rear part of GOT (GOT).
80 struct Part {
82 Part() : front(NULL), last_used(NULL) { }
90 Part m_GOTPLT;
91 Part m_GOT;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Part.java 22 public interface Part extends Fetchable {
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 10 // This file is a part of ThreadSanitizer (TSan), a race detector.
33 SyncTab::Part::Part()
105 Part *p = &tab_[PartIdx(addr)];
183 Part *p = &tab_[PartIdx(addr)];
tsan_sync.h 10 // This file is a part of ThreadSanitizer (TSan), a race detector.
74 // 47 lsb is addr, then 14 bits is low part of uid, then 3 zero bits.
104 struct Part {
108 Part();
113 Part tab_[kPartCount];
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 68 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/icu4c/common/unicode/
messagepattern.h 95 * MessagePattern::Part type constants.
105 * There is always a later MSG_LIMIT part.
121 * would be indicated with such a part.
135 * When formatting, replace this part's substring with the
146 * This part is followed by either an ARG_NUMBER or ARG_NAME,
148 * and finally an ARG_LIMIT part.
191 * The part value is the integer value.
198 * The part value is an index into an internal array of numeric values;
211 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts.
224 * The argument has a "simple" type which is provided by the ARG_TYPE part
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 14 // computation in two identical registers of a smaller type. The Lo/Hi part
30 // These routines assume that the Lo/Hi part is stored first in memory on
31 // little/big-endian machines, followed by the Hi/Lo part. This means that
192 SDValue Part = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() ?
195 assert(Part.getValueType() == N->getValueType(0) &&
198 GetPairElements(Part, Lo, Hi);
LegalizeIntegerTypes.cpp 662 // Overflow occurred if it occurred in the larger type, or if the high part
663 // of the result does not zero/sign-extend the low part. Check this second
667 // Unsigned overflow occurred if the high part is non-zero.
673 // Signed overflow occurred if the high part does not sign extend the low.
727 SDValue Part = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[i]);
729 Part = DAG.getNode(ISD::SHL, dl, NVT, Part,
732 Res = DAG.getNode(ISD::OR, dl, NVT, Res, Part);
    [all...]
SelectionDAGBuilder.cpp 118 // Assemble the power of 2 part.
144 // Assemble the trailing non-power-of-2 part.
181 // There is now one part, held in Val. Correct it to match ValueVT.
236 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
238 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
240 "Part type doesn't match part!");
268 // There is now one part, held in Val. Correct it to match ValueVT.
538 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
540 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!")
    [all...]
  /external/webkit/Source/WebKit/chromium/public/linux/
WebThemeEngine.h 44 // The UI part which is being accessed.
45 enum Part {
68 // The current state of the associated Part.
79 // The bounds of the entire track, as opposed to the part being painted.
142 // Gets the size of the given theme part. For variable sized items
145 virtual WebSize getSize(Part) { return WebSize(); }
146 // Paint the given the given theme part.
148 WebCanvas*, Part, State, const WebRect&, const ExtraParams*) {}
  /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...]
  /external/robolectric/src/main/java/android/net/
Uri__FromAndroid.java 118 public static final Uri__FromAndroid EMPTY = new HierarchicalUri(null, Part.NULL,
119 PathPart.EMPTY, Part.NULL, Part.NULL);
128 * Absolute URIs are hierarchical if the scheme-specific part starts with
135 * scheme-specific part of an opaque URI cannot start with a '/'.
167 * Gets the scheme-specific part of this URI, i.e. everything between the
173 * @return the decoded scheme-specific-part
178 * Gets the scheme-specific part of this URI, i.e. everything between the
185 * @return the decoded scheme-specific-part
190 * Gets the decoded authority part of this URI. Fo
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 128 public static final Uri EMPTY = new HierarchicalUri(null, Part.NULL,
129 PathPart.EMPTY, Part.NULL, Part.NULL);
138 * Absolute URIs are hierarchical if the scheme-specific part starts with
145 * scheme-specific part of an opaque URI cannot start with a '/'.
177 * Gets the scheme-specific part of this URI, i.e. everything between the
183 * @return the decoded scheme-specific-part
188 * Gets the scheme-specific part of this URI, i.e. everything between the
195 * @return the decoded scheme-specific-part
200 * Gets the decoded authority part of this URI. Fo
    [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...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 746 * Indicates whether this message has only a text part (can also have a subject) and
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 

Completed in 1350 milliseconds