/external/dagger2/java/dagger/hilt/processor/internal/ |
D | ComponentGenerator.java | 55 private final ImmutableList<TypeName> entryPoints; field in ComponentGenerator 67 Set<? extends TypeName> entryPoints, in ComponentGenerator() argument 77 this.entryPoints = entryPoints.stream().sorted(TYPE_NAME_SORTER).collect(toImmutableList()); in ComponentGenerator() 123 for (int i = 0; i < entryPoints.size(); i++) { in addEntryPoints() 128 int nextBytes = Utf8.encodedLength(entryPoints.get(i).toString()); in addEntryPoints() 138 partitionIndexes.add(entryPoints.size()); in addEntryPoints() 142 builder.addSuperinterfaces(entryPoints); in addEntryPoints() 150 createPartitionInterface(entryPoints.subList(startIndex, endIndex), i)); in addEntryPoints()
|
/external/dagger2/java/dagger/internal/codegen/validation/ |
D | DiagnosticMessageGenerator.java | 135 ImmutableSet<DependencyEdge> entryPoints = graph.entryPointEdgesDependingOnBinding(binding); in getMessage() local 137 ImmutableList<DependencyEdge> dependencyTrace = dependencyTrace(binding, entryPoints); in getMessage() 139 return getMessageInternal(dependencyTrace, requests, entryPoints); in getMessage() 145 ImmutableSet<DependencyEdge> entryPoints; in getMessage() local 148 entryPoints = ImmutableSet.of(dependencyEdge); in getMessage() 153 entryPoints = graph.entryPointEdgesDependingOnBinding(binding); in getMessage() 157 .addAll(dependencyTrace(binding, entryPoints)) in getMessage() 161 return getMessageInternal(dependencyTrace, requests, entryPoints); in getMessage() 167 ImmutableSet<DependencyEdge> entryPoints) { in getMessageInternal() argument 203 if (!graph.isFullBindingGraph() && entryPoints.size() > 1) { in getMessageInternal() [all …]
|
/external/dagger2/javatests/dagger/internal/codegen/ |
D | ComponentShardTest.java | 44 ImmutableList.Builder<String> entryPoints = ImmutableList.builder(); in testNewShardCreated() local 47 entryPoints.add(String.format("%1$s get%1$s();", bindingName)); in testNewShardCreated() 48 entryPoints.add(String.format("Provider<%1$s> get%1$sProvider();", bindingName)); in testNewShardCreated() 71 javaFileObjects.add(createComponent(entryPoints.build())); in testNewShardCreated() 256 private static JavaFileObject createComponent(ImmutableList<String> entryPoints) { in createComponent() argument 268 " " + entryPoints.stream().collect(joining("\n ")), in createComponent()
|
D | SwitchingProviderTest.java | 37 StringBuilder entryPoints = new StringBuilder(); in switchingProviderTest() local 51 entryPoints.append(String.format(" Provider<%1$s> get%1$sProvider();\n", bindingName)); in switchingProviderTest() 64 entryPoints.toString(), in switchingProviderTest()
|
D | MapMultibindingValidationTest.java | 364 private static JavaFileObject component(String... entryPoints) { in component() argument 378 .add(entryPoints) in component()
|
/external/dagger2/java/dagger/hilt/processor/internal/aggregateddeps/ |
D | AggregatedDeps.java | 39 String[] entryPoints() default {}; in entryPoints() method
|
D | ComponentDependencies.java | 63 public abstract Dependencies entryPoints(); in entryPoints() method in ComponentDependencies
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | ComponentNodeImpl.java | 47 public final ImmutableSet<DependencyRequest> entryPoints() { in entryPoints() method in ComponentNodeImpl
|
/external/dagger2/java/dagger/hilt/processor/internal/root/ |
D | RootMetadata.java | 105 public ImmutableSet<TypeName> entryPoints(ClassName componentName) { in entryPoints() method in RootMetadata 177 deps.entryPoints().get(componentName, root.classname(), root.isTestRoot())) { in getUserDefinedEntryPoints()
|
D | RootGenerator.java | 99 metadata.entryPoints(componentDescriptor.component()), in generateComponents()
|
/external/llvm-project/mlir/lib/Conversion/SPIRVToLLVM/ |
D | ConvertLaunchFuncToLLVMCalls.cpp | 102 auto entryPoints = module.getOps<spirv::EntryPointOp>(); in getKernelGlobalVariables() local 103 if (!llvm::hasSingleElement(entryPoints)) { in getKernelGlobalVariables()
|
/external/bcc/src/cc/frontends/p4/compiler/ |
D | ebpfProgram.py | 67 self.entryPoints = [] # control-flow entry points from parser 121 self.entryPoints.append(n) 501 for e in self.entryPoints:
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | SpvPostProcess.cpp | 449 assert(entryPoints.size() == 1); in postProcessFeatures() 450 auto &ep = entryPoints[0]; in postProcessFeatures()
|
D | SpvBuilder.h | 826 std::vector<std::unique_ptr<Instruction> > entryPoints; variable
|
D | SpvBuilder.cpp | 1189 entryPoints.push_back(std::unique_ptr<Instruction>(entryPoint)); in addEntryPoint() 2993 dumpInstructions(out, entryPoints); in dump()
|
/external/deqp-deps/glslang/SPIRV/ |
D | SpvPostProcess.cpp | 449 assert(entryPoints.size() == 1); in postProcessFeatures() 450 auto &ep = entryPoints[0]; in postProcessFeatures()
|
D | SpvBuilder.h | 826 std::vector<std::unique_ptr<Instruction> > entryPoints; variable
|
D | SpvBuilder.cpp | 1189 entryPoints.push_back(std::unique_ptr<Instruction>(entryPoint)); in addEntryPoint() 2989 dumpInstructions(out, entryPoints); in dump()
|
/external/dagger2/java/dagger/model/ |
D | BindingGraph.java | 439 ImmutableSet<DependencyRequest> entryPoints(); in entryPoints() method
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/ |
D | Serializer.cpp | 424 SmallVector<uint32_t, 0> entryPoints; member in __anon4460d32f0111::Serializer 559 memoryModel.size() + entryPoints.size() + in collect() 571 binary.append(entryPoints.begin(), entryPoints.end()); in collect() 1964 return encodeInstructionInto(entryPoints, spirv::Opcode::OpEntryPoint, in processOp()
|
/external/swiftshader/src/Reactor/ |
D | SubzeroReactor.cpp | 639 std::vector<EntryPoint> entryPoints(functionNames.size()); in loadImage() local 690 entryPoints[index].entry = elfImage + sectionHeader[i].sh_offset; in loadImage() 691 entryPoints[index].codeSize = sectionHeader[i].sh_size; in loadImage() 716 return entryPoints; in loadImage() 789 auto entryPoints = loadImage(&buffer[0], functionNames); in loadImageAndGetEntryPoints() local 794 for(auto &entryPoint : entryPoints) in loadImageAndGetEntryPoints() 800 return entryPoints; in loadImageAndGetEntryPoints() 1078 auto entryPoints = ::routine->loadImageAndGetEntryPoints({ names, names + Count }); in acquireRoutine() local 1079 ASSERT(entryPoints.size() == Count); in acquireRoutine() 1080 for(size_t i = 0; i < entryPoints.size(); ++i) in acquireRoutine() [all …]
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/ |
D | SPIRVOps.cpp | 2515 entryPoints; in verify() local 2552 auto entryPtIt = entryPoints.find(key); in verify() 2553 if (entryPtIt != entryPoints.end()) { in verify() 2556 entryPoints[key] = entryPointOp; in verify()
|