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

12 3 4 5 6 7 8 91011>>

  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
MutableSelection.java 63 public boolean remove(@NonNull K key) { method in class:MutableSelection
64 return super.remove(key);
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
group-6.d 2 #objcopy: --remove-section .text.foo
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.remove/
remove.pass.cpp 14 // bool remove(const path& p);
15 // bool remove(const path& p, error_code& ec) noexcept;
32 ASSERT_SAME_TYPE(decltype(fs::remove(p)), bool);
33 ASSERT_SAME_TYPE(decltype(fs::remove(p, ec)), bool);
35 ASSERT_NOT_NOEXCEPT(fs::remove(p));
36 ASSERT_NOEXCEPT(fs::remove(p, ec));
45 fs::remove(f);
71 TEST_CHECK(!fs::remove(p, ec));
92 TEST_CHECK(remove(p, ec));
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
MultisetRemoveTester.java 36 * Tests for {@code Multiset#remove}, {@code Multiset.removeAll}, and {@code Multiset.retainAll}
46 getMultiset().remove(samples.e0, -1);
55 getMultiset().remove(samples.e0, 2);
63 assertEquals("old count", originalCount, getMultiset().remove(samples.e0, 0));
70 assertEquals("multiset.remove(present, 2) didn't return the old count",
71 1, getMultiset().remove(samples.e0, 2));
72 assertFalse("multiset contains present after multiset.remove(present, 2)",
81 assertEquals("multiset.remove(present, 2) didn't return the old count",
82 3, getMultiset().remove(samples.e0, 2));
83 assertTrue("multiset contains present after multiset.remove(present, 2)"
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
Java5Validator.java 45 remove(noAnnotations);
47 remove(noEnums);
48 remove(noVarargs);
49 remove(noForEach);
50 remove(noStaticImports);
Validators.java 23 public Validators remove(Validator validator) { method in class:Validators
24 if (!validators.remove(validator)) {
25 throw new AssertionError("Trying to remove a validator that isn't there.");
31 remove(oldValidator);
  /frameworks/base/core/java/android/util/
SparseSetArray.java 58 * Remove a value from index n.
61 public boolean remove(int n, T value) { method in class:SparseSetArray
66 final boolean ret = set.remove(value);
68 mData.remove(n);
74 * Remove all values from index n.
76 public void remove(int n) { method in class:SparseSetArray
77 mData.remove(n);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillQueue.java 24 public PreFillType remove() { method in class:PreFillQueue
29 bitmapsPerType.remove(result);
30 keyList.remove(keyIndex);
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 64 public E remove() { method in class:ForwardingQueue
65 return delegate().remove();
109 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
110 * override {@link #remove}, you may wish to override {@link #poll} to forward
117 return remove();
TransformedIterator.java 52 public final void remove() { method in class:TransformedIterator
53 backingIterator.remove();
  /hardware/qcom/gps/msm8909w_3100/core/data-items/common/
ClientIndex.h 55 int remove (CT client);
57 void remove (const std :: list <DIT> & r, std :: list <CT> & out);
59 void remove (CT client, const std :: list <DIT> & r, std :: list <DIT> & out);
DataItemIndex.h 54 int remove (DIT id);
56 void remove (const std :: list <CT> & r, std :: list <DIT> & out);
58 void remove (DIT id, const std :: list <CT> & r, std :: list <CT> & out);
IDataItemIndex.h 52 virtual int remove (DIT id) = 0;
56 virtual void remove
64 virtual void remove
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.remove/
remove.pass.cpp 14 // bool remove(const path& p);
15 // bool remove(const path& p, error_code& ec) noexcept;
32 ASSERT_SAME_TYPE(decltype(fs::remove(p)), bool);
33 ASSERT_SAME_TYPE(decltype(fs::remove(p, ec)), bool);
35 ASSERT_NOT_NOEXCEPT(fs::remove(p));
36 ASSERT_NOEXCEPT(fs::remove(p, ec));
45 fs::remove(f);
70 TEST_CHECK(!fs::remove(p, ec));
84 TEST_CHECK(!fs::remove(p, ec));
104 TEST_CHECK(remove(p, ec))
    [all...]
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 32 std::remove(temp.c_str());
41 std::remove(temp.c_str());
rdbuf.pass.cpp 29 std::remove(temp.c_str());
35 std::remove(temp.c_str());
  /external/llvm/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);
  /frameworks/support/transition/src/main/java/androidx/transition/
ViewGroupOverlayApi14.java 41 public void remove(@NonNull View view) { method in class:ViewGroupOverlayApi14
42 mOverlayViewGroup.remove(view);
ViewOverlayApi18.java 46 public void remove(@NonNull Drawable drawable) { method in class:ViewOverlayApi18
47 mViewOverlay.remove(drawable);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
FileUtilities.h 54 sys::fs::remove(Filename);
60 /// had ownership of a file, remove it first.
64 sys::fs::remove(Filename);

Completed in 2057 milliseconds

12 3 4 5 6 7 8 91011>>