Home
last modified time | relevance | path

Searched defs:methodSpec (Results 1 – 7 of 7) sorted by relevance

/external/kotlinpoet/kotlinpoet/src/test/java/com/squareup/kotlinpoet/
DExternalDeclarationsTest.kt23 val methodSpec = FunSpec.builder("function") in externalFunDeclarationWithoutBody() constant
36 val methodSpec = FunSpec.builder("function") in externalFunDeclarationWithDefinedExternally() constant
50 val methodSpec = FunSpec.builder("function") in externalFunDeclarationWithDefinedExternally2() constant
68 val methodSpec = FunSpec.builder("function") in implicitExternalFunDeclarationWithoutBody() constant
85 val methodSpec = FunSpec.builder("function") in implicitExternalFunDeclarationWithDefinedExternally() constant
103 val methodSpec = FunSpec.builder("function") in implicitExternalFunDeclarationWithDefinedExternally2() constant
DExpectDeclarationsTest.kt23 val methodSpec = FunSpec.builder("function") in expectFunDeclaration() constant
38 val methodSpec = FunSpec.builder("function") in implicitExpectFunDeclaration() constant
DFunSpecTest.kt1082 val methodSpec = FunSpec.builder("function") in ensureTrailingNewline() constant
1098 val methodSpec = FunSpec.builder("function") in ensureTrailingNewlineWithExistingNewline() constant
1114 val methodSpec = FunSpec.builder("function") in ensureTrailingNewlineWithExpressionBody() constant
1127 val methodSpec = FunSpec.builder("function") in ensureTrailingNewlineWithExpressionBodyAndExistingNewline() constant
1140 val methodSpec = FunSpec.builder("function") in ensureKdocTrailingNewline() constant
1158 val methodSpec = FunSpec.builder("function") in ensureKdocTrailingNewlineWithExistingNewline() constant
/external/javapoet/src/test/java/com/squareup/javapoet/
DMethodSpecTest.java293 MethodSpec methodSpec = MethodSpec.methodBuilder("getTaco") in withoutParameterJavaDoc() local
307 MethodSpec methodSpec = MethodSpec.methodBuilder("getTaco") in withParameterJavaDoc() local
328 MethodSpec methodSpec = MethodSpec.methodBuilder("getTaco") in withParameterJavaDocAndWithoutMethodJavadoc() local
348 MethodSpec methodSpec = MethodSpec.methodBuilder("duplicateExceptions") in duplicateExceptionsIgnored() local
379 MethodSpec methodSpec = MethodSpec.methodBuilder("initialMethod") in modifyMethodName() local
424 MethodSpec methodSpec = MethodSpec.methodBuilder("method") in ensureTrailingNewline() local
436 MethodSpec methodSpec = MethodSpec.methodBuilder("method") in ensureTrailingNewlineWithExistingNewline() local
451 MethodSpec methodSpec = MethodSpec.methodBuilder("method") in controlFlowWithNamedCodeBlocks() local
470 MethodSpec methodSpec = MethodSpec.methodBuilder("method") in doWhileWithNamedCodeBlocks() local
/external/dagger2/java/dagger/internal/codegen/writing/
DInjectionMethods.java159 MethodSpec methodSpec = create(binding, compilerOptions, metadataUtil); in invoke() local
351 MethodSpec methodSpec = create(injectionSite, metadataUtil); in invoke() local
468 MethodSpec methodSpec, in invokeMethod()
DComponentImplementation.java605 public void addMethod(MethodSpecKind methodKind, MethodSpec methodSpec) { in addMethod()
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeSpec.java635 public Builder addMethod(MethodSpec methodSpec) { in addMethod()