/libcore/ojluni/src/main/java/java/util/function/ |
BiPredicate.java | 58 * predicate, if this predicate is {@code false}, then the {@code other} 63 * {@code other} predicate will not be evaluated. 65 * @param other a predicate that will be logically-ANDed with this 68 * AND of this predicate and the {@code other} predicate 69 * @throws NullPointerException if other is null 71 default BiPredicate<T, U> and(BiPredicate<? super T, ? super U> other) { 72 Objects.requireNonNull(other); 73 return (T t, U u) -> test(t, u) && other.test(t, u); 90 * predicate, if this predicate is {@code true}, then the {@code other} 95 * {@code other} predicate will not be evaluated [all...] |
Predicate.java | 54 * predicate, if this predicate is {@code false}, then the {@code other} 59 * {@code other} predicate will not be evaluated. 61 * @param other a predicate that will be logically-ANDed with this 64 * AND of this predicate and the {@code other} predicate 65 * @throws NullPointerException if other is null 67 default Predicate<T> and(Predicate<? super T> other) { 68 Objects.requireNonNull(other); 69 return (t) -> test(t) && other.test(t); 86 * predicate, if this predicate is {@code true}, then the {@code other} 91 * {@code other} predicate will not be evaluated [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/ |
constructors_destructor_fn_imps.hpp | 79 PB_DS_S_TREE_NAME(const PB_DS_CLASS_C_DEC& other) : 80 base_type(other) 89 swap(PB_DS_CLASS_C_DEC& other) 92 PB_DS_ASSERT_VALID(other) 93 base_type::swap(other); 95 PB_DS_ASSERT_VALID(other)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/ |
constructors_destructor_fn_imps.hpp | 79 PB_DS_S_TREE_NAME(const PB_DS_CLASS_C_DEC& other) : 80 base_type(other) 89 swap(PB_DS_CLASS_C_DEC& other) 92 PB_DS_ASSERT_VALID(other) 93 base_type::swap(other); 95 PB_DS_ASSERT_VALID(other)
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/splay_tree_/ |
constructors_destructor_fn_imps.hpp | 79 PB_DS_S_TREE_NAME(const PB_DS_CLASS_C_DEC& other) : 80 base_type(other) 89 swap(PB_DS_CLASS_C_DEC& other) 92 PB_DS_ASSERT_VALID(other) 93 base_type::swap(other); 95 PB_DS_ASSERT_VALID(other)
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/splay_tree_/ |
constructors_destructor_fn_imps.hpp | 79 PB_DS_S_TREE_NAME(const PB_DS_CLASS_C_DEC& other) : 80 base_type(other) 89 swap(PB_DS_CLASS_C_DEC& other) 92 PB_DS_ASSERT_VALID(other) 93 base_type::swap(other); 95 PB_DS_ASSERT_VALID(other)
|
/system/core/libmemunreachable/ |
ScopedPipe.h | 36 ScopedPipe(ScopedPipe&& other) { 37 SetReceiver(other.ReleaseReceiver()); 38 SetSender(other.ReleaseSender()); 41 ScopedPipe& operator = (ScopedPipe&& other) { 42 SetReceiver(other.ReleaseReceiver()); 43 SetSender(other.ReleaseSender());
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
rgn-at2.t | 6 other : ORIGIN = 0x30000, LENGTH = 0x200 11 .data : { *(.data) } >other /* No default AT>rom */ 12 .bss : { *(.bss) } >other
|
/external/fio/lib/ |
rbtree.c | 139 struct rb_node *other; local 145 other = parent->rb_right; 146 if (rb_is_red(other)) 148 rb_set_black(other); 151 other = parent->rb_right; 153 if ((!other->rb_left || rb_is_black(other->rb_left)) && 154 (!other->rb_right || rb_is_black(other->rb_right))) 156 rb_set_red(other); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
numbers.py | 73 def __add__(self, other): 74 """self + other""" 78 def __radd__(self, other): 79 """other + self""" 92 def __sub__(self, other): 93 """self - other""" 94 return self + -other 96 def __rsub__(self, other): 97 """other - self""" 98 return -self + other [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
numbers.py | 73 def __add__(self, other): 74 """self + other""" 78 def __radd__(self, other): 79 """other + self""" 92 def __sub__(self, other): 93 """self - other""" 94 return self + -other 96 def __rsub__(self, other): 97 """other - self""" 98 return -self + other [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
numbers.py | 73 def __add__(self, other): 74 """self + other""" 78 def __radd__(self, other): 79 """other + self""" 92 def __sub__(self, other): 93 """self - other""" 94 return self + -other 96 def __rsub__(self, other): 97 """other - self""" 98 return -self + other [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
numbers.py | 73 def __add__(self, other): 74 """self + other""" 78 def __radd__(self, other): 79 """other + self""" 92 def __sub__(self, other): 93 """self - other""" 94 return self + -other 96 def __rsub__(self, other): 97 """other - self""" 98 return -self + other [all...] |
/art/compiler/utils/arm/ |
managed_register_arm.cc | 24 // Returns true if this managed-register overlaps the other managed-register. 25 bool ArmManagedRegister::Overlaps(const ArmManagedRegister& other) const { 26 if (IsNoRegister() || other.IsNoRegister()) return false; 27 if (Equals(other)) return true; 31 return ArmManagedRegister::FromCoreRegister(low).Overlaps(other) || 32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other); 35 if (other.IsDRegister()) return Equals(other); 36 if (other.IsSRegister()) { 39 SRegister other_sreg = other.AsSRegister() [all...] |
/art/compiler/utils/ |
managed_register.h | 50 ManagedRegister(const ManagedRegister& other) : id_(other.id_) { } 52 ManagedRegister& operator=(const ManagedRegister& other) { 53 id_ = other.id_; 65 bool Equals(const ManagedRegister& other) const { 66 return id_ == other.id_; 92 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset) 93 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { } 95 explicit ManagedRegisterSpill(const ManagedRegister& other) 96 : ManagedRegister(other), size_(-1), spill_offset_(-1) { [all...] |
/art/runtime/base/ |
debug_stack.h | 58 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl 59 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl 67 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl 68 DebugStackIndirectTopRefImpl& operator=(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl 94 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) 95 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) { 97 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) { 98 CHECK(counter_ == other.counter_); 116 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) 117 : ref_(other.ref_) [all...] |
/external/clang/test/CodeGenCXX/ |
2007-04-10-PackedUnion.cpp | 31 L(const L& other); 38 L::L(const L& other) 40 fdata = other.fdata;
|
/external/deqp/framework/delibs/decpp/ |
deSharedPtr.hpp | 112 SharedPtr (const SharedPtr<T>& other); 119 explicit SharedPtr (const SharedPtr<Y>& other); 122 explicit SharedPtr (const WeakPtr<Y>& other); 127 SharedPtr& operator= (const SharedPtr<Y>& other); 128 SharedPtr& operator= (const SharedPtr<T>& other); 131 SharedPtr& operator= (const WeakPtr<Y>& other); 139 void swap (SharedPtr<T>& other); 148 void acquireFromWeak (const WeakPtr<T>& other); 177 WeakPtr (const WeakPtr<T>& other); 179 explicit WeakPtr (const SharedPtr<T>& other); [all...] |
/external/guice/core/src/com/google/inject/matcher/ |
AbstractMatcher.java | 28 public Matcher<T> and(final Matcher<? super T> other) { 29 return new AndMatcher<T>(this, other); 32 public Matcher<T> or(Matcher<? super T> other) { 33 return new OrMatcher<T>(this, other); 48 @Override public boolean equals(Object other) { 49 return other instanceof AndMatcher 50 && ((AndMatcher) other).a.equals(a) 51 && ((AndMatcher) other).b.equals(b); 77 @Override public boolean equals(Object other) { 78 return other instanceof OrMatche [all...] |
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/ |
TJScalingFactor.java | 11 * and/or other materials provided with the distribution. 74 * <code>other</code> have the same numerator and denominator. 77 * <code>other</code> have the same numerator and denominator. 79 public boolean equals(TJScalingFactor other) { 80 return (this.num == other.num && this.denom == other.denom);
|
/frameworks/base/core/java/android/accounts/ |
AccountAndUser.java | 36 final AccountAndUser other = (AccountAndUser) o; 37 return this.account.equals(other.account) 38 && this.userId == other.userId;
|
/frameworks/base/libs/hwui/utils/ |
Macros.h | 27 bool operator==(const Type& other) const; \ 29 bool operator!=(const Type& other) const { return !(*this == other); } \
|
/art/compiler/utils/mips64/ |
managed_register_mips64.cc | 24 bool Mips64ManagedRegister::Overlaps(const Mips64ManagedRegister& other) const { 25 if (IsNoRegister() || other.IsNoRegister()) return false; 27 CHECK(other.IsValidManagedRegister()); 28 if (Equals(other)) return true;
|
/art/test/075-verification-error/src2/other/ |
Mutant.java | 17 package other; package
|
/external/clang/test/SemaObjCXX/Inputs/ |
nullability-consistency-1.h | 8 int *other = ptr; // shouldn't warn local
|