/external/skqp/src/sksl/lex/ |
D | NFA.cpp | 16 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/skia/src/sksl/lex/ |
D | NFA.cpp | 16 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/ |
D | SkSLSPIRVCodeGenerator.cpp | 373 SpvId SPIRVCodeGenerator::nextId() { in nextId() function in SkSL::SPIRVCodeGenerator 470 SpvId result = this->nextId(); in getType() 523 image = this->nextId(); in getType() 571 SpvId result = this->nextId(); in getFunctionType() 627 SpvId result = this->nextId(); in getPointerType() 692 SpvId result = this->nextId(); in writeIntrinsicCall() 712 SpvId result = this->nextId(); in writeIntrinsicCall() 758 SpvId vector = this->nextId(); in vectorize() 798 SpvId result = this->nextId(); in writeSpecialIntrinsic() 986 tmpVar = this->nextId(); in writeFunctionCall() [all …]
|
/external/skia/src/sksl/codegen/ |
D | SkSLSPIRVCodeGenerator.cpp | 250 this->writeLabel(this->nextId(nullptr), out); in writeOpCode() 399 SpvId SPIRVCodeGenerator::nextId(const Type* type) { in nextId() function in SkSL::SPIRVCodeGenerator 400 return this->nextId(type && type->hasPrecision() && !type->highPrecision() in nextId() 405 SpvId SPIRVCodeGenerator::nextId(Precision precision) { in nextId() function in SkSL::SPIRVCodeGenerator 524 SpvId result = this->nextId(nullptr); in getType() 563 return this->nextId(nullptr); in getType() 646 SpvId result = this->nextId(nullptr); in getFunctionType() 702 SpvId result = this->nextId(nullptr); in getPointerType() 787 SpvId result = this->nextId(&c.type()); in writeIntrinsicCall() 812 SpvId result = this->nextId(&c.type()); in writeIntrinsicCall() [all …]
|
/external/guice/core/test/com/google/inject/ |
D | BinderTestSuite.java | 451 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 …]
|
D | CircularDependencyTest.java | 40 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/ |
D | ShadowDisplayManagerGlobal.java | 99 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()
|
D | ShadowRegion.java | 11 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/ |
D | NativeObjRegistry.java | 25 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/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/ |
D | MethodProbesAdapter.java | 91 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()
|
D | IProbeIdGenerator.java | 24 int nextId(); in nextId() method
|
D | ClassProbesAdapter.java | 103 public int nextId() {
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/ |
D | TestObjectIdWithUnwrapping1298.java | 16 private static Long nextId = 1L; field in TestObjectIdWithUnwrapping1298 30 public Parent() { this.id = nextId++;} in Parent() 42 this.id = TestObjectIdWithUnwrapping1298.nextId++; in Child()
|
/external/perfetto/ui/src/common/ |
D | actions.ts | 86 const nextId = state.nextId; constant 97 state.nextId = nextId; 130 const id = `${state.nextId++}`; 141 const id = `${state.nextId++}`; 152 const id = `${state.nextId++}`; 163 const id = `${state.nextId++}`; 196 const id = track.id === undefined ? `${state.nextId++}` : track.id; 211 const id = args.id !== undefined ? args.id : `${state.nextId++}`; 248 const trackId = `${state.nextId++}`; 427 requestId: `${state.nextId++}`, [all …]
|
D | state_unittest.ts | 24 expect(state.nextId).toEqual(0);
|
D | actions_unittest.ts | 268 state.nextId = 100; 277 expect(after.nextId).toBe(101); 327 state.nextId = 100;
|
D | state.ts | 274 nextId: number; property 783 nextId: 0,
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | ExpiresParser.java | 72 String nextId = lexer.getNextId(); in parse() local 75 int delta = Integer.parseInt(nextId); in parse()
|
/external/vogar/src/vogar/util/ |
D | Threads.java | 34 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/ |
D | MinSEParser.java | 47 String nextId = lexer.getNextId(); in parse() local 49 int delta = Integer.parseInt(nextId); in parse()
|
D | SessionExpiresParser.java | 43 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/ |
D | ClassProbesAdapterTest.java | 78 assertEquals(0, adapter.nextId()); in testProbeCounter() 79 assertEquals(1, adapter.nextId()); in testProbeCounter() 80 assertEquals(2, adapter.nextId()); in testProbeCounter()
|
/external/swiftshader/src/Vulkan/ |
D | VkTimelineSemaphore.cpp | 91 std::atomic<int> TimelineSemaphore::Shared::nextId; member in vk::TimelineSemaphore::Shared 96 , id(nextId++) in Shared()
|
D | VkTimelineSemaphore.hpp | 97 static std::atomic<int> nextId; member
|
/external/llvm-project/lld/COFF/ |
D | ICF.cpp | 250 uint32_t nextId = 1; in run() local 256 sc->eqClass[0] = nextId++; in run() 265 sc->eqClass[0] = nextId++; in run()
|