Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 28) sorted by relevance

12

/appfunctions/appfunctions-common/src/main/java/androidx/appfunctions/metadata/
DAppFunctionMetadata.kt60 public val components: AppFunctionComponentsMetadata = AppFunctionComponentsMetadata(), constant in androidx.appfunctions.metadata.AppFunctionMetadata
75 if (components != other.components) return false in equals()
81 return Objects.hash(isEnabled, id, packageName, schema, parameters, response, components) in hashCode()
92 append("components=$components") in <lambda>()
127 public val components: AppFunctionComponentsMetadata = AppFunctionComponentsMetadata(), constant in androidx.appfunctions.metadata.CompileTimeAppFunctionMetadata
137 components: AppFunctionComponentsMetadata? = null in copy()
145 components = components ?: this.components in copy()
164 components = components.toAppFunctionComponentsMetadataDocument() in toAppFunctionMetadataDocument()
196 @Document.DocumentProperty public val components: AppFunctionComponentsMetadataDocument?, constant in androidx.appfunctions.metadata.AppFunctionMetadataDocument
/appfunctions/appfunctions-common/src/test/java/androidx/appfunctions/metadata/
DAppFunctionMetadataTest.kt97 val components = in appFunctionMetadata_toAppFunctionMetadataDocument_returnsCorrectDocument() constant
111 components = components in appFunctionMetadata_toAppFunctionMetadataDocument_returnsCorrectDocument()
125 components = components.toAppFunctionComponentsMetadataDocument() in appFunctionMetadata_toAppFunctionMetadataDocument_returnsCorrectDocument()
DAppFunctionComponentsMetadataTest.kt53 val components = in toAppFunctionComponentsMetadataDocument_returnsCorrectDocument() constant
59 components.toAppFunctionComponentsMetadataDocument() in toAppFunctionComponentsMetadataDocument_returnsCorrectDocument()
107 val components = appFunctionComponentsMetadataDocument.toAppFunctionComponentsMetadata() in componentsMetadataDocument_toAppFunctionComponentsMetadata_returnsCorrectMetadata() constant
109 assertThat(components) in componentsMetadataDocument_toAppFunctionComponentsMetadata_returnsCorrectMetadata()
/appfunctions/appfunctions-compiler/src/test/test-data/output/
D$FakeAllPrimitiveReturnsImpl_AppFunctionInventory.KT87 components = COMPONENTS_METADATA
129 components = COMPONENTS_METADATA
165 components = COMPONENTS_METADATA
201 components = COMPONENTS_METADATA
237 components = COMPONENTS_METADATA
273 components = COMPONENTS_METADATA
309 components = COMPONENTS_METADATA
345 components = COMPONENTS_METADATA
387 components = COMPONENTS_METADATA
423 components = COMPONENTS_METADATA
[all …]
D$AllPrimitiveInputFunctions_AppFunctionInventory.KT95 components = COMPONENTS_METADATA
144 components = COMPONENTS_METADATA
193 components = COMPONENTS_METADATA
242 components = COMPONENTS_METADATA
291 components = COMPONENTS_METADATA
340 components = COMPONENTS_METADATA
389 components = COMPONENTS_METADATA
438 components = COMPONENTS_METADATA
487 components = COMPONENTS_METADATA
536 components = COMPONENTS_METADATA
[all …]
D$ParcelablePrimitiveFunctions_AppFunctionInventory.KT72 components = COMPONENTS_METADATA
107 components = COMPONENTS_METADATA
D$SerializableOutputFunctions_AppFunctionInventory.KT102 components = COMPONENTS_METADATA
182 components = COMPONENTS_METADATA
262 components = COMPONENTS_METADATA
336 components = COMPONENTS_METADATA
D$RecursiveSerializableInputFunctions_AppFunctionInventory.KT103 components = COMPONENTS_METADATA
183 components = COMPONENTS_METADATA
263 components = COMPONENTS_METADATA
337 components = COMPONENTS_METADATA
D$SerializableInputFunctions_AppFunctionInventory.KT118 components = COMPONENTS_METADATA
212 components = COMPONENTS_METADATA
306 components = COMPONENTS_METADATA
394 components = COMPONENTS_METADATA
488 components = COMPONENTS_METADATA
582 components = COMPONENTS_METADATA
D$AppFunctionWithOutputFromDifferentPackage_AppFunctionInventory.KT90 components = COMPONENTS_METADATA
157 components = COMPONENTS_METADATA
D$DerivedSerializableOutputFunctions_AppFunctionInventory.KT146 components = COMPONENTS_METADATA
268 components = COMPONENTS_METADATA
390 components = COMPONENTS_METADATA
506 components = COMPONENTS_METADATA
D$SimpleFunction_AppFunctionInventory.KT57 components = COMPONENTS_METADATA
D$DerivedSerializableInputFunctions_AppFunctionInventory.KT162 components = COMPONENTS_METADATA
298 components = COMPONENTS_METADATA
434 components = COMPONENTS_METADATA
564 components = COMPONENTS_METADATA
700 components = COMPONENTS_METADATA
836 components = COMPONENTS_METADATA
D$NestedDerivedSerializableOutputFunctions_AppFunctionInventory.KT167 components = COMPONENTS_METADATA
312 components = COMPONENTS_METADATA
D$FunctionWithSerializableProxyInput_AppFunctionInventory.KT149 components = COMPONENTS_METADATA
356 components = COMPONENTS_METADATA
D$NestedDerivedSerializableInputFunctions_AppFunctionInventory.KT181 components = COMPONENTS_METADATA
340 components = COMPONENTS_METADATA
D$FakeAllPrimitiveParamsImpl_AppFunctionInventory.KT145 components = COMPONENTS_METADATA
341 components = COMPONENTS_METADATA
D$AppFunctionWithInputFromDifferentPackage_AppFunctionInventory.KT148 components = COMPONENTS_METADATA
D$FunctionWithGenericSerializable_AppFunctionInventory.KT299 components = COMPONENTS_METADATA
/appfunctions/appfunctions-runtime/src/androidTest/java/androidx/appfunctions/core/
DAppFunctionMetadataTestHelper.kt154 components = AppFunctionComponentsMetadata() in <lambda>()
172 components = AppFunctionComponentsMetadata() in <lambda>()
190 components = AppFunctionComponentsMetadata() in <lambda>()
208 components = AppFunctionComponentsMetadata() in <lambda>()
226 components = AppFunctionComponentsMetadata() in <lambda>()
244 components = AppFunctionComponentsMetadata() in <lambda>()
262 components = AppFunctionComponentsMetadata() in <lambda>()
/appfunctions/appfunctions-compiler/src/main/java/androidx/appfunctions/compiler/core/
DAppFunctionComponentRegistryGenerator.kt61 components: List<AppFunctionComponent>, in generateRegistry()
78 components.map(AppFunctionComponent::qualifiedName).sorted() in generateRegistry()
96 val sourceFiles = components.flatMap { it.sourceFiles }.toSet() in generateRegistry()
/appfunctions/appfunctions-runtime/src/test/java/androidx/appfunctions/internal/
DAggregatedAppFunctionInventoryTest.kt86 components = AppFunctionComponentsMetadata()
108 components = AppFunctionComponentsMetadata()
/appfunctions/appfunctions-compiler/src/main/java/androidx/appfunctions/compiler/processors/
DAppFunctionIndexXmlProcessor.kt98 appFunctionMetadata.components.dataTypes.forEach { (objectKey, dataTypeMetadata) -> in <lambda>()
102 appFunctionMetadata.copy(components = AppFunctionComponentsMetadata()) in <lambda>()
/appfunctions/appfunctions-runtime/src/main/java/androidx/appfunctions/internal/
DAppSearchAppFunctionReader.kt205 components = in <lambda>()
206 staticMetadataDocument.components?.toAppFunctionComponentsMetadata() in <lambda>()
/appfunctions/appfunctions-common/api/
Drestricted_current.txt225 …tadata response, optional androidx.appfunctions.metadata.AppFunctionComponentsMetadata components);
233 property public androidx.appfunctions.metadata.AppFunctionComponentsMetadata components;

12