HomeSort by relevance Sort by last modified time
    Searched defs:BODY (Results 1 - 18 of 18) sorted by null

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
FetchProfile.java 26 * Message: Indicates that the body of the entire message should be fetched.
27 * Synonymous with FetchProfile.Item.BODY.
56 * capable of this operation it should specifically set the body of the message to null
57 * so that upper levels can detect that a full body download is needed.
70 BODY,
  /external/iproute2/genl/
genl.c 35 static void *BODY;
70 dlh = BODY;
72 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 9 #define BODY 01
26 } body; variable in typeref:struct:bnode
43 tmp = (bodyptr)malloc(sizeof(body));
45 Type(tmp) = BODY;
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 24 public static final Tag BODY = new TagImpl ("BODY");
  /external/iproute2/tc/
tc.c 43 static void *BODY = NULL; /* cached handle dlopen(NULL) */
127 dlh = BODY;
129 dlh = BODY = dlopen(NULL, RTLD_LAZY);
180 dlh = BODY;
182 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /frameworks/base/core/java/android/net/
MailTo.java 40 static private final String BODY = "body";
136 * Retrieve the body line from the parsed mailto URL.
137 * If no body line was specified, then null is return
138 * @return body or null
141 return mHeaders.get(BODY);
  /external/clang/include/clang/AST/
StmtCXX.h 129 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END };
138 Expr *Cond, Expr *Inc, DeclStmt *LoopVar, Stmt *Body,
157 Stmt *getBody() { return SubExprs[BODY]; }
174 const Stmt *getBody() const { return SubExprs[BODY]; }
182 void setBody(Stmt *S) { SubExprs[BODY] = S; }
194 return SubExprs[BODY]->getLocEnd();
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
Stmt.h 549 Stmt** Body;
557 : Stmt(CompoundStmtClass), Body(0), LBracLoc(Loc), RBracLoc(Loc) {
563 : Stmt(CompoundStmtClass, Empty), Body(0) {
573 body_iterator body_begin() { return Body; }
574 body_iterator body_end() { return Body + size(); }
575 Stmt *body_back() { return !body_empty() ? Body[size()-1] : 0; }
579 Body[size()-1] = S;
583 const_body_iterator body_begin() const { return Body; }
584 const_body_iterator body_end() const { return Body + size(); }
585 const Stmt *body_back() const { return !body_empty() ? Body[size()-1] : 0;
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 48 * can get a body or parameters but not both. Calling a getParameter method will
49 * read and close the body (like readBodyAsString), so you can't read it later.
50 * If you read or close the body first, then getParameter can't read it. The
218 ParameterStyle style = (ps == null) ? ParameterStyle.BODY : Enum
267 InputStream body = request.getBodyAsStream(); local
268 if (style == ParameterStyle.BODY && !(isPost && body == null)) {
278 case BODY: {
284 body = new ByteArrayInputStream(form);
300 if (isPost && body == null)
    [all...]
  /frameworks/base/obex/javax/obex/
HeaderSet.java 120 * Represents the OBEX BODY header.
122 * The value of <code>BODY</code> is 0x48 (72).
124 public static final int BODY = 0x48;
127 * Represents the OBEX End of BODY header.
129 * The value of <code>BODY</code> is 0x49 (73).
  /external/iproute2/ip/
iplink.c 94 static void *BODY; /* cached dlopen(NULL) handle */
111 dlh = BODY;
113 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/zlib/src/examples/
gzlog.c 337 #define BODY sizeof(log_gzbody)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapConstants.java 24 public static final String FETCH_FIELD_BODY_PEEK_BARE = "BODY.PEEK";
27 = String.format("BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE);
29 "BODY.PEEK[HEADER.FIELDS (date subject from content-type to cc message-id)]";
35 public static final String BODY = "BODY";
36 public static final String BODY_BRACKET_HEADER = "BODY[HEADER";
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageComposeTests.java 76 private static final String BODY = "This is the body. This is also the body.";
198 * Body = empty (and has cursor)
203 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
240 * Body = empty (and has cursor)
246 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
290 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
322 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
412 * Body = empt
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 130 * The body of the message
133 public static final String BODY = "body";
209 * @param body the body of the message
217 Uri uri, String address, String body, String subject,
219 return addMessageToUri(resolver, uri, address, body, subject,
229 * @param body the body of the message
238 Uri uri, String address, String body, String subject
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 48 import com.android.emailcommon.provider.EmailContent.Body;
216 private static final int BODY = BODY_BASE;
234 Body.TABLE_NAME,
248 null, // Body
263 null, // Body
288 private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.TABLE_NAME +
290 " from " + Body.TABLE_NAME + " except select " + EmailContent.RECORD_ID + " from " +
293 private static final String DELETE_BODY = "delete from " + Body.TABLE_NAME +
347 matcher.addURI(EmailContent.AUTHORITY, "body", BODY);
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 390 milliseconds