Searched refs:removed (Results 1 - 25 of 96) sorted by relevance

1234

/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCacheListener.java27 * @param removed true if the service was removed
29 void onServiceChanged(V type, int userId, boolean removed); argument
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DObservableArrayMap.java60 boolean removed = false;
64 removed = true;
68 return removed;
73 boolean removed = false;
78 removed = true;
81 return removed;
/frameworks/support/compat/java/android/support/v4/util/
H A DCircularArray.java103 * @return The element removed.
118 * @return The element removed.
160 int removed = (end - mHead);
161 numOfElements -= removed;
162 mHead = (mHead + removed) & mCapacityBitmask;
193 int removed = (mTail - start);
194 numOfElements -= removed;
195 mTail = mTail - removed;
H A DArraySet.java44 * standard Java containers it will shrink its array as items are removed from it. Currently
532 * @param array The array whose contents are to be removed.
762 * @return Returns true if any values were removed from the array set, else false.
766 boolean removed = false;
768 removed |= remove(value);
770 return removed;
777 * @return Returns true if any values were removed from the array set, else false.
781 boolean removed = false;
785 removed = true;
788 return removed;
[all...]
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DViewGroupBindingAdapter.java50 final OnChildViewRemoved removed) {
51 if (added == null && removed == null) {
64 if (removed != null) {
65 removed.onChildViewRemoved(parent, child);
49 setListener(ViewGroup view, final OnChildViewAdded added, final OnChildViewRemoved removed) argument
/frameworks/base/libs/hwui/
H A DGpuMemoryTracker.cpp63 size_t removed = gObjectSet.erase(this); local
64 LOG_ALWAYS_FATAL_IF(removed != 1,
65 "stopTrackingObject removed %zd, is %p not being tracked?",
66 removed, this);
H A DCanvasState.h48 virtual void onSnapshotRestored(const Snapshot& removed, const Snapshot& restored) = 0;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiMulticastLockManager.java171 Multicaster removed = mMulticasters.remove(i);
173 if (removed != null) {
174 removed.unlinkDeathRecipient();
/frameworks/base/cmds/uiautomator/library/
H A DAndroid.mk91 $(uiautomator_api_dir)/removed.txt, \
110 $(uiautomator_api_dir)/removed.txt, \
123 @echo Copying uiautomator removed.txt
124 $(hide) cp $(PRIVATE_REMOVED_API_FILE) $(PRIVATE_API_DIR)/removed.txt
/frameworks/base/core/java/android/net/
H A DLinkProperties.java74 public List<T> removed = new ArrayList<T>(); field in class:LinkProperties.CompareResult
79 String retVal = "removed=[";
80 for (T addr : removed) retVal += addr.toString() + ",";
276 * @return true if the address was removed, false if it did not exist.
345 * @return true if the DNS server was removed, false if it did not exist.
485 * {@code LinkProperties}, or it will not be removed.
487 * @return {@code true} if the route was removed, {@code false} if it was not present.
563 * removed. Otherwise, nothing changes.
566 * @return true if the link was removed, false otherwise.
571 LinkProperties removed
[all...]
/frameworks/base/tools/preload/
H A DPrintHtmlDiff.java27 * Prints HTML containing removed and added files.
52 Set<LoadedClass> removed = new TreeSet<LoadedClass>();
67 if (!clazz.preloaded) removed.add(clazz);
79 out.println("<p><a href=\"#removed\">Removed</a>");
82 out.println("<a name=\"removed\"/><h2>Removed</h2>");
83 printTable(out, root.baseline, removed);
/frameworks/base/location/java/android/location/
H A DLocalListenerHelper.java78 boolean removed = mListeners.containsKey(listener);
80 boolean isLastRemoved = removed && mListeners.isEmpty();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupManager.java75 public void onEntryRemoved(NotificationData.Entry removed) { argument
76 onEntryRemovedInternal(removed, removed.notification);
77 mIsolatedEntries.remove(removed.key);
81 * An entry was removed.
83 * @param removed the removed entry
87 private void onEntryRemovedInternal(NotificationData.Entry removed, argument
99 group.children.remove(removed);
277 // If the suppression of a group changes because the last child was removed, thi
[all...]
/frameworks/base/core/java/android/content/
H A DUndoManager.java307 int removed = 0;
309 while (i < mUndos.size() && removed < count) {
314 removed++;
320 return removed;
328 int removed = 0;
330 while (i < mRedos.size() && removed < count) {
335 removed++;
341 return removed;
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/
H A DMDNSFilteredDiscovery.java195 boolean removed = mPrinters.remove(serviceInfo.getHost());
197 if (removed) {
/frameworks/native/services/vr/hardware_composer/aidl/android/dvr/
H A Dparcelable_composer_frame.cpp28 ret = parcel->writeBool(frame_.removed);
70 ret = parcel->readBool(&frame_.removed);
/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java108 // Our interface was removed. Clear our LinkProperties and tell our owner that they are
109 // now empty. Note that from the moment that the interface is removed, any further
356 DnsServerEntry removed = mAllServers.remove(i);
357 mIndex.remove(removed.address);
358 changed |= mCurrentServers.remove(removed.address);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHotplugDetectionAction.java154 // At first, check removed devices.
155 BitSet removed = complement(currentInfos, polledResult);
157 while ((index = removed.nextSetBit(index + 1)) != -1) {
173 if (!removed.get(Constants.ADDR_AUDIO_SYSTEM)) {
/frameworks/native/services/vr/hardware_composer/tests/
H A Dvr_composer_test.cpp106 frame.removed = false;
127 ASSERT_EQ(frame.removed, received_frame.removed);
/frameworks/base/tools/aapt/
H A DPackage.cpp145 int i, removed = 0; local
155 removed++;
158 if (bundle->getVerbose() && removed > 0)
159 printf("Removed %d file%s\n", removed, (removed==1) ? "" : "s");
263 * NOTE: this restriction has been removed. If you're in this code, you
/frameworks/base/core/java/android/util/
H A DArraySet.java41 * standard Java containers it will shrink its array as items are removed from it. Currently
542 * @param array The array whose contents are to be removed.
772 * @return Returns true if any values were removed from the array set, else false.
776 boolean removed = false;
778 removed |= remove(value);
780 return removed;
787 * @return Returns true if any values were removed from the array set, else false.
791 boolean removed = false;
795 removed = true;
798 return removed;
[all...]
/frameworks/base/services/net/java/android/net/ip/
H A DRouterAdvertisementDaemon.java202 boolean removed = decrementCounter(mPrefixes);
203 removed |= decrementCounter(mDnses);
204 return removed;
208 boolean removed = false;
215 removed = true;
221 return removed;
689 // At least one deprecated PIO has been removed;
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java245 public boolean removed; field in class:ProcessCpuTracker.Stats
287 if (sta.removed != stb.removed) {
568 st.removed = true;
588 st.removed = true;
783 printProcessCPU(pw, st.added ? " +" : (st.removed ? " -": " "),
786 if (!st.removed && st.workingThreads != null) {
791 tst.added ? " +" : (tst.removed ? " -": " "),
/frameworks/base/core/java/com/android/internal/util/
H A DCallbackRegistry.java49 * A bit flag for the first 64 listeners that are removed during notification.
57 * Bit flags for the remaining callbacks that are removed during notification.
113 * Notify up to the first Long.SIZE callbacks that don't have a bit set in <code>removed</code>.
133 * long (64 callbacks) worth of information of which has been removed.
184 * for whether they have been removed or not. bits should be from mRemainderRemoved or
196 * @param bits A bit field indicating which callbacks have been removed and shouldn't
252 * on the bits set in removed.
254 * @param removed The bits indicating removal, where each bit is set for one callback
255 * to be removed.
257 private void removeRemovedCallbacks(int startIndex, long removed) { argument
[all...]
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DCallbackRegistry.java51 * A bit flag for the first 64 listeners that are removed during notification.
59 * Bit flags for the remaining callbacks that are removed during notification.
111 * Notify up to the first Long.SIZE callbacks that don't have a bit set in <code>removed</code>.
181 * for whether they have been removed or not. bits should be from mRemainderRemoved or
193 * @param bits A bit field indicating which callbacks have been removed and shouldn't
252 * on the bits set in removed.
255 * @param removed The bits indicating removal, where each bit is set for one callback
256 * to be removed.
258 private void removeRemovedCallbacks(int startIndex, long removed) { argument
264 if ((removed
[all...]

Completed in 942 milliseconds

1234