Home
last modified time | relevance | path

Searched refs:cancellationStatements (Results 1 – 1 of 1) sorted by relevance

/external/dagger2/java/dagger/internal/codegen/componentgenerator/
DComponentImplementationBuilder.java215 ImmutableList<CodeBlock> cancellationStatements = cancellationStatements(); in addCancellationListenerImplementation() local
217 if (cancellationStatements.size() < STATEMENTS_PER_METHOD) { in addCancellationListenerImplementation()
218 methodBuilder.addCode(CodeBlocks.concat(cancellationStatements)).build(); in addCancellationListenerImplementation()
224 cancellationStatements, in addCancellationListenerImplementation()
237 private ImmutableList<CodeBlock> cancellationStatements() { in cancellationStatements() method in ComponentImplementationBuilder
250 ImmutableList.Builder<CodeBlock> cancellationStatements = ImmutableList.builder(); in cancellationStatements() local
252 cancellationStatements.add( in cancellationStatements()
263 return cancellationStatements.build(); in cancellationStatements()