Home
last modified time | relevance | path

Searched refs:creationTimestamp (Results 1 – 8 of 8) sorted by relevance

/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/
DPersonBuilderHelperTest.java36 long creationTimestamp = 12345L; in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded() local
85 creationTimestamp).buildPerson(); in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
87 creationTimestamp).buildPerson(); in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
101 assertThat(person.getCreationTimestampMillis()).isEqualTo(creationTimestamp); in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
102 assertThat(personSame.getCreationTimestampMillis()).isEqualTo(creationTimestamp); in testFingerprintGeneration_creationTimestampAndFingerprintNotIncluded()
110 long creationTimestamp = 12345L; in testFingerprintGeneration_forEachPropertyType_string() local
118 .setCreationTimestampMillis(creationTimestamp) in testFingerprintGeneration_forEachPropertyType_string()
140 long creationTimestamp = 12345L; in testFingerprintGeneration_forEachPropertyType_boolean() local
148 personBuilder).setCreationTimestampMillis(creationTimestamp).buildPerson(); in testFingerprintGeneration_forEachPropertyType_boolean()
151 creationTimestamp).buildPerson(); in testFingerprintGeneration_forEachPropertyType_boolean()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/adselection/
DDBConsentedDebugConfiguration.java85 @NonNull Instant creationTimestamp, in create() argument
88 Objects.requireNonNull(creationTimestamp); in create()
95 .setCreationTimestamp(creationTimestamp) in create()
123 public abstract Builder setCreationTimestamp(@NonNull Instant creationTimestamp); in setCreationTimestamp() argument
DDBAdSelectionEntry.java80 @NonNull Instant creationTimestamp, in DBAdSelectionEntry() argument
89 this.mCreationTimestamp = creationTimestamp; in DBAdSelectionEntry()
282 public DBAdSelectionEntry.Builder setCreationTimestamp(@NonNull Instant creationTimestamp) { in setCreationTimestamp() argument
283 Objects.requireNonNull(creationTimestamp); in setCreationTimestamp()
284 this.mCreationTimestamp = creationTimestamp; in setCreationTimestamp()
DDBAdSelectionDebugReport.java82 long creationTimestamp) { in create() argument
88 .setCreationTimestamp(creationTimestamp) in create()
115 public abstract Builder setCreationTimestamp(long creationTimestamp); in setCreationTimestamp() argument
DDBAdSelection.java97 @NonNull Instant creationTimestamp, in DBAdSelection() argument
109 this.mCreationTimestamp = creationTimestamp; in DBAdSelection()
308 public DBAdSelection.Builder setCreationTimestamp(@NonNull Instant creationTimestamp) { in setCreationTimestamp() argument
309 Objects.requireNonNull(creationTimestamp); in setCreationTimestamp()
310 this.mCreationTimestamp = creationTimestamp; in setCreationTimestamp()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/common/cache/
DDBCacheEntry.java89 Instant creationTimestamp, in create() argument
95 .setCreationTimestamp(creationTimestamp) in create()
120 public abstract DBCacheEntry.Builder setCreationTimestamp(Instant creationTimestamp); in setCreationTimestamp() argument
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/appsearchtypes/
DPersonTest.java32 long creationTimestamp = 12345L; in testBuilder() local
73 .setCreationTimestampMillis(creationTimestamp) in testBuilder()
97 assertThat(person.getCreationTimestampMillis()).isEqualTo(creationTimestamp); in testBuilder()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/shell/adselection/
DConsentedDebugShellCommandTest.java295 Instant creationTimestamp = CommonFixture.FIXED_NOW; in test_view_success() local
302 .setCreationTimestamp(creationTimestamp) in test_view_success()
314 result.mOut, isConsented, debugToken, creationTimestamp, expiryTimestamp); in test_view_success()