HomeSort by relevance Sort by last modified time
    Searched full:part (Results 1 - 25 of 10770) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/storage/
database-lock-after-reload-expected.txt 2 Test part 2 Complete
  /external/oprofile/libop/
op_parse_event.c 51 fprintf(stderr, "Invalid event part %s\n", str);
66 char * part = next_part(&cp); local
75 if (!part) {
80 parsed_events[i].name = part;
82 part = next_part(&cp);
84 if (!part) {
89 parsed_events[i].count = parse_ulong(part);
90 free(part);
93 part = next_part(&cp);
95 if (part) {
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduBody.java 44 private void putPartToMaps(PduPart part) {
45 // Put part to mPartMapByContentId.
46 byte[] contentId = part.getContentId();
48 mPartMapByContentId.put(new String(contentId), part);
51 // Put part to mPartMapByContentLocation.
52 byte[] contentLocation = part.getContentLocation();
55 mPartMapByContentLocation.put(clc, part);
58 // Put part to mPartMapByName.
59 byte[] name = part.getName();
62 mPartMapByName.put(clc, part);
    [all...]
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_htmltest.html 34 A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing par (…)
    [all...]
  /libcore/support/src/test/java/tests/resources/
hyts_htmltest.html 34 A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing part of a paragraph. A bunch of text representing par (…)
    [all...]
  /external/e2fsprogs/tests/f_badorphan/
expect.1 8 Inodes that were part of a corrupted orphan linked list found. Fix? yes
10 Inode 13 was part of the orphaned inode list. FIXED.
11 Inode 17 was part of the orphaned inode list. FIXED.
14 Inode 19 was part of the orphaned inode list. FIXED.
15 Inode 22 was part of the orphaned inode list. FIXED.
16 Inode 23 was part of the orphaned inode list. FIXED.
17 Inode 24 was part of the orphaned inode list. FIXED.
18 Inode 25 was part of the orphaned inode list. FIXED.
19 Inode 26 was part of the orphaned inode list. FIXED.
20 Inode 27 was part of the orphaned inode list. FIXED
    [all...]
  /external/javassist/src/main/javassist/scopedpool/
package.html 4 It is not part of Javassist.
  /frameworks/base/include/private/
README 3 These include files are part of the private implementation details of
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
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/qemu/android/skin/
file.c 262 /** SKIN PART
266 skin_part_free( SkinPart* part )
268 if (part) {
269 skin_background_done( part->background );
270 skin_display_done( part->display );
272 SKIN_PART_LOOP_BUTTONS(part,button)
275 part->buttons = NULL;
276 AFREE(part);
287 SkinPart* part; local
291 dprint( "### WARNING: ignoring part location without 'name' element" )
316 SkinPart* part; local
367 SkinPart* part; local
565 SkinPart* part; local
645 SkinPart* part = skin_part_create_from_v2( node, basepath ); local
    [all...]
  /external/grub/stage2/
pc_slice.h 47 #define PC_SLICE_FLAG(mbr_ptr, part) \
49 + (part << 4)) ) )
51 #define PC_SLICE_HEAD(mbr_ptr, part) \
53 + (part << 4)) ) )
55 #define PC_SLICE_SEC(mbr_ptr, part) \
57 + (part << 4)) ) )
59 #define PC_SLICE_CYL(mbr_ptr, part) \
61 + (part << 4)) ) )
63 #define PC_SLICE_TYPE(mbr_ptr, part) \
65 + (part << 4)) )
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dosio.c 86 static void lba2chs(unsigned long lba_addr, CHS *chs, PARTITION *part)
91 abss = (lba_addr >> 9) + part->start;
92 chs->cyl = abss / (part->sects * part->heads);
93 chs->head = (abss / part->sects) % part->heads;
94 chs->sector = (abss % part->sects) + 1;
145 static io_channel alloc_io_channel(PARTITION *part)
155 ioch->name = (char *)malloc(strlen(part->dev)+1);
160 strcpy(ioch->name, part->dev)
179 PARTITION *part; local
371 PARTITION *part; local
408 PARTITION *part; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
MediaModelFactory.java 50 PduPart part = findPart(pb, src); local
54 context, tag, src, (SMILRegionMediaElement) sme, layouts, part);
57 context, tag, src, sme, part, null);
62 PduPart part = null; local
67 part = pb.getPartByContentId("<" + src.substring("cid:".length()) + ">");
69 part = pb.getPartByName(src);
70 if (part == null) {
71 part = pb.getPartByFileName(src);
72 if (part == null) {
73 part = pb.getPartByContentLocation(src)
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
IntToString.java 0 /* part of test for array problem */
ExportedProperty.java 0 /* part of test for array problem */
  /external/webkit/LayoutTests/fast/encoding/
bracket-in-tag-expected.txt 2 This test baselines charset sniffer behavior where the opening bracket inside a tag is consumed as part of the tag data, causing the meta tag to be missed.
url-host-name-non-ascii-expected.txt 1 Test for http://bugs.webkit.org/show_bug.cgi?id=17676 REGRESSION (r30240-r30267): href attribute values with non-ASCII characters in the host part do not work.
  /external/valgrind/main/exp-ptrcheck/tests/
pth_create.c 8 // from the core, rather than a syscall (ie. part == Vg_CorePart instead of
9 // part == Vg_CoreSyscall).
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeUtility.java 25 import com.android.emailcommon.mail.Part;
200 for (String part : parts) {
201 if (part.trim().toLowerCase().startsWith(lowerCaseName)) {
202 String[] parameterParts = part.split("=", 2);
217 public static Part findFirstPartByMimeType(Part part, String mimeType)
219 if (part.getBody() instanceof Multipart) {
220 Multipart multipart = (Multipart)part.getBody();
223 Part ret = findFirstPartByMimeType(bodyPart, mimeType)
    [all...]
  /external/chromium/webkit/glue/
webthemeengine_impl_win.h 16 WebKit::WebCanvas*, int part, int state, int classic_state,
19 WebKit::WebCanvas*, int part, int state, int classic_state,
25 WebKit::WebCanvas*, int part, int state, int classic_state,
28 WebKit::WebCanvas*, int part, int state, int classic_state,
31 WebKit::WebCanvas*, int part, int state, int classic_state,
34 WebKit::WebCanvas*, int part, int state, int classic_state,
38 WebKit::WebCanvas*, int part, int state, int classic_state,
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 46 set_state(PART:"combo", "default", 0.0);
47 set_state(PART:"combo_button", "default", 0.0);
48 set_state(PART:"combo_button_icon", "default", 0.0);
50 set_state(PART:"combo", "focused", 0.0);
51 set_state(PART:"combo_button", "focused", 0.0);
53 set_state(PART:"combo", "pressed", 0.0);
54 set_state(PART:"combo_button", "pressed", 0.0);
58 set_state(PART:"combo", "hovered", 0.0);
59 set_state(PART:"combo_button", "hovered", 0.0);
61 set_state(PART:"combo", "pressed", 0.0)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/download/
download_item_cell.h 20 // The button represented by this cell consists of a button part on the left
21 // and a dropdown-menu part on the right. This enum describes which part the
31 // Track which part of the button the mouse is over
56 // Returns if the mouse is over the button part of the cell.
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnPOS.java 20 * The container class of a part of speech.
25 /** The part of speech at left side */
28 /** The part of speech at right side */
39 * @param left The part of speech at left side
40 * @param right The part of speech at right side
  /external/skia/src/animator/
SkDrawPath.cpp 52 for (SkPathPart** part = fParts.begin(); part < fParts.end(); part++)
53 delete *part;
58 SkPathPart* part = (SkPathPart*) child; local
59 *fParts.append() = part;
60 if (part->add())
94 for(SkPathPart** part = fParts.begin(); part < fParts.end(); part++)
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 22 int part[3]; local
25 part[0] = part[1] = part[2] = 0;
34 if (part[i] > INT_MAX/10) return TRY_OTHER;/* number too big */
35 part[i] = part[i]*10+*text++-'0';
45 part[i++] = ATM_ITF_ANY; /* all *_ANY have the same value */
50 part[i++] = ATM_VPI_UNSPEC; /* all *_UNSPEC have the same
58 part[2] = part[1]
    [all...]

Completed in 1293 milliseconds

1 2 3 4 5 6 7 8 91011>>