HomeSort by relevance Sort by last modified time
    Searched refs:updates (Results 26 - 50 of 540) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/services/core/java/com/android/server/updates/
ApnDbInstallReceiver.java 17 package com.android.server.updates;
CarrierIdInstallReceiver.java 17 package com.android.server.updates;
  /frameworks/base/services/tests/servicestests/src/com/android/server/appwidget/
AppWidgetServiceImplTest.java 172 List<PendingHostUpdate> updates = mService.startListening( local
174 assertTrue(updates.isEmpty());
178 * Sends dummy widget updates to {@link #mManager}.
203 List<PendingHostUpdate> updates = mService.startListening( local
205 assertTrue(updates.isEmpty());
216 List<PendingHostUpdate> updates = mService.startListening( local
218 // 3 updates corresponding to the first widget
219 assertEquals(3, updates.size());
230 List<PendingHostUpdate> updates = mService.startListening( local
232 // 4 updates corresponding to the second widge
244 List<PendingHostUpdate> updates = mService.startListening( local
258 List<PendingHostUpdate> updates = mService.startListening( local
290 List<PendingHostUpdate> updates = mService.startListening( local
    [all...]
  /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...]
BatchUpdates.java 79 * Applies the {@code updates} in the underlying presentation template.
81 * <p><b>Note:</b> The updates are applied before the
88 * @param updates a {@link RemoteViews} with the updated actions to be applied in the
95 public Builder updateTemplate(@NonNull RemoteViews updates) {
97 mUpdates = Preconditions.checkNotNull(updates);
109 * {@link #updateTemplate(RemoteViews) updates} are applied to the presentation template.
160 .append(", updates=").append(mUpdates)
207 final RemoteViews updates = parcel.readParcelable(null);
208 if (updates != null) {
209 builder.updateTemplate(updates);
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
scatter_nd_op.cc 62 const Tensor& updates = c->input(1); variable
76 c, indices, updates, shape, &out, true /*allocate*/));
114 // Hold mutex while we apply updates
128 const Tensor& updates = c->input(2); local
170 c, indices, updates, params_shape, &params, false /*allocate*/));
292 // Check whether updates.shape = indices.shape[:batch_dim] +
295 const Tensor& indices, const Tensor& updates) {
302 "Must have updates.shape = indices.shape[:batch_dim] + ",
303 "params_shape[slice_dim:], got updates.shape: ",
304 updates.shape().DebugString()
    [all...]
scatter_nd_op.h 60 // Scatter updates into indices in Tensor out. The argument allocate
69 const Tensor& updates, const TensorShape& shape, Tensor* out,
scatter_functor.cc 34 typename TTypes<T>::ConstMatrix updates, \
  /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/flatbuffers/go/
table.go 297 // MutateBool updates a bool at the given offset.
303 // MutateByte updates a Byte at the given offset.
309 // MutateUint8 updates a Uint8 at the given offset.
315 // MutateUint16 updates a Uint16 at the given offset.
321 // MutateUint32 updates a Uint32 at the given offset.
327 // MutateUint64 updates a Uint64 at the given offset.
333 // MutateInt8 updates a Int8 at the given offset.
339 // MutateInt16 updates a Int16 at the given offset.
345 // MutateInt32 updates a Int32 at the given offset.
351 // MutateInt64 updates a Int64 at the given offset
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/
optimizers.py 91 self.updates = []
181 self.updates = [K.update_add(self.iterations, 1)]
194 self.updates.append(K.update(m, v))
205 self.updates.append(K.update(p, new_p))
206 return self.updates
254 self.updates = [K.update_add(self.iterations, 1)]
265 self.updates.append(K.update(a, new_a))
272 self.updates.append(K.update(p, new_p))
273 return self.updates
316 self.updates = [K.update_add(self.iterations, 1)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ICUServiceTestSample.java 88 String[][] updates = { field in class:ICUServiceTestSample.HelloUpdateThread
99 for (int i = 0; i < updates.length; ++i) {
105 HelloService.register(updates[i][0], new ULocale(updates[i][1]));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceTestSample.java 85 String[][] updates = { field in class:ICUServiceTestSample.HelloUpdateThread
96 for (int i = 0; i < updates.length; ++i) {
102 HelloService.register(updates[i][0], new ULocale(updates[i][1]));
  /external/libopus/doc/
build_isobmff.sh 35 echo downloading updates...
  /external/tensorflow/tensorflow/compiler/tf2xla/lib/
scatter.cc 35 const xla::ComputationDataHandle& updates,
44 builder->GetShape(updates));
79 // succeed since it updates a slice of size 1.
92 // Flatten the major dimensions of indices and updates into a single dimension
106 auto flat_updates = builder->Reshape(updates, flat_updates_shape);
112 // update = dynamic-slice(updates, i)
118 auto updates = loop_vars[1];
138 // Discard updates with negative indices, since some users expect this.
150 // Slice the i-th index from the updates array.
159 auto update = body_builder->DynamicSlice(updates, updates_offset
    [all...]
  /external/tensorflow/tensorflow/python/ops/
state_ops.py 308 def scatter_update(ref, indices, updates, use_locking=True, name=None):
310 r"""Applies sparse updates to a variable reference.
316 ref[indices, ...] = updates[...]
319 ref[indices[i], ...] = updates[i, ...]
322 ref[indices[i, ..., j], ...] = updates[i, ..., j, ...]
329 duplicate entries in `indices`, the order at which the updates happen
332 Requires `updates.shape = indices.shape + ref.shape[1:]`.
342 updates: A `Tensor`. Must have the same type as `ref`.
354 return gen_state_ops.scatter_update(ref, indices, updates,
357 ref.handle, indices, ops.convert_to_tensor(updates, ref.dtype)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
PlayerApplicationSettings.java 121 public void setSupport(PlayerApplicationSettings updates) {
122 mSettings = updates.mSettings;
123 mSupportedValues = updates.mSupportedValues;
126 public void setValues(BluetoothAvrcpPlayerSettings updates) {
127 int supportedSettings = updates.getSettings();
130 mSettings.put(i, updates.getSettingValue(i));
  /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...]
  /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);
  /external/chromium-trace/catapult/systrace/systrace/
update_systrace_trace_viewer.py 68 NO_AUTO_UPDATE_. Future auto-updates will be skipped.
123 'systrace trace viewer html file and disable auto-updates, '
125 'auto-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/
CacheDataUpdatedTaskTest.java 85 HashSet<Long> updates = new HashSet<>(Arrays.asList(idsUpdated)); local
87 if (updates.contains(info.id)) {
  /prebuilts/go/darwin-x86/src/cmd/buildid/
doc.go 6 Buildid displays or updates the build ID stored in a Go package or binary.
  /prebuilts/go/linux-x86/src/cmd/buildid/
doc.go 6 Buildid displays or updates the build ID stored in a Go package or binary.
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 291 final Set<Preference> updates = new ArraySet<>(); local
302 updates.add(p);
311 updates.add(p);
323 updates.add(p);
327 mSettings.setShownPreferences(updates);
337 public void setShownPreferences(final Collection<Preference> updates) {
338 mLegacyVpnPreferences.values().retainAll(updates);
339 mAppPreferences.values().retainAll(updates);
341 // Change {@param updates} in-place to only contain new preferences that were not already
346 if (updates.contains(p))
    [all...]

Completed in 396 milliseconds

12 3 4 5 6 7 8 91011>>