HomeSort by relevance Sort by last modified time
    Searched defs:updates (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/services/core/java/com/android/server/updates/
CarrierProvisioningUrlsInstallReceiver.java 17 package com.android.server.updates;
CertPinInstallReceiver.java 17 package com.android.server.updates;
IntentFirewallInstallReceiver.java 17 package com.android.server.updates;
LangIdInstallReceiver.java 17 package com.android.server.updates;
SmsShortCodesInstallReceiver.java 17 package com.android.server.updates;
NetworkWatchlistInstallReceiver.java 17 package com.android.server.updates;
SmartSelectionInstallReceiver.java 17 package com.android.server.updates;
ApnDbInstallReceiver.java 17 package com.android.server.updates;
CarrierIdInstallReceiver.java 17 package com.android.server.updates;
CertificateTransparencyLogInstallReceiver.java 17 package com.android.server.updates;
  /cts/tests/openglperf2/jni/reference/
GLReference.cpp 42 double updates[numFrames]; local
50 updates[i] = t1 - t0;
54 env->SetDoubleArrayRegion(updateTimes, 0, numFrames, updates);
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/
CallLogMutations.java 28 private final ArrayMap<Long, ContentValues> updates = new ArrayMap<>(); field in class:CallLogMutations
38 Assert.checkArgument(!updates.containsKey(id), "Can't insert row scheduled for update");
58 ContentValues existingContentValues = updates.get(id);
62 updates.put(id, contentValues);
72 Assert.checkArgument(!updates.containsKey(id), "Can't delete row scheduled for update");
79 return inserts.isEmpty() && updates.isEmpty() && deletes.isEmpty();
93 * Get the pending updates.
95 * @return the pending updates where the key is the annotated call log database ID and the values
99 return updates;
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
scatter_nd_op.cc 29 // Check whether updates.shape = indices.shape[:batch_dim] +
45 "Must have updates.shape = indices.shape[:batch_dim] + ",
46 "buffer_shape[num_index_dims:], got updates.shape: ",
99 "Indices and updates specified for empty output. indices shape: ",
109 auto updates = context->Input(1); variable
111 XlaScatter(buffer, updates, indices,
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
PackageInstallStateChangedTaskTest.java 60 HashSet<Long> updates = new HashSet<>(Arrays.asList(idsUpdated)); local
63 assertEquals(updates.contains(info.id) ? progress: 0,
66 assertEquals(updates.contains(info.id) ? progress: -1,
CacheDataUpdatedTaskTest.java 85 HashSet<Long> updates = new HashSet<>(Arrays.asList(idsUpdated)); local
87 if (updates.contains(info.id)) {
  /external/tensorflow/tensorflow/cc/gradients/
array_grad_test.cc 218 auto updates = local
222 auto y = ScatterNd(scope_, indices, updates, {8});
223 RunTest(updates, updates_shape, y, y_shape);
228 auto updates = local
232 auto y = ScatterNd(scope_, indices, updates, {4, 4, 4});
233 RunTest(updates, updates_shape, y, y_shape);
240 auto updates = local
243 auto y = ScatterNdNonAliasingAdd(scope_, input, indices, updates);
244 RunTest({input, updates}, {input_shape, updates_shape}, {y}, {input_shape});
251 auto updates local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
scatter_nd_op_test.cc 202 .contains("The outermost dimension of updates and indices "
204 "updates.shape [3,3]"))
221 .contains("Must have updates.shape = indices.shape[:batch_dim]"))
239 "The outermost dimension of updates and indices must match."))
269 std::vector<float> updates; local
273 updates.push_back(i * 10 + j);
282 updates);
scatter_op_test.cc 187 .contains("Must have updates.shape = indices.shape + "
204 .contains("Must have updates.shape = indices.shape + "
221 .contains("Must have updates.shape = indices.shape + "
252 std::vector<float> updates; local
256 updates.push_back(i * 10 + j);
265 updates);
scatter_op.cc 38 // Check whether updates.shape = indices.shape + params.shape[1:]
39 static bool ValidShapes(const Tensor& params, const Tensor& updates,
41 if (updates.dims() != indices.dims() + params.dims() - 1) return false;
43 if (updates.dim_size(d) != indices.dim_size(d)) {
48 if (params.dim_size(d) != updates.dim_size(d - 1 + indices.dims())) {
56 const Tensor& indices, const Tensor& updates) {
63 c, ValidShapes(params, updates, indices),
65 "Must have updates.shape = indices.shape + params.shape[1:], got ",
66 "updates.shape ", updates.shape().DebugString(), ", indices.shape "
99 const Tensor& updates = c->input(2); local
163 const Tensor& updates = c->input(2); local
    [all...]
  /external/tensorflow/tensorflow/python/layers/
network.py 391 This recursively updates the map `layer_indices`,
602 def updates(self): member in class:GraphNetwork
603 """Retrieve the network's updates.
605 Will only include updates that are either
607 (e.g. will not include updates that were created by layers of this model
610 Effectively, `network.updates` behaves like `layer.updates`.
617 _ = bn(x1) # This creates 2 updates.
620 y2 = bn(x2) # This creates 2 more updates.
622 # The BN layer has now 4 updates
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/model/
PackageInstallStateChangedTask.java 40 * Handles changes due to a sessions updates for a currently installing app.
107 final HashSet<ItemInfo> updates = new HashSet<>(); local
119 updates.add(si);
127 updates.add(widget);
131 if (!updates.isEmpty()) {
135 callbacks.bindRestoreItemsChange(updates);
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
wrappers.py 81 def updates(self): member in class:Wrapper
82 return self.layer.updates + self._updates
468 def updates(self): member in class:Bidirectional
469 if hasattr(self.forward_layer, 'updates'):
470 return self.forward_layer.updates + self.backward_layer.updates
  /packages/apps/Settings/src/com/android/settings/shortcut/
CreateShortcut.java 184 List<ShortcutInfo> updates = new ArrayList<>(); local
195 updates.add(new ShortcutInfo.Builder(mContext, info.getId())
198 if (!updates.isEmpty()) {
199 sm.updateShortcuts(updates);
  /frameworks/base/core/java/android/service/autofill/
CustomDescription.java 176 * Updates the {@link RemoteViews presentation template} when a condition is satisfied by
181 * <p>The updates are applied in the sequence they are added, after the
247 * @param condition condition used to trigger the updates.
248 * @param updates actions to be applied to the
256 public Builder batchUpdate(@NonNull Validator condition, @NonNull BatchUpdates updates) {
260 Preconditions.checkNotNull(updates);
264 mUpdates.add(new Pair<>((InternalValidator) condition, updates));
295 .append(", updates=")
332 final BatchUpdates[] updates = new BatchUpdates[size]; local
337 updates[i] = pair.second
    [all...]
  /packages/apps/Settings/src/com/android/settings/
SettingsInitialize.java 47 * webview setting for non-admin users, and updates the intent flags for any existing shortcuts.
127 final List<ShortcutInfo> updates = new ArrayList<>(); local
134 updates.add(updatedInfo);
136 shortcutManager.updateShortcuts(updates);

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011