/external/fdlibm/ |
s_modf.c | 16 * return fraction part of x, and return x's integral part in *iptr. 44 if(j0<20) { /* integer part in high x */ 62 } else if (j0>51) { /* no fraction part */ 67 } else { /* fraction part in low x */
|
/external/qemu/android/skin/ |
file.h | 52 #define SKIN_PART_LOOP_BUTTONS(part,button) \ 54 SkinButton* __button = (part)->buttons; \ 65 SkinPart* part; member in struct:SkinLocation 119 #define SKIN_FILE_LOOP_PARTS(file,part) \ 124 SkinPart* part = __part;
|
/external/tcpdump/ |
rpc_auth.h | 5 * media and as a part of the software program in whole or part. Users 7 * to license or distribute it to anyone else except as part of a product or 15 * part of Sun Microsystems, Inc. to assist in its use, correction, 20 * OR ANY PART THEREOF.
|
rpc_msg.h | 5 * media and as a part of the software program in whole or part. Users 7 * to license or distribute it to anyone else except as part of a product or 15 * part of Sun Microsystems, Inc. to assist in its use, correction, 20 * OR ANY PART THEREOF. 75 * Reply part of an rpc exchange
|
/frameworks/base/core/java/com/android/internal/http/multipart/ |
FilePart.java | 43 * This class implements a part of a Multipart post object that 78 /** Source of the file part. */ 84 * @param name the name for this part 85 * @param partSource the source for this part 86 * @param contentType the content type for this part, if <code>null</code> the 88 * @param charset the charset encoding for this part, if <code>null</code> the 109 * @param name the name for this part 110 * @param partSource the source for this part 119 * @param name the name of the file part 133 * @param name the name of the file part [all...] |
PartBase.java | 35 * Provides setters and getters for the basic Part properties. 39 public abstract class PartBase extends Part { 41 /** Name of the file part. */ 44 /** Content type of the file part. */ 47 /** Content encoding of the file part. */ 56 * @param name The name of the part 75 * @see Part#getName() 83 * Returns the content type of this part. 92 * Return the character encoding of this part. 101 * Returns the transfer encoding of this part [all...] |
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...] |
/packages/apps/Email/src/com/android/email/mail/internet/ |
EmailHtmlUtil.java | 21 import com.android.email.mail.Part; 47 * @param part mime part which may contain inline image 51 ContentResolver resolver, long accountId, String text, Part part, int depth) 57 String contentType = MimeUtility.unfoldAndDecode(part.getContentType()); 58 String contentId = part.getContentId(); 61 part instanceof LocalAttachmentBodyPart) { 62 LocalAttachmentBodyPart attachment = (LocalAttachmentBodyPart)part; 73 if (part.getBody() instanceof Multipart) [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/field/address/ |
Mailbox.java | 36 * @param localPart The part of the e-mail address to the left of the "@".
37 * @param domain The part of the e-mail address to the right of the "@".
46 * @param localPart The part of the e-mail address to the left of the "@".
47 * @param domain The part of the e-mail address to the right of the "@".
63 * Returns the left part of the e-mail address
71 * Returns the right part of the e-mail address
100 * which is not valid for transport; the local part
|
/frameworks/base/tools/aapt/ |
AaptAssets.cpp | 112 AaptGroupEntry::parseNamePart(const String8& part, int* axis, uint32_t* value) 117 if (getMccName(part.string(), &config)) { 124 if (getMncName(part.string(), &config)) { 131 if (part.length() == 2 && isalpha(part[0]) && isalpha(part[1])) { 133 *value = part[1] << 8 | part[0]; 138 if (part.length() == 5 && isalpha(part[0]) && isalpha(part[1] 264 String8 part = parts[index]; local [all...] |
/hardware/qcom/gps/loc_api/libloc_api/ |
loc_eng_xtra.cpp | 118 uint8 part; local 139 // XTRA injection starts with part 1 140 for (part = 1; part <= total_parts; part++) 142 predicted_orbits_data_ptr->part = part; 151 LOGV ("qct_loc_eng_inject_xtra_data, inject part = %d, len = %d, len = %d\n", predicted_orbits_data_ptr->part, predicted_orbits_data_ptr->part_len, predicted_orbits_data_ptr->data_ptr.data_ptr_len); 152 LOGV ("qct_loc_eng_inject_xtra_data, total part = %d, len = %d \n", predicted_orbits_data_ptr->part, predicted_orbits_data_ptr->part_len) [all...] |
/dalvik/libcore/luni/src/main/java/java/util/ |
DualPivotQuicksort.java | 166 int less = left + 1; // The index of first element of center part 167 int great = right - 1; // The index before first element of right part 175 * left part center part right part 189 * Pointer k is the first index of ?-part 194 if (ak < pivot1) { // Move a[k] to left part 200 } else if (ak > pivot2) { // Move a[k] to right part 221 * left part center part right par [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestEditorContributor.java | 24 import org.eclipse.ui.part.MultiPageEditorActionBarContributor; 66 public void setActivePage(IEditorPart part) { 67 if (mActiveEditorPart == part) 70 mActiveEditorPart = part; 76 (part instanceof ITextEditor) ? (ITextEditor)part : null;
|
/external/quake/src/com/android/quake/ |
DownloaderActivity.java | 318 this.mParts.add(new Part(src, md5, size)); 322 static class Part { 323 Part(String src, String md5, long size) { 332 ArrayList<Part> mParts = new ArrayList<Part>(); 336 for(Part part : mParts) { 337 if (part.size > 0) { 338 result += part.size; 352 * <part src="http:..." / [all...] |
/external/bluetooth/glib/docs/reference/ |
COPYING | 1 This work may be reproduced and distributed in whole or in part, in 5 redistribute, in whole or in part, under terms more restrictive than 9 without charge. However, mere aggregation as part of a larger work
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsDatabaseHelper.java | 37 import android.provider.Telephony.Mms.Part; 149 // When a part is inserted, if it is not text/plain or application/smil 154 " AFTER INSERT ON part " + 158 " (SELECT pdu.thread_id FROM part JOIN pdu ON pdu._id=part.mid " + 159 " WHERE part._id=new._id LIMIT 1); " + 162 // When the 'mid' column in the part table is updated, we need to run the trigger to update 163 // the threads table's has_attachment column, if the part is an attachment. 166 " AFTER UPDATE of " + Part.MSG_ID + " ON part " [all...] |
/development/pdk/doxygen_config/docsfiles/ |
main.dox | 2 * <p>This documentation is part of Google's Client Location Library (CLL) Getting Started Guide.</p>
|
/external/clearsilver/man/man3/ |
cgiwrap_read.3 | 32 wraps the part of fread(stdin).
|
/external/e2fsprogs/lib/ext2fs/ |
getsize.c | 156 int part; 227 part = strlen(file) - 1; 228 if (part >= 0) { 229 ch = file[part]; 231 part = 0; 233 part = ch - 'a'; 235 part = -1; 237 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) { 238 pp = &lab.d_partitions[part];
|
/external/freetype/include/freetype/internal/services/ |
svkern.h | 10 /* This file is part of the FreeType project, and may only be used, */
|
svtteng.h | 10 /* This file is part of the FreeType project, and may only be used, */
|
svwinfnt.h | 10 /* This file is part of the FreeType project, and may only be used, */
|
/external/freetype/src/autofit/ |
aferrors.h | 10 /* This file is part of the FreeType project, and may only be used, */
|
afindic.h | 10 /* This file is part of the FreeType project, and may only be used, */
|
aflatin2.h | 10 /* This file is part of the FreeType project, and may only be used, */
|