/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/cache/ |
H A D | DefaultContentMetadataTest.java | 60 ContentMetadataMutations mutations = new ContentMetadataMutations(); in emptyMutationDoesNotFail() local 66 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addNewMetadata() local 74 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addNewIntMetadata() local 82 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addNewByteArrayMetadata() local 91 ContentMetadataMutations mutations = new ContentMetadataMutations(); in newMetadataNotWrittenBeforeCommitted() local 99 ContentMetadataMutations mutations = new ContentMetadataMutations(); in editMetadata() local 108 ContentMetadataMutations mutations = new ContentMetadataMutations(); in removeMetadata() local 116 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addAndRemoveMetadata() local 125 ContentMetadataMutations mutations = new ContentMetadataMutations(); in removeAndAddMetadata() local 161 ContentMetadataMutations mutations = new ContentMetadataMutations(); in createContentMetadata() local
|
H A D | SimpleCacheTest.java | 113 ContentMetadataMutations mutations = new ContentMetadataMutations(); in newInstance_withExistingCacheDirectory_withoutDatabase_loadsCachedData() local 137 ContentMetadataMutations mutations = new ContentMetadataMutations(); in newInstance_withExistingCacheDirectory_withDatabase_loadsCachedData() local 447 ContentMetadataMutations mutations = new ContentMetadataMutations(); in applyContentMetadataMutations_setsContentLength() local
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/datasource/src/test/java/com/google/android/exoplayer2/upstream/cache/ |
H A D | DefaultContentMetadataTest.java | 60 ContentMetadataMutations mutations = new ContentMetadataMutations(); in emptyMutationDoesNotFail() local 66 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addNewMetadata() local 74 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addNewIntMetadata() local 82 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addNewByteArrayMetadata() local 91 ContentMetadataMutations mutations = new ContentMetadataMutations(); in newMetadataNotWrittenBeforeCommitted() local 99 ContentMetadataMutations mutations = new ContentMetadataMutations(); in editMetadata() local 108 ContentMetadataMutations mutations = new ContentMetadataMutations(); in removeMetadata() local 116 ContentMetadataMutations mutations = new ContentMetadataMutations(); in addAndRemoveMetadata() local 125 ContentMetadataMutations mutations = new ContentMetadataMutations(); in removeAndAddMetadata() local 161 ContentMetadataMutations mutations = new ContentMetadataMutations(); in createContentMetadata() local
|
H A D | SimpleCacheTest.java | 113 ContentMetadataMutations mutations = new ContentMetadataMutations(); in newInstance_withExistingCacheDirectory_withoutDatabase_loadsCachedData() local 137 ContentMetadataMutations mutations = new ContentMetadataMutations(); in newInstance_withExistingCacheDirectory_withDatabase_loadsCachedData() local 447 ContentMetadataMutations mutations = new ContentMetadataMutations(); in applyContentMetadataMutations_setsContentLength() local
|
/aosp_15_r20/external/sdk-platform-java/test/integration/goldens/bigtable/src/com/google/cloud/bigtable/data/v2/ |
H A D | BaseBigtableDataClientTest.java | 220 List<Mutation> mutations = new ArrayList<>(); in mutateRowTest() local 246 List<Mutation> mutations = new ArrayList<>(); in mutateRowExceptionTest() local 261 List<Mutation> mutations = new ArrayList<>(); in mutateRowTest2() local 287 List<Mutation> mutations = new ArrayList<>(); in mutateRowExceptionTest2() local 302 List<Mutation> mutations = new ArrayList<>(); in mutateRowTest3() local 330 List<Mutation> mutations = new ArrayList<>(); in mutateRowExceptionTest3() local 346 List<Mutation> mutations = new ArrayList<>(); in mutateRowTest4() local 374 List<Mutation> mutations = new ArrayList<>(); in mutateRowExceptionTest4() local
|
H A D | BaseBigtableDataClient.java | 279 TableName tableName, ByteString rowKey, List<Mutation> mutations) { in mutateRow() 320 String tableName, ByteString rowKey, List<Mutation> mutations) { in mutateRow() 365 TableName tableName, ByteString rowKey, List<Mutation> mutations, String appProfileId) { in mutateRow() 411 String tableName, ByteString rowKey, List<Mutation> mutations, String appProfileId) { in mutateRow()
|
/aosp_15_r20/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/ |
D | SystemCallLogDataSource.java | 169 public ListenableFuture<Void> fill(CallLogMutations mutations) { in fill() 194 private Void fillInternal(CallLogMutations mutations) { in fillInternal() 232 Context appContext, CallLogMutations mutations, Set<Long> existingAnnotatedCallLogIds) { in handleInsertsAndUpdates() 432 Context appContext, Set<Long> existingAnnotatedCallLogIds, CallLogMutations mutations) { in handleDeletes()
|
/aosp_15_r20/packages/apps/Dialer/java/com/android/dialer/calllog/ |
D | CallLogCacheUpdater.java | 79 public ListenableFuture<Void> updateCache(CallLogMutations mutations) { in updateCache() 90 updateCacheInternal(mutations); in updateCache() argument
|
/aosp_15_r20/packages/apps/Dialer/java/com/android/dialer/calllog/database/ |
D | MutationApplier.java | 53 public ListenableFuture<Void> applyToDatabase(CallLogMutations mutations, Context appContext) { in applyToDatabase() 65 private void applyToDatabaseInternal(CallLogMutations mutations, Context appContext) in applyToDatabaseInternal()
|
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/datasource/src/main/java/com/google/android/exoplayer2/upstream/cache/ |
H A D | ContentMetadataMutations.java | 45 ContentMetadataMutations mutations, long length) { in setContentLength() 58 ContentMetadataMutations mutations, @Nullable Uri uri) { in setRedirectedUri()
|
H A D | DefaultContentMetadata.java | 55 public DefaultContentMetadata copyWithMutationsApplied(ContentMetadataMutations mutations) { in copyWithMutationsApplied() 143 Map<String, byte[]> otherMetadata, ContentMetadataMutations mutations) { in applyMutations()
|
H A D | CacheDataSource.java | 789 ContentMetadataMutations mutations = new ContentMetadataMutations(); in openNextSource() local 807 ContentMetadataMutations mutations = new ContentMetadataMutations(); in setNoBytesRemainingAndMaybeStoreLength() local
|
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/datasource/src/main/java/com/google/android/exoplayer2/upstream/cache/ |
H A D | ContentMetadataMutations.java | 45 ContentMetadataMutations mutations, long length) { in setContentLength() 58 ContentMetadataMutations mutations, @Nullable Uri uri) { in setRedirectedUri()
|
H A D | DefaultContentMetadata.java | 53 public DefaultContentMetadata copyWithMutationsApplied(ContentMetadataMutations mutations) { in copyWithMutationsApplied() 141 Map<String, byte[]> otherMetadata, ContentMetadataMutations mutations) { in applyMutations()
|
H A D | CacheDataSource.java | 779 ContentMetadataMutations mutations = new ContentMetadataMutations(); in openNextSource() local 797 ContentMetadataMutations mutations = new ContentMetadataMutations(); in setNoBytesRemainingAndMaybeStoreLength() local
|
/aosp_15_r20/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
H A D | CodeMutator.java | 45 protected List<Mutation> mutations; field in CodeMutator 66 public CodeMutator(Random rng, MutationStats stats, List<Mutation> mutations) { in CodeMutator()
|
H A D | OppositeBranchChanger.java | 29 public OppositeBranchChanger(Random rng, MutationStats stats, List<Mutation> mutations) { in OppositeBranchChanger()
|
/aosp_15_r20/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/phonelookup/ |
D | PhoneLookupDataSource.java | 144 public ListenableFuture<Void> fill(CallLogMutations mutations) { in fill() 359 Context appContext, CallLogMutations mutations) { in collectIdAndNumberFromAnnotatedCallLogAndPendingInserts()
|
/aosp_15_r20/art/tools/dexfuzz/src/dexfuzz/program/ |
H A D | Program.java | 136 private List<Mutation> mutations; field in Program 400 int mutations = getNumberOfMutationsToPerform(); in mutateAMutatableCode() local
|
/aosp_15_r20/external/googleapis/google/bigtable/v2/ |
H A D | bigtable.proto | 538 repeated Mutation mutations = 3 [(google.api.field_behavior) = REQUIRED]; field 554 repeated Mutation mutations = 2 [(google.api.field_behavior) = REQUIRED]; field
|
/aosp_15_r20/external/googleapis/google/spanner/v1/ |
H A D | spanner.proto | 1170 repeated Mutation mutations = 4; field 1208 repeated Mutation mutations = 1 [(google.api.field_behavior) = REQUIRED]; field
|
/aosp_15_r20/development/tools/ota_analysis/src/store/ |
H A D | index.js | 5 mutations: {}, property
|
/aosp_15_r20/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/ |
D | CallLogDataSource.java | 71 ListenableFuture<Void> fill(CallLogMutations mutations); in fill()
|
/aosp_15_r20/external/sdk-platform-java/test/integration/goldens/bigtable/samples/snippets/generated/main/java/com/google/cloud/bigtable/data/v2/bigtable/mutaterow/ |
H A D | SyncMutateRowStringBytestringListmutation.java | 43 List<Mutation> mutations = new ArrayList<>(); in syncMutateRowStringBytestringListmutation() local
|
H A D | SyncMutateRowTablenameBytestringListmutation.java | 43 List<Mutation> mutations = new ArrayList<>(); in syncMutateRowTablenameBytestringListmutation() local
|