OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TABLE_NAME
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerProvider.java
41
private static final String
TABLE_NAME
= "tracking";
58
queryBuilder.append(String.format("CREATE TABLE %s (",
TABLE_NAME
));
72
db.execSQL("DROP TABLE IF EXISTS " +
TABLE_NAME
);
88
int result = db.delete(
TABLE_NAME
, selection, selectionArgs);
101
long rowId = db.insert(
TABLE_NAME
, null, values);
115
Cursor cursor = db.query(
TABLE_NAME
, projection, selection,
/packages/apps/Email/src/com/android/email/provider/
EmailProvider.java
147
EmailContent.Account.
TABLE_NAME
,
148
EmailContent.Mailbox.
TABLE_NAME
,
149
EmailContent.Message.
TABLE_NAME
,
150
EmailContent.Attachment.
TABLE_NAME
,
151
EmailContent.HostAuth.
TABLE_NAME
,
154
EmailContent.Body.
TABLE_NAME
164
Message.UPDATED_TABLE_NAME + " select * from " + Message.
TABLE_NAME
+ " where " +
171
Message.DELETED_TABLE_NAME + " select * from " + Message.
TABLE_NAME
+ " where " +
174
private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.
TABLE_NAME
+
176
" from " + Body.
TABLE_NAME
+ " except select " + EmailContent.RECORD_ID + " from "
[
all
...]
EmailContent.java
200
public static final String
TABLE_NAME
= "Body";
436
public static final String
TABLE_NAME
= "Message";
[
all
...]