/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);
|
/frameworks/base/tools/aapt2/compile/ |
IdAssigner.cpp | 81 uint16_t nextId = 0; 86 nextId == *nextUsedEntryIter) { 87 nextId++; 90 entry->id = 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++));
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/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;
|
/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 | 123 const uint32_t nextId = inst->mLanguageLists.size(); 129 inst->mLanguageListLookupTable.insert(std::make_pair(languages, nextId)); 130 return 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());
|
/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;
|
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 648 final int nextId = view.getNextFocusForwardId(); 649 if (isValidId(nextId)) { 650 mIsConnectedTo.put(nextId, true); 656 final int nextId = view.getNextFocusForwardId(); 657 if (isValidId(nextId) && !mIsConnectedTo.get(view.getId())) {
|
/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...] |
/frameworks/native/libs/ui/ |
GraphicBuffer.cpp | 38 static volatile int32_t nextId = 0; 40 id |= static_cast<uint32_t>(android_atomic_inc(&nextId));
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
Log.java | 700 Integer nextId = sCodeEntryCounter++; 701 if (nextId >= SESSION_ID_ROLLOVER_THRESHOLD) { 703 nextId = sCodeEntryCounter++; 705 return getBase64Encoding(nextId); [all...] |
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/ |
Pixmap.java | 38 static int nextId = 0;
133 id = nextId++;
|
/frameworks/base/libs/hwui/debug/ |
nullgles.cpp | 30 static GLuint nextId = 0; 33 buffers[i] = ++nextId;
|
/frameworks/base/core/java/android/widget/ |
RadialTimePickerView.java | [all...] |
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
MethodAnalyzerTest.java | 51 public int nextId() {
|