Home
last modified time | relevance | path

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

/external/kotlinpoet/kotlinpoet/src/commonTest/kotlin/com/squareup/kotlinpoet/
DExternalDeclarationsTest.kt23 val methodSpec = FunSpec.builder("function") in externalFunDeclarationWithoutBody() constant
36 val methodSpec = FunSpec.builder("function") in externalFunDeclarationWithDefinedExternally() constant
51 val methodSpec = FunSpec.builder("function") in externalFunDeclarationWithDefinedExternally2() constant
69 val methodSpec = FunSpec.builder("function") in implicitExternalFunDeclarationWithoutBody() constant
86 val methodSpec = FunSpec.builder("function") in implicitExternalFunDeclarationWithDefinedExternally() constant
105 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.kt1083 val methodSpec = FunSpec.builder("function") in ensureTrailingNewline() constant
1099 val methodSpec = FunSpec.builder("function") in ensureTrailingNewlineWithExistingNewline() constant
1115 val methodSpec = FunSpec.builder("function") in ensureTrailingNewlineWithExpressionBody() constant
1129 val methodSpec = FunSpec.builder("function") in ensureTrailingNewlineWithExpressionBodyAndExistingNewline() constant
1143 val methodSpec = FunSpec.builder("function") in ensureKdocTrailingNewline() constant
1161 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/
DGeneratedImplementation.java39 void addMethod(MethodSpecKind methodKind, MethodSpec methodSpec); in addMethod()
DInjectionMethods.java157 MethodSpec methodSpec = create(binding, compilerOptions); in invoke() local
322 MethodSpec methodSpec = create(injectionSite); in invoke() local
443 MethodSpec methodSpec, in invokeMethod()
DComponentWrapperImplementation.java74 public void addMethod(MethodSpecKind methodKind, MethodSpec methodSpec) { in addMethod()
DComponentImplementation.java604 public void addMethod(MethodSpecKind methodKind, MethodSpec methodSpec) { in addMethod()
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/
DQueryProtocolSpec.java66 MethodSpec.Builder methodSpec = MethodSpec.methodBuilder("init") in initProtocolFactory() local
DJsonProtocolSpec.java90 MethodSpec.Builder methodSpec = in initProtocolFactory() local
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeSpec.java635 public Builder addMethod(MethodSpec methodSpec) { in addMethod()