/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...] |
/dalvik/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...] |
/packages/apps/Email/src/com/android/email/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 | 245 /** SKIN PART 249 skin_part_free( SkinPart* part ) 251 if (part) { 252 skin_background_done( part->background ); 253 skin_display_done( part->display ); 255 SKIN_PART_LOOP_BUTTONS(part,button) 258 part->buttons = NULL; 259 AFREE(part); 270 SkinPart* part; local 274 dprint( "### WARNING: ignoring part location without 'name' element" ) 299 SkinPart* part; local 350 SkinPart* part; local 548 SkinPart* part; local 627 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 373 PARTITION *part; local 410 PARTITION *part; local [all...] |
/packages/apps/Mms/src/com/android/mms/model/ |
MediaModelFactory.java | 49 PduPart part = findPart(pb, src); local 53 context, tag, src, (SMILRegionMediaElement) sme, layouts, part); 56 context, tag, src, sme, part, null); 61 PduPart part = null; local 65 part = pb.getPartByContentId("<" + src.substring("cid:".length()) + ">"); 67 part = pb.getPartByName(src); 68 if (part == null) { 69 part = pb.getPartByFileName(src); 70 if (part == null) { 71 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/WebCore/rendering/ |
RenderScrollbar.cpp | 47 RenderScrollbarPart* part = m_parts.get(ScrollbarBGPart); local 48 if (!part) 51 part->layout(); 52 setFrameRect(IntRect(0, 0, part->width(), part->height())); 91 void RenderScrollbar::setHoveredPart(ScrollbarPart part) 93 if (part == m_hoveredPart) 97 m_hoveredPart = part; 106 void RenderScrollbar::setPressedPart(ScrollbarPart part) 109 Scrollbar::setPressedPart(part); 160 RenderScrollbarPart* part = m_parts.get(ScrollbarBGPart); local 286 RenderScrollbarPart* part = m_parts.get(TrackBGPart); local [all...] |
/packages/apps/Email/src/com/android/email/mail/internet/ |
MimeUtility.java | 25 import com.android.email.mail.Part; 196 for (String part : parts) { 197 if (part.trim().toLowerCase().startsWith(lowerCaseName)) { 198 String parameter = part.split("=", 2)[1].trim(); 210 public static Part findFirstPartByMimeType(Part part, String mimeType) 212 if (part.getBody() instanceof Multipart) { 213 Multipart multipart = (Multipart)part.getBody(); 216 Part ret = findFirstPartByMimeType(bodyPart, mimeType) [all...] |
/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...] |
/device/htc/passion-common/ |
vold.fstab | 9 ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...> 12 ## part - Partition # (1 based), or 'auto' for first usable partition.
|
/external/clearsilver/man/man3/ |
hdf_copy.3 | 14 hdf_copy - copy part of an HDF dataset to another 34 part of the same data set
|
/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...] |
/external/jpeg/ |
jversion.h | 5 * This file is part of the Independent JPEG Group's software.
|
/system/extras/tests/bionic/libc/bionic/ |
lib_relocs.c | 1 /* this is part of the test_relocs.c test, which is used to check that
|
/external/webkit/WebKit/chromium/public/win/ |
WebThemeEngine.h | 41 // The part and state parameters correspond to values defined by the 50 WebCanvas*, int part, int state, int classicState, 54 WebCanvas*, int part, int state, int classicState, 62 WebCanvas*, int part, int state, int classicState, 66 WebCanvas*, int part, int state, int classicState, 70 WebCanvas*, int part, int state, int classicState, 74 WebCanvas*, int part, int state, int classicState,
|
/hardware/msm7k/librpc/rpc/ |
pmap_clnt.h | 4 * media and as a part of the software program in whole or part. Users 6 * to license or distribute it to anyone else except as part of a product or 14 * part of Sun Microsystems, Inc. to assist in its use, correction, 19 * OR ANY PART THEREOF.
|
rpc.h | 4 * media and as a part of the software program in whole or part. Users 6 * to license or distribute it to anyone else except as part of a product or 14 * part of Sun Microsystems, Inc. to assist in its use, correction, 19 * OR ANY PART THEREOF.
|
/external/webkit/WebCore/platform/chromium/ |
ScrollbarThemeChromiumWin.cpp | 134 void ScrollbarThemeChromiumWin::paintButton(GraphicsContext* gc, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part) 139 if (part == BackButtonStartPart || part == ForwardButtonStartPart) 147 getThemeArrowState(scrollbar, part), 148 partId | getClassicThemeState(scrollbar, part), 173 int ScrollbarThemeChromiumWin::getThemeState(Scrollbar* scrollbar, ScrollbarPart part) const 179 if (part == ThumbPart) 185 if (scrollbar->hoveredPart() != part || part == BackTrackPart || part == ForwardTrackPart [all...] |