/libcore/ojluni/src/main/java/java/util/function/ |
DoublePredicate.java | 55 * predicate, if this predicate is {@code false}, then the {@code other} 60 * {@code other} predicate will not be evaluated. 62 * @param other a predicate that will be logically-ANDed with this 65 * AND of this predicate and the {@code other} predicate 66 * @throws NullPointerException if other is null 68 default DoublePredicate and(DoublePredicate other) { 69 Objects.requireNonNull(other); 70 return (value) -> test(value) && other.test(value); 87 * predicate, if this predicate is {@code true}, then the {@code other} 92 * {@code other} predicate will not be evaluated [all...] |
IntPredicate.java | 55 * predicate, if this predicate is {@code false}, then the {@code other} 60 * {@code other} predicate will not be evaluated. 62 * @param other a predicate that will be logically-ANDed with this 65 * AND of this predicate and the {@code other} predicate 66 * @throws NullPointerException if other is null 68 default IntPredicate and(IntPredicate other) { 69 Objects.requireNonNull(other); 70 return (value) -> test(value) && other.test(value); 87 * predicate, if this predicate is {@code true}, then the {@code other} 92 * {@code other} predicate will not be evaluated [all...] |
LongPredicate.java | 55 * predicate, if this predicate is {@code false}, then the {@code other} 60 * {@code other} predicate will not be evaluated. 62 * @param other a predicate that will be logically-ANDed with this 65 * AND of this predicate and the {@code other} predicate 66 * @throws NullPointerException if other is null 68 default LongPredicate and(LongPredicate other) { 69 Objects.requireNonNull(other); 70 return (value) -> test(value) && other.test(value); 87 * predicate, if this predicate is {@code true}, then the {@code other} 92 * {@code other} predicate will not be evaluated [all...] |
/external/llvm/include/llvm/Support/ |
Watchdog.h | 32 Watchdog(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog 33 Watchdog &operator=(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog
|
/external/markdown/tests/misc/ |
headers.txt | 15 Some other text
|
/external/webrtc/webrtc/libjingle/xmllite/ |
qname.h | 31 bool operator==(const QName& other) const; 32 bool operator!=(const QName& other) const; 49 int Compare(const StaticQName& other) const; 50 int Compare(const QName& other) const; 52 bool operator==(const StaticQName& other) const { 53 return Compare(other) == 0; 55 bool operator==(const QName& other) const { 56 return Compare(other) == 0; 58 bool operator!=(const StaticQName& other) const { 59 return Compare(other) != 0 [all...] |
/frameworks/av/camera/ndk/impl/ |
ACaptureRequest.h | 27 bool operator == (const ACameraOutputTarget& other) const { 28 return mWindow == other.mWindow; 30 bool operator != (const ACameraOutputTarget& other) const { 31 return mWindow != other.mWindow; 33 bool operator < (const ACameraOutputTarget& other) const { 34 return mWindow < other.mWindow; 36 bool operator > (const ACameraOutputTarget& other) const { 37 return mWindow > other.mWindow;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/ |
cmp_fn_imps.hpp | 46 operator==(const Other_HT_Map_Type& other) const 47 { return cmp_with_other(other); } 53 cmp_with_other(const Other_Map_Type& other) const 55 if (size() != other.size()) 58 for (typename Other_Map_Type::const_iterator it = other.begin(); 59 it != other.end(); ++it) 82 operator!=(const Other_HT_Map_Type& other) const 83 { return !operator==(other); }
|
/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_/ |
split_join_fn_imps.hpp | 44 join(PB_DS_CLASS_C_DEC& other) 47 PB_DS_ASSERT_VALID(other) 48 if (base_type::join_prep(other) == false) 51 PB_DS_ASSERT_VALID(other) 55 node_pointer p_target_r = other.leftmost(other.m_p_head); 57 other.splay(p_target_r); 59 _GLIBCXX_DEBUG_ASSERT(p_target_r == other.m_p_head->m_p_parent); 71 base_type::join_finish(other); 74 PB_DS_ASSERT_VALID(other) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/ |
cmp_fn_imps.hpp | 46 operator==(const Other_HT_Map_Type& other) const 47 { return cmp_with_other(other); } 53 cmp_with_other(const Other_Map_Type& other) const 55 if (size() != other.size()) 58 for (typename Other_Map_Type::const_iterator it = other.begin(); 59 it != other.end(); ++it) 82 operator!=(const Other_HT_Map_Type& other) const 83 { return !operator==(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_/ |
split_join_fn_imps.hpp | 44 join(PB_DS_CLASS_C_DEC& other) 47 PB_DS_ASSERT_VALID(other) 48 if (base_type::join_prep(other) == false) 51 PB_DS_ASSERT_VALID(other) 55 node_pointer p_target_r = other.leftmost(other.m_p_head); 57 other.splay(p_target_r); 59 _GLIBCXX_DEBUG_ASSERT(p_target_r == other.m_p_head->m_p_parent); 71 base_type::join_finish(other); 74 PB_DS_ASSERT_VALID(other) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/ |
cmp_fn_imps.hpp | 46 operator==(const Other_HT_Map_Type& other) const 47 { return cmp_with_other(other); } 53 cmp_with_other(const Other_Map_Type& other) const 55 if (size() != other.size()) 58 for (typename Other_Map_Type::const_iterator it = other.begin(); 59 it != other.end(); ++it) 82 operator!=(const Other_HT_Map_Type& other) const 83 { return !operator==(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_/ |
split_join_fn_imps.hpp | 44 join(PB_DS_CLASS_C_DEC& other) 47 PB_DS_ASSERT_VALID(other) 48 if (base_type::join_prep(other) == false) 51 PB_DS_ASSERT_VALID(other) 55 node_pointer p_target_r = other.leftmost(other.m_p_head); 57 other.splay(p_target_r); 59 _GLIBCXX_DEBUG_ASSERT(p_target_r == other.m_p_head->m_p_parent); 71 base_type::join_finish(other); 74 PB_DS_ASSERT_VALID(other) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/ |
cmp_fn_imps.hpp | 46 operator==(const Other_HT_Map_Type& other) const 47 { return cmp_with_other(other); } 53 cmp_with_other(const Other_Map_Type& other) const 55 if (size() != other.size()) 58 for (typename Other_Map_Type::const_iterator it = other.begin(); 59 it != other.end(); ++it) 82 operator!=(const Other_HT_Map_Type& other) const 83 { return !operator==(other); }
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/splay_tree_/ |
split_join_fn_imps.hpp | 44 join(PB_DS_CLASS_C_DEC& other) 47 PB_DS_ASSERT_VALID(other) 48 if (base_type::join_prep(other) == false) 51 PB_DS_ASSERT_VALID(other) 55 node_pointer p_target_r = other.leftmost(other.m_p_head); 57 other.splay(p_target_r); 59 _GLIBCXX_DEBUG_ASSERT(p_target_r == other.m_p_head->m_p_parent); 71 base_type::join_finish(other); 74 PB_DS_ASSERT_VALID(other) [all...] |
/system/core/include/utils/ |
String8.h | 74 void setTo(const String8& other); 75 status_t setTo(const char* other); 76 status_t setTo(const char* other, size_t numChars); 77 status_t setTo(const char16_t* other, size_t numChars); 78 status_t setTo(const char32_t* other, 81 status_t append(const String8& other); 82 status_t append(const char* other); 83 status_t append(const char* other, size_t numChars); 96 inline String8& operator=(const String8& other); 97 inline String8& operator=(const char* other); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
functools.py | 56 '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)), 57 ('__le__', lambda self, other: self < other or self == other), 58 ('__ge__', lambda self, other: not self < other)], 59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
functools.py | 56 '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)), 57 ('__le__', lambda self, other: self < other or self == other), 58 ('__ge__', lambda self, other: not self < other)], 59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
functools.py | 56 '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)), 57 ('__le__', lambda self, other: self < other or self == other), 58 ('__ge__', lambda self, other: not self < other)], 59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
functools.py | 56 '__lt__': [('__gt__', lambda self, other: not (self < other or self == other)), 57 ('__le__', lambda self, other: self < other or self == other), 58 ('__ge__', lambda self, other: not self < other)], 59 '__le__': [('__ge__', lambda self, other: not self <= other or self == other) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/ |
split_join_fn_imps.hpp | 45 split(Pred pred, PB_DS_CLASS_C_DEC& other) 48 PB_DS_ASSERT_VALID(other) 50 other.clear(); 55 PB_DS_ASSERT_VALID(other) 65 ++other.m_size; 69 other.push_imp(p_out); 73 PB_DS_ASSERT_VALID(other) 86 PB_DS_ASSERT_VALID(other) 92 join(PB_DS_CLASS_C_DEC& other) 95 PB_DS_ASSERT_VALID(other) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/ |
split_join_fn_imps.hpp | 45 split(Pred pred, PB_DS_CLASS_C_DEC& other) 48 PB_DS_ASSERT_VALID(other) 50 other.clear(); 55 PB_DS_ASSERT_VALID(other) 65 ++other.m_size; 69 other.push_imp(p_out); 73 PB_DS_ASSERT_VALID(other) 86 PB_DS_ASSERT_VALID(other) 92 join(PB_DS_CLASS_C_DEC& other) 95 PB_DS_ASSERT_VALID(other) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pairing_heap_/ |
split_join_fn_imps.hpp | 45 split(Pred pred, PB_DS_CLASS_C_DEC& other) 48 PB_DS_ASSERT_VALID(other) 50 other.clear(); 55 PB_DS_ASSERT_VALID(other) 65 ++other.m_size; 69 other.push_imp(p_out); 73 PB_DS_ASSERT_VALID(other) 86 PB_DS_ASSERT_VALID(other) 92 join(PB_DS_CLASS_C_DEC& other) 95 PB_DS_ASSERT_VALID(other) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pairing_heap_/ |
split_join_fn_imps.hpp | 45 split(Pred pred, PB_DS_CLASS_C_DEC& other) 48 PB_DS_ASSERT_VALID(other) 50 other.clear(); 55 PB_DS_ASSERT_VALID(other) 65 ++other.m_size; 69 other.push_imp(p_out); 73 PB_DS_ASSERT_VALID(other) 86 PB_DS_ASSERT_VALID(other) 92 join(PB_DS_CLASS_C_DEC& other) 95 PB_DS_ASSERT_VALID(other) [all...] |
/art/test/536-checker-needs-access-check/src/other/ |
InaccessibleClassProxy.java | 17 package other; package
|