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

1 2

  /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;
  /external/chromium_org/ui/base/animation/
multi_animation.h 21 // Defines part of the animation. Each part consists of the following:
23 // time_ms: the time of the part.
24 // start_time_ms: the amount of time to offset this part by when calculating
29 // can adjust the start/end for different effects. For example, to run a part
32 struct Part {
33 Part() : time_ms(0), start_time_ms(0), end_time_ms(0), type(Tween::ZERO) {}
34 Part(int time_ms, Tween::Type type)
46 typedef std::vector<Part> Parts;
59 // determined from the tween type of the current part
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Part.java 22 public interface Part extends Fetchable {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.cc 29 const std::string& Path::Part(size_t index) const {
191 std::string part = path.substr(offs, next - offs); local
192 if (!part.empty()) components.push_back(part);
  /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()
106 Part *p = &tab_[PartIdx(addr)];
185 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/chromium_org/third_party/WebKit/public/platform/
WebFallbackThemeEngine.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.
147 virtual void paint(WebCanvas*, Part, State, const WebRect&, const ExtraParams*) { }
  /external/chromium_org/third_party/WebKit/public/platform/android/
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.
147 virtual void paint(WebCanvas*, Part, State, const WebRect&, const ExtraParams*) { }
  /external/chromium_org/third_party/WebKit/public/platform/default/
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.
147 virtual void paint(WebCanvas*, Part, State, const WebRect&, const ExtraParams*) { }
  /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
194 SDValue Part = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() ?
197 assert(Part.getValueType() == N->getValueType(0) &&
200 GetPairElements(Part, Lo, Hi);
LegalizeIntegerTypes.cpp 673 // Overflow occurred if it occurred in the larger type, or if the high part
674 // of the result does not zero/sign-extend the low part. Check this second
678 // Unsigned overflow occurred if the high part is non-zero.
684 // Signed overflow occurred if the high part does not sign extend the low.
738 SDValue Part = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Parts[i]);
740 Part = DAG.getNode(ISD::SHL, dl, NVT, Part,
743 Res = DAG.getNode(ISD::OR, dl, NVT, Res, Part);
    [all...]
SelectionDAGBuilder.cpp 119 // Assemble the power of 2 part.
145 // Assemble the trailing non-power-of-2 part.
182 // There is now one part, held in Val. Correct it to match ValueVT.
237 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
239 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!");
241 "Part type doesn't match part!");
269 // There is now one part, held in Val. Correct it to match ValueVT.
540 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!");
542 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!")
    [all...]
  /external/chromium_org/ui/native_theme/
native_theme.h 27 // The supported control types are listed in the Part enum. These parts can be
29 // state is part-specific. The supported colors are listed in the ColorId enum.
33 // ExtraParams union. Each part that requires more information has its own
36 // NativeTheme also supports getting the default size of a given part with
40 // The part to be painted / sized.
41 enum Part {
79 // The state of the part.
96 // part.
214 // Return the size of the part.
215 virtual gfx::Size GetPartSize(Part part
    [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 127 public static final Uri EMPTY = new HierarchicalUri(null, Part.NULL,
128 PathPart.EMPTY, Part.NULL, Part.NULL);
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. 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...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 110 // this be part of NativeTheme? Currently the value is duplicated in several
117 typedef ui::MultiAnimation::Part Part;
654 // For this part of the animation, simply show the splash image.
655 parts.push_back(Part(kSplashDisplayDurationMs, ui::Tween::ZERO));
656 // For this part of the animation, fade out the splash image.
657 parts.push_back(Part(kSplashFadeOutDurationMs, ui::Tween::EASE_IN));
658 // For this part of the animation, fade out |this| (fade in the dialog).
659 parts.push_back(Part(kSplashFadeInDialogDurationMs, ui::Tween::EASE_OUT));
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java     [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 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 589 milliseconds

1 2