Home
last modified time | relevance | path

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

/appfunctions/appfunctions-compiler/src/main/java/androidx/appfunctions/compiler/processors/
DAppFunctionFunctionRegistryProcessor.kt82 for (function in annotatedAppFunction.appFunctionDeclarations) { in <lambda>() method
85 qualifiedName = function.ensureQualifiedName(), in <lambda>()
DAppFunctionInvokerProcessor.kt167 annotatedAppFunctions.appFunctionDeclarations.map { function -> in <lambda>() method
168 annotatedAppFunctions.getAppFunctionIdentifier(function) in <lambda>()
/appfunctions/appfunctions-common/src/main/java/androidx/appfunctions/metadata/
DREADME.md19 information needed to invoke and understand the function.
22 type (`dataType`) of a function parameter, similar to how OpenAPI describes request parameters.
30 that can be referenced from different parts of the function definition.
44 (the schema of the return value). This simplification is because the function in Kotlin is more
50 `AppFunctionSchemaMetadata` to represent a *predefined function schema*, identified by a
52 function's overall purpose and contract. For instance, we might predefine a schema for
53 "CreateNote," which specifies the function's required inputs and expected outputs.
/appfunctions/appfunctions-compiler/src/main/java/androidx/appfunctions/compiler/core/
DAnnotatedAppFunctions.kt709 function: KSFunctionDeclaration in <lambda>()
711 val parentDeclaration = function.parentDeclaration as? KSClassDeclaration ?: return null in <lambda>()
722 val superClassFunction = (function.findOverridee() as? KSFunctionDeclaration) ?: return null in <lambda>()