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

1 2 3 4 5 6 7 8 91011>>

  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
RobustMatcher.cpp 30 int removed = 0; local
42 removed++;
48 removed++;
51 return removed;
  /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);
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 40 /** The list of apps that have been removed since the last notify() call. */
41 public ArrayList<ApplicationInfo> removed = new ArrayList<ApplicationInfo>(); field in class:AllAppsList
72 removed.clear();
107 removed.add(info);
124 // Find disabled/removed activities and remove them from data and add them
125 // to the removed list.
132 removed.add(applicationInfo);
164 removed.add(applicationInfo);
  /external/v8/src/
cancelable-task.cc 55 void* removed = cancelable_tasks_.Remove(reinterpret_cast<void*>(id), id); local
56 USE(removed);
57 DCHECK(removed != nullptr);
70 void* removed = cancelable_tasks_.Remove(reinterpret_cast<void*>(id), id); local
71 USE(removed);
72 DCHECK(removed != nullptr);
89 // entries that are to be removed.
  /external/webrtc/webrtc/base/
asyncinvoker.cc 48 MessageList removed; local
49 thread->Clear(this, id, &removed);
50 for (MessageList::iterator it = removed.begin(); it != removed.end(); ++it) {
  /art/compiler/optimizing/
optimizing_unit_test.h 104 // removed in a diff.
105 static const std::string removed = ""; member in namespace:art
119 // Returns if the instruction is removed from the graph.
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_C40Encoder.cpp 54 CFX_WideString removed; local
58 backtrackOneCharacter(context, buffer, removed, lastCharSize, e);
67 backtrackOneCharacter(context, buffer, removed, lastCharSize, e);
175 CFX_WideString& removed,
182 lastCharSize = encodeChar(c, removed, e);
  /external/snakeyaml/src/test/java/examples/staticstate/
StaticFieldsTest.java 99 List<NodeTuple> removed = new ArrayList<NodeTuple>(); local
109 removed.add(tuple);
111 beanNode.setValue(removed);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruBitmapPool.java 150 final Bitmap removed = strategy.removeLast(); local
151 tracker.remove(removed);
152 currentSize -= strategy.getSize(removed);
153 removed.recycle();
156 Log.d(TAG, "Evicting bitmap=" + strategy.logBitmap(removed));
GroupedLinkedMap.java 53 V removed = last.removeLast(); local
54 if (removed != null) {
55 return removed;
  /packages/apps/Launcher3/src/com/android/launcher3/
AllAppsList.java 45 /** The list of apps that have been removed since the last notify() call. */
46 public ArrayList<AppInfo> removed = new ArrayList<AppInfo>(); field in class:AllAppsList
83 removed.clear();
117 removed.add(info);
156 // Find disabled/removed activities and remove them from data and add them
157 // to the removed list.
164 removed.add(applicationInfo);
190 removed.add(applicationInfo);
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestManagerRetriever.java 204 Object removed = null; local
210 removed = pendingRequestManagerFragments.remove(fm);
215 removed = pendingSupportRequestManagerFragments.remove(supportFm);
220 if (handled && removed == null && Log.isLoggable(TAG, Log.WARN)) {
  /external/google-breakpad/src/common/windows/
omap_internal.h 105 // It is possible for code to be removed from the original image. This happens
107 // but the spacing between items may be lost. This keeps track of any removed
109 DWORD removed; member in struct:google_breakpad::MappedRange
  /external/libchrome/base/files/
file_path_unittest.cc 878 FilePath removed = path.RemoveExtension(); local
887 FilePath removed = path.RemoveExtension(); local
    [all...]
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 148 unsigned removed; local
156 // Up to 2 branches are removed.
157 // Note that indirect branches are not removed.
158 for (removed = 0; I != REnd && removed < 2; ++I, ++removed)
164 return removed;
239 // Return if the last instruction cannot be removed.
  /external/skia/include/private/
SkTHash.h 69 if (!s.removed() && hash == s.hash && key == Traits::GetKey(s.val)) {
87 if (!s.removed() && hash == s.hash && key == Traits::GetKey(s.val)) {
102 if (!fSlots[i].empty() && !fSlots[i].removed()) {
112 if (!fSlots[i].empty() && !fSlots[i].removed()) {
125 if (s.empty() || s.removed()) {
127 if (s.removed()) {
158 if (!s.empty() && !s.removed()) {
174 return hash < 2 ? hash+2 : hash; // We reserve hash 0 and 1 to mark empty or removed slots.
180 bool removed() const { return this->hash == 1; } function in struct:SkTHashTable::Slot
  /external/wpa_supplicant_8/src/rsn_supp/
pmksa_cache.c 220 wpa_printf(MSG_DEBUG, "RSN: removed the oldest idle "
265 int removed = 0; local
283 removed++;
289 if (removed)
  /frameworks/base/libs/hwui/
GpuMemoryTracker.cpp 63 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);
  /frameworks/support/v4/java/android/support/v4/util/
CircularArray.java 103 * @return The element removed.
118 * @return The element removed.
160 int removed = (end - mHead); local
161 numOfElements -= removed;
162 mHead = (mHead + removed) & mCapacityBitmask;
193 int removed = (mTail - start); local
194 numOfElements -= removed;
195 mTail = mTail - removed;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractCollectionTest.java 137 final String[] removed = new String[3]; local
155 removed[index - 1] = values[index - 1];
169 for (String r : removed) {
171 fail("an unexpected element was removed");
180 final String[] removed = new String[1]; local
198 removed[index - 1] = values[index - 1];
212 assertEquals("0", removed[0]);
251 fail("an unexpected element was removed");
  /external/glide/library/src/main/java/com/bumptech/glide/
Glide.java 253 * application. Any {@link android.graphics.Bitmap} added to the pool must be removed from the pool before it
258 * Note - To make effective use of the pool, any {@link android.graphics.Bitmap} removed from the pool must
453 ModelLoaderFactory<T, Y> removed = loaderFactory.register(modelClass, resourceClass, factory); local
454 if (removed != null) {
455 removed.teardown();
461 * {@link ModelLoaderFactory} is removed, its {@link ModelLoaderFactory#teardown()}} method will be called.
469 ModelLoaderFactory<T, Y> removed = loaderFactory.unregister(modelClass, resourceClass); local
470 if (removed != null) {
471 removed.teardown();
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ReportAPI.java 18 * We need to gather all added and removed overloads for a method, and then
19 * compare all added against all removed in order to identify this kind of
50 TreeSet<APIInfo> removed; field in class:ReportAPI
58 APIInfo removed; field in class:ReportAPI.DeltaInfo
60 DeltaInfo(APIInfo added, APIInfo removed) {
62 this.removed = removed;
75 removed.print(pw, detail, html);
136 removed = (TreeSet<APIInfo>)oldData.set.clone();
137 removed.removeAll(newData.set)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 362 NestedMapData removed = getChild(path); local
363 if (removed != null) {
364 removed.severNode();
  /external/autotest/frontend/client/src/autotest/common/table/
SelectionManager.java 123 List<JSONObject> removed = new ArrayList<JSONObject>(selectedObjects); local
125 notifyListeners(removed, false);
  /external/dng_sdk/source/
dng_negative.cpp 505 uint32 removed = 0; local
507 while ((removed < 3) && (count > 0) && (data [count - 1] == 0))
509 removed++;
    [all...]

Completed in 574 milliseconds

1 2 3 4 5 6 7 8 91011>>