Home | History | Annotate | Download | only in app

Lines Matching defs:MAIN

68      * Definition of the contract for the main table of our provider.
78 public static final String TABLE_NAME = "main";
83 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
90 = Uri.parse("content://" + AUTHORITY + "/main/");
173 // The incoming URI matches the main table URI pattern
174 private static final int MAIN = 1;
175 // The incoming URI matches the main table row ID URI pattern
187 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
219 case MAIN:
220 // If the incoming URI is for main table.
256 case MAIN:
270 if (mUriMatcher.match(uri) != MAIN) {
271 // Can only insert into to main URI.
312 case MAIN:
313 // If URI is main table, delete uses incoming where clause and args.
347 case MAIN:
348 // If URI is main table, update uses incoming where clause and args.