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

12

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
H A DR.java11 private static int nextId = 1234; field in class:R
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/
H A DIProbeIdGenerator.java24 int nextId(); method in interface:IProbeIdGenerator
H A DMethodProbesAdapter.java91 probesVisitor.visitProbe(idGenerator.nextId());
106 probesVisitor.visitInsnWithProbe(opcode, idGenerator.nextId());
118 idGenerator.nextId(), frame(jumpPopCount(opcode)));
168 LabelInfo.setProbeId(dflt, idGenerator.nextId());
174 LabelInfo.setProbeId(l, idGenerator.nextId());
H A DClassProbesAdapter.java103 public int nextId() { method in class:ClassProbesAdapter
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowRegion.java10 public static int nextId = 1; field in class:ShadowRegion
14 return nextId++;
H A DShadowDisplayManagerGlobal.java92 int nextId = nextDisplayId++;
93 displayInfos.put(nextId, displayInfo);
94 notifyListeners(nextId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED);
95 return nextId;
116 private void notifyListeners(int nextId, int event) { argument
119 callback.onDisplayEvent(nextId, event);
H A DShadowContentResolver.java683 public void setNextDatabaseIdForInserts(int nextId) { argument
684 nextDatabaseIdForInserts = nextId;
692 * @param nextId the number of rows to return
698 public void setNextDatabaseIdForUpdates(int nextId) { argument
699 nextDatabaseIdForUpdates = nextId;
/external/skia/src/sksl/lex/
H A DNFA.cpp16 for (int nextId : fStates[id].fNext) {
17 if (fStates[nextId].fKind != NFAState::kRemapped_Kind) {
18 next.push_back(nextId);
20 next.insert(next.end(), fStates[nextId].fData.begin(),
21 fStates[nextId].fData.end());
/external/skqp/src/sksl/lex/
H A DNFA.cpp16 for (int nextId : fStates[id].fNext) {
17 if (fStates[nextId].fKind != NFAState::kRemapped_Kind) {
18 next.push_back(nextId);
20 next.insert(next.end(), fStates[nextId].fData.begin(),
21 fStates[nextId].fData.end());
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DExpiresParser.java72 String nextId = lexer.getNextId();
75 int delta = Integer.parseInt(nextId);
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DMinSEParser.java47 String nextId = lexer.getNextId();
49 int delta = Integer.parseInt(nextId);
H A DSessionExpiresParser.java43 String nextId = lexer.getNextId();
46 int delta = Integer.parseInt(nextId);
/external/vogar/src/vogar/util/
H A DThreads.java34 private int nextId = 0;
36 Thread thread = new Thread(r, name + "-" + (nextId++));
/external/skia/src/sksl/
H A DSkSLSPIRVCodeGenerator.cpp368 SpvId SPIRVCodeGenerator::nextId() { function in class:SkSL::SPIRVCodeGenerator
463 SpvId result = this->nextId();
515 image = this->nextId();
563 SpvId result = this->nextId();
619 SpvId result = this->nextId();
684 SpvId result = this->nextId();
700 SpvId result = this->nextId();
742 SpvId vector = this->nextId();
782 SpvId result = this->nextId();
829 SpvId image = this->nextId();
[all...]
H A DSkSLSPIRVCodeGenerator.h105 SpvId nextId();
/external/skqp/src/sksl/
H A DSkSLSPIRVCodeGenerator.cpp368 SpvId SPIRVCodeGenerator::nextId() { function in class:SkSL::SPIRVCodeGenerator
463 SpvId result = this->nextId();
515 image = this->nextId();
563 SpvId result = this->nextId();
619 SpvId result = this->nextId();
684 SpvId result = this->nextId();
700 SpvId result = this->nextId();
742 SpvId vector = this->nextId();
782 SpvId result = this->nextId();
829 SpvId image = this->nextId();
[all...]
H A DSkSLSPIRVCodeGenerator.h105 SpvId nextId();
/external/guice/core/test/com/google/inject/
H A DBinderTestSuite.java399 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
640 static final AtomicInteger nextId = new AtomicInteger(); field in class:BinderTestSuite
[all...]
H A DCircularDependencyTest.java42 AImpl.nextId = 0;
43 BImpl.nextId = 0;
112 assertEquals(1, AImpl.nextId);
113 assertEquals(1, BImpl.nextId);
125 static int nextId; field in class:CircularDependencyTest.AImpl
126 int id = nextId++;
167 static int nextId; field in class:CircularDependencyTest.BImpl
168 int id = nextId++;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
H A DClassProbesAdapterTest.java78 assertEquals(0, adapter.nextId());
79 assertEquals(1, adapter.nextId());
80 assertEquals(2, adapter.nextId());
H A DMethodProbesAdapterTest.java453 public int nextId() { method in class:MethodProbesAdapterTest
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentResolver.java290 public void setNextDatabaseIdForInserts(int nextId) { argument
291 nextDatabaseIdForInserts = nextId;
294 public void setNextDatabaseIdForUpdates(int nextId) { argument
295 nextDatabaseIdForUpdates = nextId;
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSetTest.java222 static int nextId; field in class:ImmutableSortedSetTest.Impl
223 Integer id = nextId++;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
H A DMethodAnalyzerTest.java56 public int nextId() { method in class:MethodAnalyzerTest
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedSetTest.java348 static int nextId; field in class:ImmutableSortedSetTest.Impl
349 Integer id = nextId++;

Completed in 889 milliseconds

12