Home | History | Annotate | Download | only in app

Lines Matching refs:MAIN

71      * Definition of the contract for the main table of our provider.
81 public static final String TABLE_NAME = "main";
86 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
93 = Uri.parse("content://" + AUTHORITY + "/main/");
176 // The incoming URI matches the main table URI pattern
177 private static final int MAIN = 1;
178 // The incoming URI matches the main table row ID URI pattern
190 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
222 case MAIN:
223 // If the incoming URI is for main table.
259 case MAIN:
273 if (mUriMatcher.match(uri) != MAIN) {
274 // Can only insert into to main URI.
315 case MAIN:
316 // If URI is main table, delete uses incoming where clause and args.
350 case MAIN:
351 // If URI is main table, update uses incoming where clause and args.