Home
last modified time | relevance | path

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

12

/external/skia/src/sksl/lex/
DNFA.cpp19 for (int nextId : fStates[id].fNext) { in match() local
20 if (fStates[nextId].fKind != NFAState::kRemapped_Kind) { in match()
21 next.push_back(nextId); in match()
23 next.insert(next.end(), fStates[nextId].fData.begin(), in match()
24 fStates[nextId].fData.end()); in match()
/external/guice/core/test/com/google/inject/
DBinderTestSuite.java451 nextId.set(101); in newInjector()
457 nextId.set(201); in test()
463 nextId.set(201); in test()
469 nextId.set(201); in test()
475 nextId.set(201); in test()
482 nextId.set(201); in test()
490 nextId.set(201); in test()
493 nextId.set(201); in test()
633 nextId.set(-1); in test()
646 nextId.set(-1); in test()
[all …]
DCircularDependencyTest.java40 AImpl.nextId = 0; in setUp()
41 BImpl.nextId = 0; in setUp()
132 assertEquals(1, AImpl.nextId); in assertCircularDependencies()
133 assertEquals(1, BImpl.nextId); in assertCircularDependencies()
146 static int nextId; field in CircularDependencyTest.AImpl
147 int id = nextId++;
198 static int nextId; field in CircularDependencyTest.BImpl
199 int id = nextId++;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowDisplayManagerGlobal.java99 int nextId = nextDisplayId++; in addDisplay() local
100 displayInfos.put(nextId, displayInfo); in addDisplay()
101 notifyListeners(nextId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED); in addDisplay()
102 return nextId; in addDisplay()
123 private void notifyListeners(int nextId, int event) { in notifyListeners() argument
126 callback.onDisplayEvent(nextId, event); in notifyListeners()
DShadowRegion.java11 public static long nextId = 1; field in ShadowRegion
15 return RuntimeEnvironment.castNativePtr(nextId++); in nativeConstructor()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DNativeObjRegistry.java25 private long nextId = INITIAL_ID; field in NativeObjRegistry
56 nativeId = nextId; in getNativeObjectId()
61 nextId++; in getNativeObjectId()
86 nativeId = nextId; in register()
92 nextId++; in register()
156 nextId = INITIAL_ID; in clear()
/external/robolectric/resources/src/main/java/org/robolectric/res/android/
DNativeObjRegistry.java25 private long nextId = INITIAL_ID; field in NativeObjRegistry
56 nativeId = nextId; in getNativeObjectId()
61 nextId++; in getNativeObjectId()
86 nativeId = nextId; in register()
92 nextId++; in register()
174 nextId = INITIAL_ID; in clear()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DMethodProbesAdapter.java92 probesVisitor.visitProbe(idGenerator.nextId()); in visitLabel()
107 probesVisitor.visitInsnWithProbe(opcode, idGenerator.nextId()); in visitInsn()
119 idGenerator.nextId(), frame(jumpPopCount(opcode))); in visitJumpInsn()
169 LabelInfo.setProbeId(dflt, idGenerator.nextId()); in markLabels()
175 LabelInfo.setProbeId(l, idGenerator.nextId()); in markLabels()
DIProbeIdGenerator.java25 int nextId(); in nextId() method
/external/skia/src/sksl/codegen/
DSkSLSPIRVCodeGenerator.cpp433 this->writeLabel(this->nextId(nullptr), kBranchlessBlock, out); in writeOpCode()
631 result = this->nextId(Precision::kDefault); in writeInstruction()
649 result = this->nextId(precision); in writeInstruction()
689 SpvId result = this->nextId(precision); in writeOpLoad()
954 SpvId SPIRVCodeGenerator::nextId(const Type* type) { in nextId() function in SkSL::SPIRVCodeGenerator
955 return this->nextId(type && type->hasPrecision() && !type->highPrecision() in nextId()
960 SpvId SPIRVCodeGenerator::nextId(Precision precision) { in nextId() function in SkSL::SPIRVCodeGenerator
1291 SpvId result = this->nextId(&c.type()); in writeIntrinsicCall()
1314 SpvId result = this->nextId(&c.type()); in writeIntrinsicCall()
1394 SpvId result = this->nextId(nullptr); in writeSpecialIntrinsic()
[all …]
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowDisplayManagerGlobal.java186 int nextId = nextDisplayId++; in addDisplay() local
187 displayInfos.put(nextId, displayInfo); in addDisplay()
188 notifyListeners(nextId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED); in addDisplay()
189 return nextId; in addDisplay()
210 private void notifyListeners(int nextId, int event) { in notifyListeners() argument
213 callback.onDisplayEvent(nextId, event); in notifyListeners()
DShadowRegion.java18 public static long nextId = 1; field in ShadowRegion
40 return RuntimeEnvironment.castNativePtr(nextId++); in nativeConstructor()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/
DTestObjectIdWithUnwrapping1298.java16 private static Long nextId = 1L; field in TestObjectIdWithUnwrapping1298
30 public Parent() { this.id = nextId++;} in Parent()
42 this.id = TestObjectIdWithUnwrapping1298.nextId++; in Child()
/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/skia/src/gpu/graphite/compute/
DComputeStep.cpp19 static std::atomic<int32_t> nextId{0}; in next_id() local
23 return nextId.fetch_add(1, std::memory_order_relaxed); in next_id()
/external/jazzer-api/agent/src/main/java/com/code_intelligence/jazzer/runtime/
DCoverageMap.java77 public static void enlargeIfNeeded(int nextId) { in enlargeIfNeeded() argument
79 while (nextId >= newNumCounters) { in enlargeIfNeeded()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DClassProbesAdapterTest.java79 assertEquals(0, adapter.nextId()); in testProbeCounter()
80 assertEquals(1, adapter.nextId()); in testProbeCounter()
81 assertEquals(2, adapter.nextId()); in testProbeCounter()
/external/swiftshader/src/Vulkan/
DVkTimelineSemaphore.cpp91 std::atomic<int> TimelineSemaphore::Shared::nextId; member in vk::TimelineSemaphore::Shared
96 , id(nextId++) in Shared()
/external/perfetto/ui/src/common/
Dactions.ts98 const nextId = state.nextId; constant
108 state.nextId = nextId;
119 const nextId = String(Number(draft.nextId) + 1); constant
120 draft.nextId = nextId;
121 return nextId;
/external/jazzer-api/agent/src/jmh/java/com/code_intelligence/jazzer/instrumentor/
DDirectByteBuffer2CoverageMap.java24 public static void enlargeIfNeeded(int nextId) { in enlargeIfNeeded() argument
DDirectByteBufferCoverageMap.java24 public static void enlargeIfNeeded(int nextId) { in enlargeIfNeeded() argument
DUnsafeSimpleIncrementCoverageMap.java46 public static void enlargeIfNeeded(int nextId) { in enlargeIfNeeded() argument

12