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

  /external/clang/test/SemaCXX/
if-empty-body.cpp 4 if (a); // expected-warning {{if statement has empty body}}
14 return; // no empty body warning.
17 // Don't warn about an empty body if is expanded from a macro.
19 #define BODY(x)
21 BODY(0);
22 #undef BODY
27 #define BODY(x)
29 BODY(0);
30 #undef BODY
  /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,
155 Stmt *getBody() { return SubExprs[BODY]; }
172 const Stmt *getBody() const { return SubExprs[BODY]; }
180 void setBody(Stmt *S) { SubExprs[BODY] = S; }
191 return SourceRange(ForLoc, 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; }
59 return SourceRange(ForLoc, SubExprs[BODY]->getLocEnd());
76 Stmt *Body;
84 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
89 const Stmt *getCatchBody() const { return Body; }
90 Stmt *getCatchBody() { return Body; }
    [all...]
Stmt.h 452 Stmt** Body;
463 Body = 0;
467 Body = new (C) Stmt*[NumStmts];
468 memcpy(Body, StmtStart, NumStmts * sizeof(*Body));
473 : Stmt(CompoundStmtClass, Empty), Body(0) {
483 body_iterator body_begin() { return Body; }
484 body_iterator body_end() { return Body + size(); }
485 Stmt *body_back() { return !body_empty() ? Body[size()-1] : 0; }
489 Body[size()-1] = S
    [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/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/base/core/java/android/provider/
Telephony.java 133 * The body of the message
136 public static final String BODY = "body";
212 * @param body the body of the message
220 Uri uri, String address, String body, String subject,
222 return addMessageToUri(resolver, uri, address, body, subject,
232 * @param body the body of the message
241 Uri uri, String address, String body, String subject
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 53 import com.android.emailcommon.provider.EmailContent.Body;
171 // Version 6: Adding Body.mIntroText column
224 private static final int BODY = BODY_BASE;
241 Body.TABLE_NAME
255 null // Body
269 null // Body
293 private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.TABLE_NAME +
295 " from " + Body.TABLE_NAME + " except select " + EmailContent.RECORD_ID + " from " +
298 private static final String DELETE_BODY = "delete from " + Body.TABLE_NAME +
371 matcher.addURI(EmailContent.AUTHORITY, "body", BODY)
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 699 milliseconds