Home
last modified time | relevance | path

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

12

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

12