HomeSort by relevance Sort by last modified time
    Searched refs:nextId (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
R.java 11 private static int nextId = 1234;
14 public static final int time = nextId++;
15 public static final int title = nextId++;
16 public static final int subtitle = nextId++;
17 public static final int snippet_text = nextId++;
18 public static final int include_id = nextId++;
19 public static final int inner_text = nextId++;
20 public static final int map_view = nextId++;
21 public static final int true_checkbox = nextId++;
22 public static final int false_checkbox = nextId++
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
IProbeIdGenerator.java 24 int nextId();
MethodProbesAdapter.java 86 probesVisitor.visitProbe(idGenerator.nextId());
101 probesVisitor.visitInsnWithProbe(opcode, idGenerator.nextId());
113 idGenerator.nextId(), frame(jumpPopCount(opcode)));
163 LabelInfo.setProbeId(dflt, idGenerator.nextId());
169 LabelInfo.setProbeId(l, idGenerator.nextId());
ClassProbesAdapter.java 103 public int nextId() {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ExpiresParser.java 72 String nextId = lexer.getNextId();
75 int delta = Integer.parseInt(nextId);
  /cts/libs/vogar-expect/src/vogar/util/
Threads.java 33 private int nextId = 0;
35 Thread thread = new Thread(r, name + "-" + (nextId++));
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
MinSEParser.java 47 String nextId = lexer.getNextId();
49 int delta = Integer.parseInt(nextId);
SessionExpiresParser.java 43 String nextId = lexer.getNextId();
46 int delta = Integer.parseInt(nextId);
  /external/vogar/src/vogar/util/
Threads.java 34 private int nextId = 0;
36 Thread thread = new Thread(r, name + "-" + (nextId++));
  /external/skia/src/sksl/
SkSLSPIRVCodeGenerator.cpp     [all...]
  /external/guice/core/test/com/google/inject/
BinderTestSuite.java 399 nextId.set(101);
405 nextId.set(201);
411 nextId.set(201);
417 nextId.set(201);
423 nextId.set(201);
430 nextId.set(201);
438 nextId.set(201);
441 nextId.set(201);
572 nextId.set(-1);
585 nextId.set(-1)
    [all...]
CircularDependencyTest.java 42 AImpl.nextId = 0;
43 BImpl.nextId = 0;
112 assertEquals(1, AImpl.nextId);
113 assertEquals(1, BImpl.nextId);
125 static int nextId;
126 int id = nextId++;
167 static int nextId;
168 int id = nextId++;
  /frameworks/minikin/libs/minikin/
FontLanguageListCache.cpp 124 const uint32_t nextId = inst->mLanguageLists.size();
130 inst->mLanguageListLookupTable.insert(std::make_pair(languages, nextId));
131 return nextId;
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestAuthenticator.java 52 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;
  /frameworks/base/libs/hwui/debug/
NullGlesDriver.cpp 33 static GLuint nextId = 0;
36 buffers[i] = ++nextId;
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerServiceIdRecyclingTest.java 86 int nextId = mUserManagerService.getNextAvailableId();
87 assertEquals(startFrom, nextId);
  /frameworks/base/telecomm/java/android/telecom/Logging/
SessionManager.java 372 Integer nextId = sCodeEntryCounter++;
373 if (nextId >= SESSION_ID_ROLLOVER_THRESHOLD) {
375 nextId = sCodeEntryCounter++;
377 return getBase64Encoding(nextId);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
ClassProbesAdapterTest.java 78 assertEquals(0, adapter.nextId());
79 assertEquals(1, adapter.nextId());
80 assertEquals(2, adapter.nextId());
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.kt 49 private var nextId: Int = 0
201 var labelItem: Item = Item(this, ++nextId, null, View.AUTOFILL_TYPE_NONE, label, false, true)
202 var fieldTextItem: Item = Item(this, ++nextId, hints, View.AUTOFILL_TYPE_TEXT, text, true, sanitized)
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.kt 49 private var nextId: Int = 0
201 var labelItem: Item = Item(this, ++nextId, null, View.AUTOFILL_TYPE_NONE, label, false, true)
202 var fieldTextItem: Item = Item(this, ++nextId, hints, View.AUTOFILL_TYPE_TEXT, text, true, sanitized)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentResolver.java 290 public void setNextDatabaseIdForInserts(int nextId) {
291 nextDatabaseIdForInserts = nextId;
294 public void setNextDatabaseIdForUpdates(int nextId) {
295 nextDatabaseIdForUpdates = nextId;
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
AddWorkspaceItemsTaskTest.java 67 int nextId = setupWorkspaceWithHoles(1, 1, new Rect(2, 2, 3, 3));
70 setupWorkspaceWithHoles(nextId, 2, new Rect(2, 0, 5, 2), new Rect(0, 2, 2, 5));
  /cts/tests/autofillservice/src/android/autofillservice/cts/
VirtualContainerView.java 261 private static int nextId;
274 this.label = new Item(this, ++nextId, labelId, label, false, false);
275 this.text = new Item(this, ++nextId, textId, text, true, true);
  /prebuilts/go/darwin-x86/src/encoding/gob/
type.go 173 var nextId typeId // incremented for each new type we build
194 nextId++
195 typ.setId(nextId)
196 idToType[nextId] = typ
289 if nextId > firstUserId {
290 panic(fmt.Sprintln("nextId too large:", nextId))
292 nextId = firstUserId
633 checkId(expect, nextId)
635 return nextId
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
type.go 173 var nextId typeId // incremented for each new type we build
194 nextId++
195 typ.setId(nextId)
196 idToType[nextId] = typ
289 if nextId > firstUserId {
290 panic(fmt.Sprintln("nextId too large:", nextId))
292 nextId = firstUserId
633 checkId(expect, nextId)
635 return nextId
    [all...]

Completed in 355 milliseconds

1 2 3 4 5 6