HomeSort by relevance Sort by last modified time
    Searched full:part (Results 26 - 50 of 4853) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/wx/wxcode/win/
scrollbar_render.cpp 109 int getTSStateForPart(wxScrollbarPart part, wxScrollbarPart focusPart, wxScrollbarPart hoverPart, int flags = 0)
114 else if (part == focusPart)
116 else if (part == hoverPart)
129 int part = 0; local
131 part = SP_TRACKENDHOR;
133 part = SP_TRACKENDVERT;
159 engine->DrawThemeBackground(hTheme, GraphicsHDC(&dc), part, xpState, &r, 0);
163 part = SP_BUTTON;
169 engine->DrawThemeBackground(hTheme, GraphicsHDC(&dc), part, xpState, &buttonRect, 0);
176 engine->DrawThemeBackground(hTheme, GraphicsHDC(&dc), part, xpState, &buttonRect, 0)
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPersister.java 39 import android.provider.Telephony.Mms.Part;
74 "content://mms/" + Long.MAX_VALUE + "/part";
157 Part._ID,
158 Part.CHARSET,
159 Part.CONTENT_DISPOSITION,
160 Part.CONTENT_ID,
161 Part.CONTENT_LOCATION,
162 Part.CONTENT_TYPE,
163 Part.FILENAME,
164 Part.NAME
363 PduPart part = new PduPart(); local
974 PduPart part = body.getPart(i); local
1133 PduPart part = body.getPart(i); local
    [all...]
  /bootable/recovery/
bootloader.c 46 const MtdPartition *part = get_root_mtd_partition(MISC_NAME); local
47 if (part == NULL || mtd_partition_info(part, NULL, NULL, &write_size)) {
52 MtdReadContext *read = mtd_read_partition(part);
77 const MtdPartition *part = get_root_mtd_partition(MISC_NAME); local
78 if (part == NULL || mtd_partition_info(part, NULL, NULL, &write_size)) {
83 MtdReadContext *read = mtd_read_partition(part);
104 MtdWriteContext *write = mtd_write_partition(part);
  /external/gtest/include/gtest/
gtest-test-part.h 42 // The possible outcomes of a test part (i.e. an assertion or an
50 // A copyable object representing the result of a test part (i.e. an
70 // Gets the outcome of the test part.
73 // Gets the name of the source file where the test part took place, or
77 // Gets the line in the source file where the test part took place,
84 // Gets the message associated with the test part.
87 // Returns true iff the test part passed.
90 // Returns true iff the test part failed.
93 // Returns true iff the test part non-fatally failed.
96 // Returns true iff the test part fatally failed
    [all...]
  /external/freetype/src/raster/
ftrend1.h 10 /* This file is part of the FreeType project, and may only be used, */
32 /* this renderer is _NOT_ part of the default modules, you'll need */
  /system/core/rootdir/etc/
vold.fstab 8 ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...>
11 ## part - Partition # (1 based), or 'auto' for first usable partition.
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
SignerWithRecovery.java 11 * part of signature verification.
  /device/htc/common/updater/
log_recovery.c 30 const MtdPartition *part = mtd_find_partition_by_name(CACHE_NAME); local
31 if (part == NULL) {
36 MtdReadContext* read = mtd_read_partition(part);
39 if (mtd_partition_info(part, NULL, &erase_size, NULL) != 0) {
  /external/expat/xmlwf/
xmlmime.h 10 buf contains the body of the header field (the part after "Content-Type:").
  /external/iptables/extensions/
libip6t_eui64.man 1 This module matches the EUI-64 part of a stateless autoconfigured IPv6 address.
  /external/kernel-headers/original/
README.TXT 3 They are mostly covered by the GPLv2 + exception, and thus cannot be distributed as part of the platform itself.
  /external/kernel-headers/original/asm-x86/
ia32_unistd.h 7 * Only add syscalls here where some part of the kernel needs to know
  /external/libxml2/include/libxml/
uri.h 35 char *opaque; /* opaque part */
36 char *authority; /* the authority part */
37 char *server; /* the server part */
38 char *user; /* the user part */
  /external/qemu/distrib/zlib-1.2.3/
inffast.h 7 part of the implementation of the compression library and is
  /external/qemu/tcg/
TODO 9 - Move the slow part of the qemu_ld/st ops after the end of the TB.
  /external/webkit/JavaScriptCore/pcre/
AUTHORS 2 Email local part: ph10
  /external/webkit/WebCore/platform/
Theme.cpp 31 LengthBox Theme::controlBorder(ControlPart part, const Font&, const LengthBox& zoomedBox, float) const
33 switch (part) {
45 LengthBox Theme::controlPadding(ControlPart part, const Font&, const LengthBox& zoomedBox, float) const
47 switch (part) {
  /external/zlib/
inffast.h 7 part of the implementation of the compression library and is
  /frameworks/base/core/java/com/google/android/util/
SmileyParser.java 62 // should have only one part since we parse smiley only
63 Part part = getPart(0); local
64 ArrayList<Token> tokens = part.getTokens();
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnClause.java 31 * @param posTag The part of speech of the clause
45 * @param stem The independent word part of the clause
60 * @param stem The independent word part of the clause
61 * @param fzk The ancillary word part of the clause
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
DropFeedback.java 61 * The direction from part 0 to 1 is always to-the-right or to-the-bottom. */
63 /** Direction from the anchor part to the drop point. */
65 /** The index of the "anchor" part, i.e. the closest one selected by the drop.
66 * This can be either 0 or 1. The corresponding part can be null. */
86 * the given descriptor as a child of the given parent part.
88 * @param parentPart The parent part.
135 * @param parentPart The parent part, always a layout.
170 * Returns the next UI sibling of this part, i.e. the element which is just after in
171 * the UI/XML order in the same parent. Returns null if there's no such part.
179 private static UiElementEditPart getNextUiSibling(UiElementEditPart part) {
421 UiElementEditPart part = highlightInfo.childParts[0]; local
439 UiElementEditPart part = highlightInfo.childParts[0]; local
601 UiElementEditPart part = parts[index]; local
    [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...]
  /external/skia/src/animator/
SkDisplayPost.cpp 54 for (SkData** part = fParts.begin(); part < fParts.end(); part++)
55 delete *part;
60 SkData* part = (SkData*) child; local
61 *fParts.append() = part;
113 //for some reason the last part is id, which i don't want
193 for (SkData** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
SkDrawMatrix.cpp 68 for (SkMatrixPart** part = fParts.begin(); part < fParts.end(); part++)
69 delete *part;
74 SkMatrixPart* part = (SkMatrixPart*) child; local
75 *fParts.append() = part;
76 if (part->add())
144 for (SkMatrixPart** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
  /bionic/libm/src/
s_modf.c 19 * return fraction part of x, and return x's integral part in *iptr.
39 if(j0<20) { /* integer part in high x */
56 } else if (j0>51) { /* no fraction part */
62 } else { /* fraction part in low x */

Completed in 51 milliseconds

12 3 4 5 6 7 8 91011>>