HomeSort by relevance Sort by last modified time
    Searched refs:Equals (Results 51 - 75 of 628) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libmojo/mojo/public/cpp/bindings/
native_struct.h 40 bool Equals(const NativeStruct& other) const;
associated_interface_request.h 58 bool Equals(const AssociatedInterfaceRequest& other) const {
struct_ptr.h 81 bool Equals(const StructPtr& other) const {
84 return ptr_->Equals(*other.ptr_);
172 bool Equals(const InlinedStructPtr& other) const {
175 return value_.Equals(other.value_);
  /external/webrtc/webrtc/modules/desktop_capture/mac/
desktop_configuration.h 55 // Returns true if the given desktop configuration equals this one.
56 bool Equals(const MacDesktopConfiguration& other);
  /frameworks/base/tools/aapt2/
ResourceValues_test.cpp 42 EXPECT_FALSE(a.Equals(&b));
43 EXPECT_TRUE(a.Equals(&c));
54 EXPECT_TRUE(a.Equals(b.get()));
75 EXPECT_FALSE(a.Equals(&b));
76 EXPECT_FALSE(a.Equals(&c));
77 EXPECT_FALSE(b.Equals(&c));
78 EXPECT_TRUE(a.Equals(&d));
89 EXPECT_TRUE(a.Equals(b.get()));
135 EXPECT_FALSE(a->Equals(b.get()));
136 EXPECT_FALSE(a->Equals(c.get()))
    [all...]
  /system/bt/service/common/bluetooth/
descriptor.h 32 bool Equals(const Descriptor& other) const;
  /system/media/brillo/audio/audioservice/
audio_service_callback.h 64 // Returns true if |callback| equals this.
65 bool Equals(const android::sp<AudioServiceCallback>& callback);
  /art/runtime/arch/
instruction_set_features.h 68 virtual bool Equals(const InstructionSetFeatures* other) const = 0;
71 // least the options we claim it has. In this cases Equals() does not
79 // instruction_set_features test will fail if we resort to using Equals()
82 // For now we default this to Equals() in case the architecture does not
85 return Equals(other);
  /external/mockito/src/main/java/org/mockito/internal/invocation/
ArgumentsProcessor.java 9 import org.mockito.internal.matchers.Equals;
50 matchers.add(new Equals(arg));
  /external/mockito/src/main/java/org/mockito/
ArgumentMatchers.java 18 import org.mockito.internal.matchers.Equals;
784 reportMatcher(new Equals(value));
799 reportMatcher(new Equals(value));
814 reportMatcher(new Equals(value));
829 reportMatcher(new Equals(value));
844 reportMatcher(new Equals(value));
859 reportMatcher(new Equals(value));
874 reportMatcher(new Equals(value));
887 reportMatcher(new Equals(value));
902 reportMatcher(new Equals(value))
    [all...]
  /art/compiler/utils/mips64/
managed_register_mips64.cc 28 if (Equals(other)) return true;
  /art/runtime/arch/arm64/
instruction_set_features_arm64.h 50 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /art/runtime/arch/mips64/
instruction_set_features_mips64.h 51 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /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/guava/guava/src/com/google/common/base/
Equivalence.java 30 * equivalences are the {@linkplain #identity() identity equivalence} and {@linkplain #equals equals
126 * Equivalence<Person> SAME_AGE = Equivalence.equals().onResultOf(GET_PERSON_AGE);}</pre>
145 * {@link Wrapper#equals(Object) Object.equals()} such that
146 * {@code wrap(a).equals(wrap(b))} if and only if {@code equivalent(a, b)}.
155 * Wraps an object so that {@link #equals(Object)} and {@link #hashCode()} delegate to an
162 * equiv.wrap("a").equals(equiv.wrap("b")) // true
163 * equiv.wrap("a").equals(equiv.wrap("hello")) // false}</pre>
168 * equiv.wrap(obj).equals(obj) // always false}</pre
191 @Override public boolean equals(@Nullable Object obj) { method in class:Equivalence.Wrapper
272 @Override public boolean equals(@Nullable Object obj) { method in class:Equivalence.EquivalentToPredicate
305 public static Equivalence<Object> equals() { method in class:Equivalence
    [all...]
  /external/libchrome/base/
callback.h 371 bool Equals(const Callback& other) const {
  /external/libchrome/base/metrics/
bucket_ranges.h 59 bool Equals(const BucketRanges* other) const;
  /external/stressapptest/src/
adler32memcpy.h 28 bool Equals(const AdlerChecksum &other) const;
  /external/v8/src/compiler/
value-numbering-reducer.cc 28 bool Equals(Node* a, Node* b) {
33 if (!a->op()->Equals(b->op())) return false;
134 if (Equals(entry, node)) {
156 if (Equals(entry, node)) {
  /external/v8/src/crankshaft/
hydrogen-alias-analysis.h 47 return a->Equals(b) ? kMustAlias : kNoAlias;
  /external/webrtc/talk/app/webrtc/
statstypes.cc 93 bool Equals(const IdBase& other) const override {
94 return IdBase::Equals(other) &&
111 bool Equals(const IdBase& other) const override {
112 return IdBase::Equals(other) &&
132 bool Equals(const IdBase& other) const override {
133 return TypedId::Equals(other) &&
168 bool Equals(const IdBase& other) const override {
169 return IdBase::Equals(other) &&
205 bool Equals(const IdBase& other) const override {
206 return ComponentId::Equals(other) &
    [all...]
  /frameworks/av/media/libeffects/loudness/common/core/
basic_types.h 106 bool Equals(const WaveData &wave_data, int threshold = 0) const;
  /external/guava/guava-testlib/test/com/google/common/testing/anotherpackage/
ForwardingWrapperTesterTest.java 103 @Override public boolean equals(Object o) {
106 return runnable.equals(that.runnable);
120 @Override public boolean equals(Object o) {
123 return runnable.equals(that.runnable);
413 private interface Equals {
414 @Override boolean equals(Object obj); method in interface:ForwardingWrapperTesterTest.Equals
419 private static class NoDelegateToEquals implements Equals {
421 private static Function<Equals, Equals> WRAPPER = new Function<Equals, Equals>()
    [all...]
  /art/compiler/utils/arm/
managed_register_arm.cc 27 if (Equals(other)) return true;
35 if (other.IsDRegister()) return Equals(other);
  /art/compiler/utils/mips/
managed_register_mips.cc 28 if (Equals(other)) return true;
36 if (other.IsDRegister()) return Equals(other);

Completed in 1146 milliseconds

1 23 4 5 6 7 8 91011>>