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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCacheListener.java 27 * @param removed true if the service was removed
29 void onServiceChanged(V type, int userId, boolean removed);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
deprecated.l 2 [^:]*:4: Warning: system register name 'spsr_svc' is deprecated and may be removed in a future release
3 [^:]*:5: Warning: system register name 'spsr_hyp' is deprecated and may be removed in a future release
  /prebuilts/go/darwin-x86/test/
nilptr3.go 7 // Test that nil checks are removed.
43 _ = *intp // ERROR "removed nil check"
45 // This one should be removed but the block copy needs
48 _ = *arrayp // ERROR "removed nil check"
51 // we don't registerize globals, so there are no removed.* nil checks.
52 _ = *array0p // ERROR "removed nil check"
56 _ = *arrayp // ERROR "removed nil check"
74 _ = *intp // ERROR "removed.* nil check"
75 _ = *arrayp // ERROR "removed.* nil check"
76 _ = *array0p // ERROR "removed.* nil check
    [all...]
  /prebuilts/go/linux-x86/test/
nilptr3.go 7 // Test that nil checks are removed.
43 _ = *intp // ERROR "removed nil check"
45 // This one should be removed but the block copy needs
48 _ = *arrayp // ERROR "removed nil check"
51 // we don't registerize globals, so there are no removed.* nil checks.
52 _ = *array0p // ERROR "removed nil check"
56 _ = *arrayp // ERROR "removed nil check"
74 _ = *intp // ERROR "removed.* nil check"
75 _ = *arrayp // ERROR "removed.* nil check"
76 _ = *array0p // ERROR "removed.* nil check
    [all...]
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
ObservableArrayMap.java 60 boolean removed = false;
64 removed = true;
68 return removed;
73 boolean removed = false;
78 removed = true;
81 return removed;
  /external/libpng/scripts/
checksym.awk 20 removed[1] = "" # removed symbols from png.h
63 # 'removed' symbols, introduced in png.h using PNG_REMOVED rather
68 # ; symbol @ordinal # three fields, removed symbol
80 NF==3 && $1 == ";" && $3 ~ /^@[1-9][0-9]*$/ { # removed symbol
82 if (removed[o] == "" || removed[o] == $2) {
83 removed[o] = $2
86 print "png.h: duplicated removed symbol", o ": '" removed[o] "' != '" $2 "'
    [all...]
  /external/deqp/scripts/
caselist_diff.py 165 # returns (added, removed) lists
168 removed = []
178 # build removed set
181 removed.append(case)
183 return (added, removed)
195 added, removed = diffCaseLists(renamedCases, newCases)
206 for case in removed:
  /art/tools/ahat/src/
style.css 25 span.removed {
  /external/curl/lib/
splay.h 44 struct Curl_tree **removed);
49 struct Curl_tree **removed);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cvslock.py 13 (and removed again), to test that we can write the repository. [The
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
eh-frame4.d 28 # basic2 removed
31 # basic3 removed
34 # basic4 removed
93 # FDE for .discard removed
94 # zPR2 removed
107 # basic1 removed, followed by repeat of above
143 # FDE for .discard removed
144 # zPR2 removed
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 83 * values will still be removed.
108 * not be added, but existing values will still be removed.
145 boolean removed = false;
149 removed = true;
152 return removed;
  /libcore/ojluni/src/main/java/java/util/
Collection.java 300 * @param o element to be removed from this collection, if present
301 * @return <tt>true</tt> if an element was removed as a result of this call
368 * @param c collection containing elements to be removed from this collection
394 * its {@link #iterator}. Each matching element is removed using
400 * removed
401 * @return {@code true} if any elements were removed
403 * @throws UnsupportedOperationException if elements cannot be removed
405 * matching element cannot be removed or if, in general, removal is not
411 boolean removed = false;
416 removed = true
    [all...]
  /art/compiler/optimizing/
constant_folding_test.cc 127 { " 3: Neg(2) [4]\n", removed },
141 { " 2: IntConstant\n", removed },
188 { " 3: Neg(2) [4]\n", removed },
202 { " 2: LongConstant\n", removed },
249 { " 4: Add(2, 3) [5]\n", removed },
263 { " 2: IntConstant\n", removed },
264 { " 3: IntConstant\n", removed }
326 { " 4: Add(2, 3) [8]\n", removed },
327 { " 7: Add(5, 6) [8]\n", removed },
328 { " 8: Add(4, 7) [9]\n", removed },
    [all...]
  /libcore/ojluni/src/main/java/java/util/prefs/
AbstractPreferences.java 163 * been removed. Once it's set to true, it will never be reset to false.
165 private boolean removed = false; field in class:AbstractPreferences
226 * has not been removed, invokes {@link #putSpi(String,String)}, and if
237 * removed with the {@link #removeNode()} method.
248 if (removed)
249 throw new IllegalStateException("Node has been removed.");
263 * checks that the node has not been removed, invokes {@link
274 * removed with the {@link #removeNode()} method.
282 if (removed)
283 throw new IllegalStateException("Node has been removed.")
    [all...]
  /frameworks/support/compat/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;
  /external/v8/src/
cancelable-task.cc 45 size_t removed = cancelable_tasks_.erase(id); local
46 USE(removed);
47 DCHECK_NE(0u, removed);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
MemoryCache.java 11 * An interface that will be called whenever a bitmap is removed from the cache.
14 void onResourceRemoved(Resource<?> removed);
56 * Set the listener to be called when a bitmap is removed from the cache.
  /external/pdfium/xfa/fxbarcode/datamatrix/
BC_C40Encoder.h 32 CFX_WideString& 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) {
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ViewGroupBindingAdapter.java 50 final OnChildViewRemoved removed) {
51 if (added == null && removed == null) {
64 if (removed != null) {
65 removed.onChildViewRemoved(parent, child);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
backward_warning.h 34 may be removed without further notice at a future date. Please use a \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
backward_warning.h 34 may be removed without further notice at a future date. Please use a \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
backward_warning.h 34 may be removed without further notice at a future date. Please use a \
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
backward_warning.h 34 may be removed without further notice at a future date. Please use a \

Completed in 1517 milliseconds

1 2 3 4 5 6 7 8 91011>>