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

1 2

  /frameworks/base/tools/preload/
PrintHtmlDiff.java 27 * Prints HTML containing removed and added files.
52 Set<LoadedClass> removed = new TreeSet<LoadedClass>(); local
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);
  /external/bluetooth/glib/tests/
tree-test.c 109 gboolean removed; local
128 removed = g_tree_remove (tree, &chars[i + 10]);
129 g_assert (removed);
133 removed = g_tree_remove (tree, &c);
134 g_assert (removed == FALSE);
231 removed = g_tree_remove (tree, &c);
232 g_assert (removed);
239 removed = g_tree_steal (tree, &c);
240 g_assert (removed);
  /external/qemu/memcheck/
memcheck_malloc_map.c 279 int removed = 0; local
282 removed++;
288 return removed;
memcheck_mmrange_map.c 228 int removed = 0; local
232 removed++;
235 return removed;
  /libcore/luni/src/main/java/java/util/prefs/
FilePreferencesImpl.java 86 //cache for removed prefs key-value pair
87 private Set<String> removed = new HashSet<String>(); field in class:FilePreferencesImpl
158 //if removed, return
165 Iterator<String> it = removed.iterator();
169 removed.clear();
226 removed.add(key);
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 43 /** The list of apps that have been removed since the last notify() call. */
44 public ArrayList<ApplicationInfo> removed = new ArrayList<ApplicationInfo>(); field in class:AllAppsList
75 removed.clear();
109 removed.add(info);
123 // Find disabled/removed activities and remove them from data and add them
124 // to the removed list.
130 removed.add(applicationInfo);
159 removed.add(applicationInfo);
  /external/bluetooth/glib/gio/
gvolume.h 80 * @removed: The removed signal that is emitted when the #GVolume have been removed. If the recipient is holding references to the object they should release them so the object can be finalized.
114 void (* removed) (GVolume *volume); member in struct:_GVolumeIface
gunixvolumemonitor.c 262 GList **removed)
266 *added = *removed = NULL;
274 *removed = g_list_prepend (*removed, list1->data);
291 *removed = g_list_prepend (*removed, list1->data);
346 GList *removed, *added; local
356 &added, &removed);
358 for (l = removed; l != NULL; l = l->next)
368 g_signal_emit_by_name (monitor, "volume-removed", volume)
398 GList *removed, *added; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/
SDL_timer.c 108 SDL_bool removed; local
114 removed = SDL_FALSE;
153 removed = SDL_TRUE;
158 if ( ! removed ) {
209 SDL_bool removed; local
211 removed = SDL_FALSE;
223 removed = SDL_TRUE;
229 printf("SDL_RemoveTimer(%08x) = %d num_timers = %d thread = %d\n", (Uint32)id, removed, SDL_timer_running, SDL_ThreadID());
232 return removed;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
AbstractCollectionTest.java 136 final String[] removed = new String[3]; local
153 removed[index - 1] = values[index - 1];
167 for (String r : removed) {
169 fail("an unexpected element was removed");
178 final String[] removed = new String[1]; local
195 removed[index - 1] = values[index - 1];
209 assertEquals("0", removed[0]);
247 fail("an unexpected element was removed");
  /libcore/luni/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockNodeChangeListener.java 14 private int removed = 0; field in class:MockNodeChangeListener
99 removed++;
124 return removed;
130 removed = 0;
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 121 // Find out which drafts were removed and added and notify
125 Set<Long> removed = new HashSet<Long>(oldDraftSet); local
126 removed.removeAll(newDraftSet);
132 for (long threadId : removed) {
  /external/wpa_supplicant/
eloop.c 280 int removed = 0; local
297 removed++;
304 return removed;
eloop_none.c 172 int removed = 0; local
189 removed++;
196 return removed;
eloop_win.c 295 int removed = 0; local
312 removed++;
319 return removed;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop_none.c 172 int removed = 0; local
189 removed++;
196 return removed;
eloop_win.c 295 int removed = 0; local
312 removed++;
319 return removed;
eloop.c 290 int removed = 0; local
307 removed++;
314 return removed;
  /frameworks/base/tools/aapt/
Package.cpp 139 int i, removed = 0; local
149 removed++;
152 if (bundle->getVerbose() && removed > 0)
153 printf("Removed %d file%s\n", removed, (removed==1) ? "" : "s");
277 * NOTE: this restriction has been removed. If you're in this code, you
  /external/bluetooth/bluez/audio/
telephony-ofono.c 986 dbus_bool_t added, removed; local
993 DBUS_TYPE_BOOLEAN, &removed,
  /external/qemu/distrib/sdl-1.2.12/src/joystick/darwin/
SDL_sysjoystick.c 94 int removed; member in struct:joystick_hwdata
158 device->removed = 1;
729 if (device->removed) /* device was unplugged; ignore it. */
  /external/webkit/JavaScriptCore/runtime/
Structure.cpp 463 bool removed = transition->despecifyFunction(replaceFunction); local
464 ASSERT_UNUSED(removed, removed);
    [all...]
  /frameworks/base/services/java/com/android/server/
ProcessStats.java 204 public boolean removed; field in class:ProcessStats.Stats
245 if (sta.removed != stb.removed) {
491 st.removed = true;
495 if (DEBUG) Slog.v(TAG, "Removed "
511 st.removed = true;
515 if (localLOGV) Slog.v(TAG, "Removed pid " + st.pid + ": " + st);
719 printProcessCPU(pw, st.added ? " +" : (st.removed ? " -": " "),
722 if (!st.removed && st.workingThreads != null) {
727 tst.added ? " +" : (tst.removed ? " -": " ")
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 116 boolean removed; // has app package been removed from device? field in class:ProcessRecord
183 pw.print(" removed="); pw.println(removed);
259 removed = false;
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 84 * threads disappear they are removed and only referenced by their
348 // removed = old-new
349 Set<Thread> removed = new HashSet<Thread>(o); local
350 removed.removeAll(n);
364 for (Thread thread : removed) {

Completed in 386 milliseconds

1 2