/external/iproute2/genl/ |
genl.c | 35 static void *BODY; 70 dlh = BODY; 72 dlh = BODY = dlopen(NULL, RTLD_LAZY);
|
/packages/apps/UnifiedEmail/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/chromium_org/chrome/test/functional/gtalk/ |
jsutils.js | 32 * The body element of the given window. 34 $BODY = function(opt_window) { 35 return (opt_window || window).document.body;
|
/development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/ |
MainActivity.java | 82 SmsQuery.PROJECTION[SmsQuery.ADDRESS], SmsQuery.PROJECTION[SmsQuery.BODY] }; 194 Inbox.BODY, 201 int BODY = 2;
|
/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 | 41 static private final String BODY = "body"; 137 * Retrieve the body line from the parsed mailto URL. 138 * If no body line was specified, then null is return 139 * @return body or null 142 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 | 542 Stmt** Body; 550 : Stmt(CompoundStmtClass), Body(0), LBracLoc(Loc), RBracLoc(Loc) { 556 : Stmt(CompoundStmtClass, Empty), Body(0) { 566 body_iterator body_begin() { return Body; } 567 body_iterator body_end() { return Body + size(); } 568 Stmt *body_back() { return !body_empty() ? Body[size()-1] : 0; } 572 Body[size()-1] = S; 576 const_body_iterator body_begin() const { return Body; } 577 const_body_iterator body_end() const { return Body + size(); } 578 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 | 100 static void *BODY; /* cached dlopen(NULL) handle */ 117 dlh = BODY; 119 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 | 26 public static final String FETCH_FIELD_BODY_PEEK_BARE = "BODY.PEEK"; 29 = String.format(Locale.US, "BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE); 31 "BODY.PEEK[HEADER.FIELDS (date subject from content-type to cc message-id)]"; 37 public static final String BODY = "BODY"; 38 public static final String BODY_BRACKET_HEADER = "BODY[HEADER";
|
/frameworks/opt/telephony/src/java/android/provider/ |
Telephony.java | 205 * The body of the message. 208 public static final String BODY = "body"; 306 * @param body the body of the message 315 Uri uri, String address, String body, String subject, 317 return addMessageToUri(resolver, uri, address, body, subject, 327 * @param body the body of the message 337 Uri uri, String address, String body, String subject [all...] |
/packages/apps/Email/src/com/android/email/provider/ |
EmailProvider.java | 79 import com.android.emailcommon.provider.EmailContent.Body; 262 private static final int BODY = BODY_BASE; 280 array.put(BODY_BASE >> BASE_SHIFT, Body.TABLE_NAME); 308 private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.TABLE_NAME + 310 " from " + Body.TABLE_NAME + " except select " + EmailContent.RECORD_ID + " from " + 313 private static final String DELETE_BODY = "delete from " + Body.TABLE_NAME + 582 // body database is already attached to the email database and any attempt to use the 583 // body database directly will result in a SQLiteException (the database is locked) 630 // Handle lost Body records here, since this cannot be done in a trigger 687 case BODY 2648 Body body = Body.restoreBodyWithMessageId(context, messageId); local [all...] |
/external/emma/lib/ |
emma.jar | |
/prebuilts/sdk/19/ |
android.jar | |
/prebuilts/sdk/current/ |
android.jar | |