HomeSort by relevance Sort by last modified time
    Searched full:part (Results 51 - 75 of 5618) sorted by null

1 23 4 5 6 7 8 91011>>

  /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 62 * The direction from part 0 to 1 is always to-the-right or to-the-bottom. */
64 /** Direction from the anchor part to the drop point. */
66 /** The index of the "anchor" part, i.e. the closest one selected by the drop.
67 * This can be either 0 or 1. The corresponding part can be null. */
87 * the given descriptor as a child of the given parent part.
89 * @param parentPart The parent part.
136 * @param parentPart The parent part, always a layout.
171 * Returns the next UI sibling of this part, i.e. the element which is just after in
172 * the UI/XML order in the same parent. Returns null if there's no such part.
180 private static UiElementEditPart getNextUiSibling(UiElementEditPart part) {
434 UiElementEditPart part = highlightInfo.childParts[0]; local
452 UiElementEditPart part = highlightInfo.childParts[0]; local
614 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 */
  /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;
46 * @param part mime part which may contain inline image
50 ContentResolver resolver, long accountId, String text, Part part, int depth)
56 String contentType = MimeUtility.unfoldAndDecode(part.getContentType());
57 String contentId = part.getContentId();
60 part instanceof LocalAttachmentBodyPart) {
61 LocalAttachmentBodyPart attachment = (LocalAttachmentBodyPart)part;
72 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 117 uint8 part; local
138 // XTRA injection starts with part 1
139 for (part = 1; part <= total_parts; part++)
141 predicted_orbits_data_ptr->part = part;
150 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);
151 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...]
  /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...]
  /libcore/dalvik/src/main/java/dalvik/system/
TouchDex.java 99 for (String part: parts) {
100 File f = new File(part);
103 outPath.append(part);
109 System.err.println("I/O error with directory: " + part);
114 outPath.append(part);
120 System.err.println("File not found: " + part);
  /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...]

Completed in 528 milliseconds

1 23 4 5 6 7 8 91011>>