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

1 2 3 4 5 6 7 8 91011>>

  /system/bt/service/common/bluetooth/
characteristic.cc 40 bool Characteristic::Equals(const Characteristic& other) const {
48 return Equals(rhs);
52 return !Equals(rhs);
descriptor.cc 36 bool Descriptor::Equals(const Descriptor& other) const {
41 bool Descriptor::operator==(const Descriptor& rhs) const { return Equals(rhs); }
44 return !Equals(rhs);
service.cc 39 bool Service::Equals(const Service& other) const {
45 bool Service::operator==(const Service& rhs) const { return Equals(rhs); }
47 bool Service::operator!=(const Service& rhs) const { return !Equals(rhs); }
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
encodingoption.cc 36 bool EncodingOption::Equals(const EncodingOption& other) const {
  /external/libchrome/base/
callback.h 69 bool Equals(const Callback& other) const {
  /external/libmojo/mojo/public/cpp/bindings/lib/
equals_traits.h 21 static char Test(decltype(&U::Equals));
34 bool Equals(const T& a, const T& b);
38 static bool Equals(const T& a, const T& b) { return a.Equals(b); }
43 static bool Equals(const T& a, const T& b) { return a == b; }
48 static bool Equals(const base::Optional<T>& a, const base::Optional<T>& b) {
54 return internal::Equals(*a, *b);
60 static bool Equals(const std::vector<T>& a, const std::vector<T>& b) {
64 if (!internal::Equals(a[i], b[i]))
73 static bool Equals(const std::unordered_map<K, V>& a
    [all...]
native_struct.cc 26 bool NativeStruct::Equals(const NativeStruct& other) const {
wtf_clone_equals_util.h 46 static bool Equals(const WTF::Vector<T>& a, const WTF::Vector<T>& b) {
50 if (!internal::Equals(a[i], b[i]))
59 static bool Equals(const WTF::HashMap<K, V>& a, const WTF::HashMap<K, V>& b) {
68 if (b_iter == b_end || !internal::Equals(iter->value, b_iter->value))
  /art/runtime/arch/mips64/
instruction_set_features_mips64.cc 91 bool Mips64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Equals.java 19 * $Id: Equals.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Equals extends Operation
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
68 boolean result = left.equals(right) ? true : false;
  /external/easymock/src/org/easymock/internal/matchers/
Equals.java 23 public class Equals implements IArgumentMatcher, Serializable {
29 public Equals(Object expected) {
37 return expected.equals(actual);
49 public boolean equals(Object o) { method in class:Equals
50 if (o == null || !this.getClass().equals(o.getClass()))
52 Equals other = (Equals) o;
55 && this.expected.equals(other.expected);
  /external/libmojo/mojo/public/cpp/bindings/
associated_interface_ptr_info.h 59 bool Equals(const AssociatedInterfacePtrInfo& other) const {
associated_interface_request.h 59 bool Equals(const AssociatedInterfaceRequest& other) const {
interface_request.h 76 bool Equals(const InterfaceRequest& other) const {
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Equals.java 13 public class Equals implements ArgumentMatcher<Object>, ContainsExtraTypeInfo, Serializable {
17 public Equals(Object wanted) {
38 public boolean equals(Object o) { method in class:Equals
39 if (o == null || !this.getClass().equals(o.getClass())) {
42 Equals other = (Equals) o;
43 return this.wanted == null && other.wanted == null || this.wanted != null && this.wanted.equals(other.wanted);
  /external/libchrome/base/memory/
ref_counted_memory.cc 11 bool RefCountedMemory::Equals(
  /external/libchrome/base/metrics/
bucket_ranges.cc 135 bool BucketRanges::Equals(const BucketRanges* other) const {
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Empty.cs 78 public override bool Equals(object other) {
79 return Equals(other as Empty);
82 public bool Equals(Empty other) {
  /art/compiler/utils/
managed_register.h 64 // It is valid to invoke Equals on and with a NoRegister.
65 constexpr bool Equals(const ManagedRegister& other) const {
  /art/runtime/arch/arm64/
instruction_set_features_arm64.cc 103 bool Arm64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /art/runtime/arch/mips/
instruction_set_features_mips.cc 169 bool MipsInstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 195 public override bool Equals(object other) {
273 return this.and(a).equals(this);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 224 public override bool Equals( object other )
322 return this.and(a).equals(this);
  /external/libchrome/base/threading/
sequenced_worker_pool.h 134 bool Equals(const SequenceToken& other) const {
  /external/protobuf/csharp/src/Google.Protobuf/Collections/
ReadOnlyDictionary.cs 132 public override bool Equals(object obj)
134 return wrapped.Equals(obj);

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>