/packages/modules/AppSearch/framework/java/external/android/app/appsearch/observer/ |
D | ObserverSpec.java | 93 public Builder addFilterSchemas(@NonNull String... schemas) { in addFilterSchemas() argument 94 Objects.requireNonNull(schemas); in addFilterSchemas() 96 return addFilterSchemas(Arrays.asList(schemas)); in addFilterSchemas() 107 public Builder addFilterSchemas(@NonNull Collection<String> schemas) { in addFilterSchemas() argument 108 Objects.requireNonNull(schemas); in addFilterSchemas() 110 mFilterSchemas.addAll(schemas); in addFilterSchemas()
|
/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/ |
D | AppSearchImplTest.java | 481 List<AppSearchSchema> schemas = in testTriggerCheckOptimizeByMutationSize() local 487 schemas, in testTriggerCheckOptimizeByMutationSize() 535 List<AppSearchSchema> schemas = in testReset() local 543 schemas, in testReset() 1223 List<AppSearchSchema> schemas = in testSearchSuggestion() local 1239 schemas, in testSearchSuggestion() 1303 List<AppSearchSchema> schemas = in testSearchSuggestion_removeDocument() local 1319 schemas, in testSearchSuggestion_removeDocument() 1363 List<AppSearchSchema> schemas = in testSearchSuggestion_replaceDocument() local 1379 schemas, in testSearchSuggestion_replaceDocument() [all …]
|
D | AppSearchLoggerTest.java | 416 List<AppSearchSchema> schemas = in testLoggingStats_initializeWithDocuments_success() local 424 schemas, in testLoggingStats_initializeWithDocuments_success() 482 List<AppSearchSchema> schemas = in testLoggingStats_initialize_failure() local 490 schemas, in testLoggingStats_initialize_failure() 551 List<AppSearchSchema> schemas = Collections.singletonList(testSchema); in testLoggingStats_putDocument_success() local 556 schemas, in testLoggingStats_putDocument_success() 604 List<AppSearchSchema> schemas = Collections.singletonList(testSchema); in testLoggingStats_putDocument_failure() local 609 schemas, in testLoggingStats_putDocument_failure() 659 List<AppSearchSchema> schemas = Collections.singletonList(testSchema); in testLoggingStats_search_success() local 664 schemas, in testLoggingStats_search_success() [all …]
|
/packages/modules/AppSearch/framework/java/external/android/app/appsearch/ |
D | GetByDocumentIdRequest.java | 115 Set<String> schemas = mTypePropertyPaths.keySet(); in getProjections() local 116 Map<String, List<String>> typePropertyPathsMap = new ArrayMap<>(schemas.size()); in getProjections() 117 for (String schema : schemas) { in getProjections() 136 Set<String> schemas = mTypePropertyPaths.keySet(); in getProjectionPaths() local 137 Map<String, List<PropertyPath>> typePropertyPathsMap = new ArrayMap<>(schemas.size()); in getProjectionPaths() 138 for (String schema : schemas) { in getProjectionPaths()
|
D | SearchSpec.java | 341 @Param(id = 2) @NonNull List<String> schemas, in SearchSpec() 363 mSchemas = Collections.unmodifiableList(Objects.requireNonNull(schemas)); in SearchSpec() 425 Set<String> schemas = mTypePropertyFilters.keySet(); in getFilterProperties() local 426 Map<String, List<String>> typePropertyPathsMap = new ArrayMap<>(schemas.size()); in getFilterProperties() 427 for (String schema : schemas) { in getFilterProperties() 509 Set<String> schemas = mProjectionTypePropertyMasks.keySet(); in getProjections() local 510 Map<String, List<String>> typePropertyPathsMap = new ArrayMap<>(schemas.size()); in getProjections() 511 for (String schema : schemas) { in getProjections() 532 Set<String> schemas = mProjectionTypePropertyMasks.keySet(); in getProjectionPaths() local 533 Map<String, List<PropertyPath>> typePropertyPathsMap = new ArrayMap<>(schemas.size()); in getProjectionPaths() [all …]
|
D | SetSchemaRequest.java | 181 @NonNull Set<AppSearchSchema> schemas, in SetSchemaRequest() 190 mSchemas = Objects.requireNonNull(schemas); in SetSchemaRequest() 354 public Builder addSchemas(@NonNull AppSearchSchema... schemas) { in addSchemas() argument 355 Objects.requireNonNull(schemas); in addSchemas() 357 return addSchemas(Arrays.asList(schemas)); in addSchemas() 367 public Builder addSchemas(@NonNull Collection<AppSearchSchema> schemas) { in addSchemas() argument 368 Objects.requireNonNull(schemas); in addSchemas() 370 mSchemas.addAll(schemas); in addSchemas()
|
D | SearchSuggestionSpec.java | 205 Set<String> schemas = mFilterProperties.keySet(); in getFilterProperties() local 206 Map<String, List<String>> typePropertyPathsMap = new ArrayMap<>(schemas.size()); in getFilterProperties() 207 for (String schema : schemas) { in getFilterProperties()
|
D | GetSchemaResponse.java | 113 @Param(id = 2) @NonNull List<AppSearchSchema> schemas, in GetSchemaResponse() 116 mSchemas = Objects.requireNonNull(schemas); in GetSchemaResponse()
|
/packages/modules/AppSearch/framework/java/android/app/appsearch/aidl/ |
D | SetSchemaAidlRequest.java | 98 @Param(id = 3) @NonNull List<AppSearchSchema> schemas, in SetSchemaAidlRequest() 107 mSchemas = Objects.requireNonNull(schemas); in SetSchemaAidlRequest()
|
/packages/modules/AdServices/adservices/libraries/cobalt/ |
D | Android.bp | 35 "-Aroom.schemaLocation=packages/modules/AdServices/adservices/libraries/cobalt/schemas", 93 "schemas",
|
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/ |
D | EnterpriseContactsTest.java | 420 Set<AppSearchSchema> schemas = getSchemaResponse.getSchemas(); in testEnterpriseContacts_canAccessWithOnlyContactsAccess() local 421 assertThat(schemas).hasSize(1); in testEnterpriseContacts_canAccessWithOnlyContactsAccess() 422 assertThat(schemas.iterator().next().getSchemaType()).isEqualTo(Person.SCHEMA_TYPE); in testEnterpriseContacts_canAccessWithOnlyContactsAccess() 445 Set<AppSearchSchema> schemas = getSchemaResponse.getSchemas(); in testEnterpriseContacts_canNotAccessWithoutContactsAccess() local 446 assertThat(schemas).isEmpty(); in testEnterpriseContacts_canNotAccessWithoutContactsAccess() 473 Set<AppSearchSchema> schemas = getSchemaResponse.getSchemas(); in testEnterpriseContacts_canNotAccessWithOnlyCallerIdAccess() local 474 assertThat(schemas).isEmpty(); in testEnterpriseContacts_canNotAccessWithOnlyCallerIdAccess()
|
/packages/modules/AppSearch/framework/java/android/app/appsearch/ |
D | AppSearchSession.java | 914 @NonNull List<AppSearchSchema> schemas, in setSchemaNoMigrations() argument 923 schemas, in setSchemaNoMigrations() 1011 @NonNull List<AppSearchSchema> schemas, in setSchemaWithMigrations() argument 1071 schemas, in setSchemaWithMigrations() 1089 schemas, in setSchemaWithMigrations() 1186 schemas, in setSchemaWithMigrations()
|
/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/ |
D | AdbDumpUtilTest.java | 132 List<AppSearchSchema> schemas = Collections.singletonList(new AppSearchSchema.Builder( in testDesensitizeRealDebugInfo() local 137 appSearchImpl.setSchema("adbdump_package", "adbdump_database", schemas, in testDesensitizeRealDebugInfo()
|
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/ |
D | AppSearchImpl.java | 493 @NonNull List<AppSearchSchema> schemas, in setSchema() argument 513 schemas, in setSchema() 522 schemas, in setSchema() 544 @NonNull List<AppSearchSchema> schemas, in doSetSchemaWithChangeNotificationLocked() argument 598 schemas, in doSetSchemaWithChangeNotificationLocked() 612 Map<String, AppSearchSchema> newSchemaNameToType = new ArrayMap<>(schemas.size()); in doSetSchemaWithChangeNotificationLocked() 616 new ArrayMap<>(schemas.size()); in doSetSchemaWithChangeNotificationLocked() 617 for (AppSearchSchema newSchemaType : schemas) { in doSetSchemaWithChangeNotificationLocked() 729 @NonNull List<AppSearchSchema> schemas, in doSetSchemaNoChangeNotificationLocked() argument 739 for (int i = 0; i < schemas.size(); i++) { in doSetSchemaNoChangeNotificationLocked() [all …]
|
/packages/modules/Bluetooth/android/app/tests/unit/ |
D | Android.bp | 41 asset_dirs: ["src/com/android/bluetooth/btservice/storage/schemas"],
|
/packages/modules/Permission/SafetyCenter/ConfigLintChecker/ |
D | Android.bp | 39 // java_resources: [":safetycenter-config-schemas"],
|
/packages/modules/AdServices/adservices/service-core/ |
D | Android.bp | 152 "-Aroom.schemaLocation=packages/modules/AdServices/adservices/service-core/schemas", 242 "schemas",
|
/packages/modules/Permission/framework-s/ |
D | Android.bp | 38 name: "safetycenter-config-schemas",
|
/packages/modules/Bluetooth/android/app/ |
D | Android.bp | 288 // Export schemas to the test directory so that we have an history 292 …ges/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/storage/schemas"],
|
/packages/apps/ManagedProvisioning/studio-dev/ManagedProvisioningGradleProject/buildSrc/src/main/groovy/ |
D | ResourceFixerPlugin.groovy | 81 root.setAttribute("xmlns:androidprv", "http://schemas.android.com/apk/prv/res/android");
|
/packages/modules/AppSearch/testing/mockingservicestests/src/com/android/server/appsearch/ |
D | AppSearchManagerServiceTest.java | 401 List<AppSearchSchema> schemas = in testPutDocumentsStatsLogging_takenActions() local 445 schemas, in testPutDocumentsStatsLogging_takenActions() 1983 List<AppSearchSchema> schemas = Collections.singletonList( in setUpTestSchema() local 1986 mUserInstance.getAppSearchImpl().setSchema(packageName, databaseName, schemas, in setUpTestSchema()
|
/packages/modules/AdServices/sdksandbox/tests/testutils/testscenario/ |
D | README.md | 57 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_GB_wordlist.combined.gz |
|
D | en_US_wordlist.combined.gz |
|
D | en_wordlist.combined.gz |
|