Searched refs:nextId (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DParser.java69 private int nextId = NOT_FETCHED; field in class:Parser
450 int id = nextId ();
452 nextId = NOT_FETCHED;
462 id = nextId();
464 nextId = NOT_FETCHED;
532 private int nextId() throws IOException { method in class:Parser
533 if (nextId == NOT_FETCHED) {
534 nextId = read();
536 return nextId;
/packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
H A DTestAuthenticator.java52 final int nextId = prefs.getInt(PREF_KEY_LAST_USER_ID, 0) + 1;
53 prefs.edit().putInt(PREF_KEY_LAST_USER_ID, nextId).apply();
55 return "User-" + nextId;

Completed in 79 milliseconds