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

1 2 3 45 6 7 8 91011>>

  /art/runtime/arch/arm/
instruction_set_features_arm.h 50 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /art/runtime/arch/mips/
instruction_set_features_mips.h 52 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /art/runtime/arch/x86/
instruction_set_features_x86.h 53 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /external/easymock/src/org/easymock/internal/matchers/
ArrayEquals.java 22 public class ArrayEquals extends Equals {
35 return Arrays.equals((boolean[]) expected, (boolean[]) actual);
38 return Arrays.equals((byte[]) expected, (byte[]) actual);
41 return Arrays.equals((char[]) expected, (char[]) actual);
44 return Arrays.equals((double[]) expected, (double[]) actual);
47 return Arrays.equals((float[]) expected, (float[]) actual);
50 return Arrays.equals((int[]) expected, (int[]) actual);
53 return Arrays.equals((long[]) expected, (long[]) actual);
56 return Arrays.equals((short[]) expected, (short[]) actual);
59 return Arrays.equals((Object[]) expected, (Object[]) actual);
    [all...]
  /external/libchrome/base/memory/
ref_counted_memory.cc 11 bool RefCountedMemory::Equals(
  /external/libchrome/base/metrics/
user_metrics.cc 60 if ((*callbacks)[i].Equals(callback)) {
  /external/libmojo/mojo/public/cpp/bindings/
associated_interface_ptr_info.h 58 bool Equals(const AssociatedInterfacePtrInfo& other) const {
  /external/mockito/src/test/java/org/mockito/internal/invocation/
InvocationMatcherTest.java 26 import org.mockito.internal.matchers.Equals;
60 assertFalse(withOneArg.equals(null));
61 assertFalse(withOneArg.equals(withTwoArgs));
68 ArgumentMatcher mTwo = new Equals('x');
69 InvocationMatcher equals = new InvocationMatcher(new InvocationBuilder().toInvocation(), asList(mTwo)); local
72 assertThat(equals.toString()).contains("simpleMethod('x')");
125 InvocationMatcher invocationMatcher = new InvocationMatcher(invocation, (List) asList(new Equals("1"), capturingMatcher));
155 InvocationMatcher invocationMatcher = new InvocationMatcher(invocation, Arrays.<ArgumentMatcher>asList(new Equals(1), m));
  /external/skia/include/core/
SkColorSpace.h 165 static bool Equals(const SkColorSpace* src, const SkColorSpace* dst);
  /external/skia/src/core/
SkImageInfoPriv.h 119 if (dst.colorSpace() && !SkColorSpace::Equals(dst.colorSpace(), src.colorSpace())) {
  /external/v8/src/
v8threads.h 82 return mutex_owner_.Equals(ThreadId::Current());
v8threads.cc 103 if (lazily_archived_thread_.Equals(ThreadId::Current())) {
269 DCHECK(lazily_archived_thread_.Equals(ThreadId::Invalid()));
279 DCHECK(state->id().Equals(ThreadId::Invalid()));
281 DCHECK(!state->id().Equals(ThreadId::Invalid()));
357 if (thread_id.Equals(state->id())) {
  /external/webrtc/talk/app/webrtc/
statstypes.h 232 // this Equals() function. It simply calls the protected (and overridden)
233 // Equals() method.
234 bool Equals(const rtc::scoped_refptr<IdBase>& other) const {
235 return Equals(*other.get());
242 virtual bool Equals(const IdBase& other) const;
275 bool Equals(const Value& other) const;
  /system/bt/service/common/bluetooth/
characteristic.h 41 bool Equals(const Characteristic& other) const;
service.h 41 bool Equals(const Service& other) const;
  /external/libchrome/base/
values.h 105 virtual bool Equals(const Value* other) const;
109 static bool Equals(const Value* a, const Value* b);
136 bool Equals(const Value* other) const override;
165 bool Equals(const Value* other) const override;
197 bool Equals(const Value* other) const override;
381 bool Equals(const Value* other) const override;
486 // Searches for the first instance of |value| in the list using the Equals
505 bool Equals(const Value* other) const override;
  /external/v8/src/compiler/
load-elimination.h 60 bool Equals(AbstractChecks const* that) const;
95 bool Equals(AbstractElements const* that) const;
134 bool Equals(AbstractField const* that) const {
138 if (this->Equals(that)) return this;
179 bool Equals(AbstractMaps const* that) const {
183 if (this->Equals(that)) return this;
211 bool Equals(AbstractState const* that) const;
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestIssues.cs 112 public override bool Equals(object other) {
113 return Equals(other as Issue307);
116 public bool Equals(Issue307 other) {
190 public override bool Equals(object other) {
191 return Equals(other as NestedOnce);
194 public bool Equals(NestedOnce other) {
268 public override bool Equals(object other) {
269 return Equals(other as NestedTwice);
272 public bool Equals(NestedTwice other) {
385 public override bool Equals(object other)
    [all...]
UnittestImportProto3.cs 91 public override bool Equals(object other) {
92 return Equals(other as ImportMessage);
95 public bool Equals(ImportMessage other) {
UnittestImportPublicProto3.cs 77 public override bool Equals(object other) {
78 return Equals(other as PublicImportMessage);
81 public bool Equals(PublicImportMessage other) {
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Struct.cs 118 public override bool Equals(object other) {
119 return Equals(other as Struct);
122 public bool Equals(Struct other) {
129 if (!Fields.Equals(other.Fields)) return false;
331 public override bool Equals(object other) {
332 return Equals(other as Value);
335 public bool Equals(Value other) {
346 if (!object.Equals(StructValue, other.StructValue)) return false;
347 if (!object.Equals(ListValue, other.ListValue)) return false;
537 public override bool Equals(object other)
    [all...]
Empty.cs 78 public override bool Equals(object other) {
79 return Equals(other as Empty);
82 public bool Equals(Empty other) {
SourceContext.cs 86 public override bool Equals(object other) {
87 return Equals(other as SourceContext);
90 public bool Equals(SourceContext other) {
  /art/runtime/mirror/
object_test.cc 68 ASSERT_TRUE(string->Equals(utf8_in) || (expected_utf16_length == 1 && strlen(utf8_in) == 0));
69 ASSERT_TRUE(string->Equals(StringPiece(utf8_in)) ||
424 EXPECT_TRUE(string->Equals("android"));
425 EXPECT_FALSE(string->Equals("Android"));
426 EXPECT_FALSE(string->Equals("ANDROID"));
427 EXPECT_FALSE(string->Equals(""));
428 EXPECT_FALSE(string->Equals("and"));
429 EXPECT_FALSE(string->Equals("androids"));
432 EXPECT_TRUE(empty->Equals(""));
433 EXPECT_FALSE(empty->Equals("a"))
    [all...]
  /art/runtime/
intern_table_test.cc 46 EXPECT_TRUE(foo_1->Equals("foo"));
47 EXPECT_TRUE(foo_2->Equals("foo"));
48 EXPECT_TRUE(foo_3->Equals("foo"));
212 ASSERT_TRUE(foo->Equals("foo"));
213 ASSERT_TRUE(bar->Equals("bar"));
214 ASSERT_TRUE(foobar->Equals("foobar"));

Completed in 924 milliseconds

1 2 3 45 6 7 8 91011>>