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

1 2 3 4 5

  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
FetchProfile.java 28 * Part: Indicates that the given Part should be fetched. The provider
74 * @return the first {@link Part} in this collection, or null if it doesn't contain
75 * {@link Part}.
77 public Part getFirstPart() {
79 if (o instanceof Part) {
80 return (Part) o;
BodyPart.java 19 public abstract class BodyPart implements Part {
Multipart.java 22 protected Part mParent;
28 public void addBodyPart(BodyPart part) throws MessagingException {
29 mParts.add(part);
32 public void addBodyPart(BodyPart part, int index) throws MessagingException {
33 mParts.add(index, part);
48 public boolean removeBodyPart(BodyPart part) throws MessagingException {
49 return mParts.remove(part);
56 public Part getParent() throws MessagingException {
60 public void setParent(Part parent) throws MessagingException {
  /external/chromium_org/content/child/
webthemeengine_impl_android.h 15 virtual blink::WebSize getSize(blink::WebThemeEngine::Part);
18 blink::WebThemeEngine::Part part,
webthemeengine_impl_default.h 15 virtual blink::WebSize getSize(blink::WebThemeEngine::Part);
18 blink::WebThemeEngine::Part part,
23 blink::WebThemeEngine::Part part,
webfallbackthemeengine_impl.h 23 virtual blink::WebSize getSize(blink::WebFallbackThemeEngine::Part);
26 blink::WebFallbackThemeEngine::Part part,
  /external/chromium_org/content/shell/renderer/test_runner/
WebTestThemeEngineMock.h 18 virtual blink::WebSize getSize(blink::WebThemeEngine::Part);
21 blink::WebThemeEngine::Part,
  /external/chromium_org/ui/gfx/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...]
multi_animation_unittest.cc 15 parts.push_back(MultiAnimation::Part(100, Tween::LINEAR));
16 parts.push_back(MultiAnimation::Part(100, Tween::EASE_OUT));
23 // Step to 50, which is half way through the first part.
27 // Step to 120, which is 20% through the second part.
33 // Step to 320, which is 20% through the second part.
43 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
65 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
81 parts.push_back(MultiAnimation::Part(200, Tween::LINEAR));
  /external/chromium_org/ui/native_theme/
native_theme_aurawin.h 24 virtual gfx::Size GetPartSize(Part part,
28 Part part,
native_theme_win.h 35 // what kind of part to paint.
67 // for this part, use Win32's GetSysColor to find the color specified
107 virtual gfx::Size GetPartSize(Part part,
111 Part part,
129 Part part,
138 Part part,
    [all...]
native_theme_aurawin.cc 15 bool IsScrollbarPart(NativeTheme::Part part) {
16 switch (part) {
58 Part part,
62 if (IsScrollbarPart(part) &&
64 NativeThemeWin::instance()->Paint(canvas, part, state, rect, extra);
68 NativeThemeAura::Paint(canvas, part, state, rect, extra);
71 gfx::Size NativeThemeAuraWin::GetPartSize(Part part,
    [all...]
native_theme_base.h 27 virtual gfx::Size GetPartSize(Part part,
31 Part part,
37 Part part,
51 Part direction,
57 Part part,
64 Part part
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 130 public static final Uri EMPTY = new HierarchicalUri(null, Part.NULL,
131 PathPart.EMPTY, Part.NULL, Part.NULL);
140 * Absolute URIs are hierarchical if the scheme-specific part starts with
147 * scheme-specific part of an opaque URI cannot start with a '/'.
179 * Gets the scheme-specific part of this URI, i.e.&nbsp;everything between
185 * @return the decoded scheme-specific-part
190 * Gets the scheme-specific part of this URI, i.e.&nbsp;everything between
197 * @return the decoded scheme-specific-part
202 * Gets the decoded authority part of this URI. Fo
    [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...]
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
MimeUtilityTest.java 27 import com.android.emailcommon.mail.Part;
309 // TODO: tests for findFirstPartByMimeType(Part part, String mimeType)
311 /** Tests for findPartByContentId(Part part, String contentId) */
315 final Part cid1bp = MessageTestUtils.bodyPart("image/gif; name=\"im1.gif\"", cid1);
317 final Part cid2bp = MessageTestUtils.bodyPart("image/gif", cid2);
320 final Part cid3bp = MessageTestUtils.bodyPart("image/gif", cid3);
324 final Part cid4bp = MessageTestUtils.bodyPart("image/gif", cid4); // no name attr
326 final Part cid5bp = MessageTestUtils.bodyPart("image/gif", cid5)
    [all...]
  /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);
  /external/chromium_org/ui/views/
native_theme_delegate.h 25 // Get the native theme part that should be drawn.
26 virtual ui::NativeTheme::Part GetThemePart() const = 0;
31 // Get the state of the part, along with any extra data needed for drawing.
  /external/chromium_org/third_party/WebKit/public/platform/
WebFallbackThemeEngine.h 44 // The UI part which is being accessed.
45 enum Part {
69 // The current state of the associated Part.
80 // The bounds of the entire track, as opposed to the part being painted.
143 // Gets the size of the given theme part. For variable sized items
146 virtual WebSize getSize(Part) { return WebSize(); }
147 // Paint the given the given theme part.
148 virtual void paint(WebCanvas*, Part, State, const WebRect&, const ExtraParams*) { }
WebThemeEngine.h 46 // The current state of the associated Part.
87 // The UI part which is being accessed.
88 enum Part {
116 bool isBack; // Whether this is the 'back' part or the 'forward' part.
118 // The bounds of the entire track, as opposed to the part being painted.
183 // Gets the size of the given theme part. For variable sized items
186 virtual WebSize getSize(Part) { return WebSize(); }
187 // Paint the given the given theme part.
188 virtual void paint(WebCanvas*, Part, State, const WebRect&, const ExtraParams*) {
    [all...]
  /external/icu/icu4c/source/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...]
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 39 import com.android.emailcommon.mail.Part;
106 ArrayList<Part> viewables = new ArrayList<Part>();
107 ArrayList<Part> attachments = new ArrayList<Part>();
201 ArrayList<Part> viewables = new ArrayList<Part>();
202 ArrayList<Part> attachments = new ArrayList<Part>();
216 viewables = new ArrayList<Part>();
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
ConversionUtilities.java 22 import com.android.emailcommon.mail.Part;
64 public static BodyFieldData parseBodyFields(ArrayList<Part> viewables)
70 for (Part viewable : viewables) {
83 // write the combined data to the body part
  /external/chromium_org/ui/views/controls/button/
radio_button.h 34 virtual ui::NativeTheme::Part GetThemePart() const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
native_theme_gtk2.h 25 virtual gfx::Size GetPartSize(Part part,
29 Part part,

Completed in 790 milliseconds

1 2 3 4 5