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

1 2 3

  /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);
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/chromium/net/proxy/
proxy_config_unittest.cc 23 TEST(ProxyConfigTest, Equals) {
32 EXPECT_FALSE(config1.Equals(config2));
33 EXPECT_FALSE(config2.Equals(config1));
37 EXPECT_TRUE(config1.Equals(config2));
38 EXPECT_TRUE(config2.Equals(config1));
44 EXPECT_FALSE(config1.Equals(config2));
45 EXPECT_FALSE(config2.Equals(config1));
49 EXPECT_TRUE(config1.Equals(config2));
50 EXPECT_TRUE(config2.Equals(config1));
58 EXPECT_FALSE(config1.Equals(config2))
    [all...]
proxy_config.h 123 bool Equals(const ProxyConfig& other) const;
  /external/chromium/base/gfx/
rect_unittest.cc 163 TEST(RectTest, Equals) {
164 ASSERT_TRUE(gfx::Rect(0, 0, 0, 0).Equals(gfx::Rect(0, 0, 0, 0)));
165 ASSERT_TRUE(gfx::Rect(1, 2, 3, 4).Equals(gfx::Rect(1, 2, 3, 4)));
166 ASSERT_FALSE(gfx::Rect(0, 0, 0, 0).Equals(gfx::Rect(0, 0, 0, 1)));
167 ASSERT_FALSE(gfx::Rect(0, 0, 0, 0).Equals(gfx::Rect(0, 0, 1, 0)));
168 ASSERT_FALSE(gfx::Rect(0, 0, 0, 0).Equals(gfx::Rect(0, 1, 0, 0)));
169 ASSERT_FALSE(gfx::Rect(0, 0, 0, 0).Equals(gfx::Rect(1, 0, 0, 0)));
219 gfx::Rect(10, 10, 20, 20)).Equals(
225 gfx::Rect(5, 5, 30, 30)).Equals(
231 gfx::Rect(30, 30, 20, 20)).Equals(
    [all...]
rect.h 137 // Returns true if this rectangle equals that of the supplied rectangle.
138 bool Equals(const Rect& rect) const {
  /external/chromium/base/
version.h 23 bool Equals(const Version& other) const;
values.h 102 virtual bool Equals(const Value* other) const;
133 virtual bool Equals(const Value* other) const;
165 virtual bool Equals(const Value* other) const;
190 virtual bool Equals(const Value* other) const;
214 virtual bool Equals(const Value* other) const;
347 virtual bool Equals(const Value* other) const;
version.cc 26 bool Version::Equals(const Version& that) const {
values.cc 138 bool Value::Equals(const Value* other) const {
185 bool FundamentalValue::Equals(const Value* other) const {
253 bool StringValue::Equals(const Value* other) const {
299 bool BinaryValue::Equals(const Value* other) const {
326 bool DictionaryValue::Equals(const Value* other) const {
339 !lhs->Equals(rhs)) {
791 if ((*i)->Equals(&value)) {
824 bool ListValue::Equals(const Value* other) const {
834 if (!(*lhs_it)->Equals(*rhs_it))
values_unittest.cc 484 TEST(ValuesTest, Equals) {
488 EXPECT_TRUE(null1->Equals(null2));
491 EXPECT_FALSE(null1->Equals(boolean));
505 EXPECT_TRUE(dv.Equals(copy));
512 EXPECT_FALSE(dv.Equals(copy));
514 EXPECT_TRUE(dv.Equals(copy));
517 EXPECT_FALSE(dv.Equals(copy));
  /libcore/luni/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/v8/src/
checks.cc 68 if (!expected->Equals(value)) {
84 if (unexpected->Equals(value)) {
  /external/easymock/src/org/easymock/
EasyMock.java 1069 reportMatcher(new Equals(value));
1081 reportMatcher(new Equals(value));
1093 reportMatcher(new Equals(value));
1105 reportMatcher(new Equals(value));
    [all...]
  /external/v8/src/ia32/
jump-target-ia32.cc 59 ASSERT(cgen()->frame()->Equals(entry_frame_));
92 if (cgen()->frame()->Equals(entry_frame_)) {
103 cgen()->frame()->Equals(reaching_frames_[i])) {
125 ASSERT(cgen()->frame()->Equals(entry_frame_));
281 if (!frame->Equals(entry_frame_)) {
305 if (other != NULL && other->Equals(cgen()->frame())) {
  /external/v8/src/x64/
jump-target-x64.cc 59 ASSERT(cgen()->frame()->Equals(entry_frame_));
92 if (cgen()->frame()->Equals(entry_frame_)) {
103 cgen()->frame()->Equals(reaching_frames_[i])) {
125 ASSERT(cgen()->frame()->Equals(entry_frame_));
281 if (!frame->Equals(entry_frame_)) {
305 if (other != NULL && other->Equals(cgen()->frame())) {
  /external/webkit/WebCore/bindings/v8/
DateExtension.cpp 97 if (name->Equals(v8::String::New("Setup")))
99 if (name->Equals(v8::String::New("OnSleepDetected")))
  /external/easymock/src/org/easymock/internal/
ExpectedInvocation.java 25 import org.easymock.internal.matchers.Equals;
65 result.add(new Equals(argument));
71 public boolean equals(Object o) { method in class:ExpectedInvocation
72 if (o == null || !this.getClass().equals(o.getClass()))
76 return this.invocation.equals(other.invocation)
78 .equals(other.matcher)))
80 .equals(other.matchers)));
89 return matchers != null ? this.invocation.getMock().equals(
91 && this.invocation.getMethod().equals(actual.getMethod())
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/function/
tostring-2.js 53 var equals = new TestFunction( "Equals", "a, b", tab+ "return a == b;" );
54 function Equals (a, b) {
109 "Equals.toString()",
110 equals.valueOf(),
111 Equals.toString() );
  /external/v8/test/cctest/
test-log-stack-tracer.cc 116 if (name->Equals(String::New("trace"))) {
118 } else if (name->Equals(String::New("js_trace"))) {
120 } else if (name->Equals(String::New("js_entry_sp"))) {
122 } else if (name->Equals(String::New("js_entry_sp_level2"))) {
test-api.cc 81 CHECK(result->Equals(expected));
    [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 111 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
146 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
235 virtual bool Equals(const ParamIteratorInterface<T>& other) const {
326 virtual bool Equals(const ParamIteratorInterface<T>& other) const {
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 111 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
146 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
235 virtual bool Equals(const ParamIteratorInterface<T>& other) const {
332 virtual bool Equals(const ParamIteratorInterface<T>& other) const {
  /external/chromium/net/base/
x509_certificate.h 41 bool Equals(const Fingerprint& other) const {
  /external/v8/src/arm/
jump-target-arm.cc 141 ASSERT(cgen()->frame()->Equals(entry_frame_));

Completed in 899 milliseconds

1 2 3