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

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammarHelper.cs 83 if ( f.GetChild( 0 ).Text.Equals( name ) )
88 && !new BigInteger( formalPar.Token.Text ).Equals( paramValue ) )
ProfileTreeGrammarHelper.cs 83 if ( f.GetChild( 0 ).Text.Equals( name ) )
88 && !new BigInteger( formalPar.Token.Text ).Equals( paramValue ) )
  /external/flatbuffers/tests/FlatBuffers.Test/
Assert.cs 80 if (!expected.Equals(actual))
95 if (!expected[i].Equals(actual[i]))
  /external/mockito/src/main/java/org/mockito/internal/matchers/
ArrayEquals.java 11 public class ArrayEquals extends Equals {
22 return Arrays.equals((boolean[]) wanted, (boolean[]) actual);
24 return Arrays.equals((byte[]) wanted, (byte[]) actual);
26 return Arrays.equals((char[]) wanted, (char[]) actual);
28 return Arrays.equals((double[]) wanted, (double[]) actual);
30 return Arrays.equals((float[]) wanted, (float[]) actual);
32 return Arrays.equals((int[]) wanted, (int[]) actual);
34 return Arrays.equals((long[]) wanted, (long[]) actual);
36 return Arrays.equals((short[]) wanted, (short[]) actual);
38 return Arrays.equals((Object[]) wanted, (Object[]) actual)
    [all...]
  /external/v8/src/compiler/
bytecode-liveness-map.h 38 bool Equals(const BytecodeLivenessState& other) const {
39 return bit_vector_.Equals(other.bit_vector_);
  /external/webrtc/talk/media/base/
screencastid.h 86 return window_.Equals(other.window());
88 return desktop_.Equals(other.desktop());
  /external/webrtc/webrtc/base/
window.h 63 bool Equals(const WindowId& other) const {
99 bool Equals(const DesktopId& other) const {
  /frameworks/base/tools/aapt2/optimize/
ResourceDeduper.cpp 56 if (!node_value->value->Equals(parent_value->value.get())) {
69 !node_value->value->Equals(sibling->value.get())) {
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
MapUnittestProto3.cs 374 public override bool Equals(object other) {
375 return Equals(other as TestMap);
378 public bool Equals(TestMap other) {
385 if (!MapInt32Int32.Equals(other.MapInt32Int32)) return false;
386 if (!MapInt64Int64.Equals(other.MapInt64Int64)) return false;
387 if (!MapUint32Uint32.Equals(other.MapUint32Uint32)) return false;
388 if (!MapUint64Uint64.Equals(other.MapUint64Uint64)) return false;
389 if (!MapSint32Sint32.Equals(other.MapSint32Sint32)) return false;
390 if (!MapSint64Sint64.Equals(other.MapSint64Sint64)) return false;
391 if (!MapFixed32Fixed32.Equals(other.MapFixed32Fixed32)) return false
    [all...]
UnittestProto3.cs     [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Wrappers.cs 99 public override bool Equals(object other) {
100 return Equals(other as DoubleValue);
103 public bool Equals(DoubleValue other) {
210 public override bool Equals(object other) {
211 return Equals(other as FloatValue);
214 public bool Equals(FloatValue other) {
321 public override bool Equals(object other) {
322 return Equals(other as Int64Value);
325 public bool Equals(Int64Value other) {
432 public override bool Equals(object other)
    [all...]
  /external/skia/tests/
ColorSpaceTest.cpp 238 REPORTER_ASSERT(r, SkColorSpace::Equals(space, newSpace1.get()));
239 REPORTER_ASSERT(r, SkColorSpace::Equals(space, newSpace2.get()));
294 REPORTER_ASSERT(r, SkColorSpace::Equals(nullptr, nullptr));
295 REPORTER_ASSERT(r, SkColorSpace::Equals(srgb.get(), srgb.get()));
296 REPORTER_ASSERT(r, SkColorSpace::Equals(adobe.get(), adobe.get()));
297 REPORTER_ASSERT(r, SkColorSpace::Equals(z30.get(), z30.get()));
298 REPORTER_ASSERT(r, SkColorSpace::Equals(z32.get(), z32.get()));
299 REPORTER_ASSERT(r, SkColorSpace::Equals(upperLeft.get(), upperLeft.get()));
300 REPORTER_ASSERT(r, SkColorSpace::Equals(upperRight.get(), upperRight.get()));
301 REPORTER_ASSERT(r, SkColorSpace::Equals(rgb4.get(), rgb4.get()))
    [all...]
  /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...]
  /art/runtime/verifier/
reg_type_test.cc 46 EXPECT_TRUE(ref_type_const_0.Equals(ref_type_const_1));
47 EXPECT_FALSE(ref_type_const_0.Equals(ref_type_const_2));
48 EXPECT_FALSE(ref_type_const_0.Equals(ref_type_const_3));
52 EXPECT_TRUE(ref_type_const_wide_0.Equals(ref_type_const_wide_1));
57 EXPECT_TRUE(ref_type_const_wide_2.Equals(ref_type_const_wide_3));
58 EXPECT_FALSE(ref_type_const_wide_2.Equals(ref_type_const_wide_4));
371 EXPECT_TRUE(precise_obj.Equals(precise_obj_2));
372 EXPECT_FALSE(imprecise_obj.Equals(precise_obj));
373 EXPECT_FALSE(imprecise_obj.Equals(precise_obj));
374 EXPECT_FALSE(imprecise_obj.Equals(precise_obj_2))
    [all...]
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 49 bool RawString::Equals(const Value* value) const {
85 bool Reference::Equals(const Value* value) const {
148 bool Id::Equals(const Value* value) const {
164 bool String::Equals(const Value* value) const {
213 bool StyledString::Equals(const Value* value) const {
264 bool FileReference::Equals(const Value* value) const {
301 bool BinaryPrimitive::Equals(const Value* value) const {
378 bool Attribute::Equals(const Value* value) const {
408 return a->symbol.Equals(&b->symbol) && a->value == b->value;
691 bool Style::Equals(const Value* value) const
    [all...]
  /external/flatbuffers/samples/
SampleBinary.cs 79 Assert(monster.Name.Equals("Orc", StringComparison.Ordinal), "monster.Name", monster.Name,
107 Assert(monster.GetWeapons(i).Name.Equals(expectedWeaponNames[i], StringComparison.Ordinal),
118 Assert(equipped.Name.Equals("Axe", StringComparison.Ordinal), "equipped.Name", equipped.Name,
  /external/libmojo/mojo/public/cpp/bindings/tests/
struct_unittest.cc 251 EXPECT_TRUE(output->Equals(*expected_output));
265 EXPECT_TRUE(output->Equals(*expected_output));
281 EXPECT_TRUE(output->Equals(*expected_output));
305 EXPECT_TRUE(output->Equals(*expected_output));
336 EXPECT_TRUE(output->Equals(*expected_output));
360 EXPECT_TRUE(output->Equals(*expected_output));
377 EXPECT_TRUE(output->Equals(*expected_output));
390 EXPECT_TRUE(output->Equals(*expected_output));
402 EXPECT_TRUE(output->Equals(*expected_output));
413 EXPECT_TRUE(output->Equals(*expected_output))
    [all...]
versioning_apptest.cc 47 EXPECT_TRUE(employee->Equals(*returned_employee));
65 EXPECT_TRUE(new_employee->Equals(*returned_employee));
  /art/compiler/optimizing/
parallel_move_resolver.cc 109 if (LowOf(updated_location).Equals(source)) {
111 } else if (HighOf(updated_location).Equals(source)) {
114 DCHECK(updated_location.Equals(source)) << updated_location << " " << source;
187 if (move->GetSource().Equals(destination)) {
251 if (move->GetDestination().Equals(loc)) {
382 CHECK(!loc.Equals(scratch));
391 if (loc.Equals(*it)) {
517 if (move->GetSource().Equals(from)) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeRewriter.cs 70 if (r != null && !t.Equals(r.Tree) && r.Tree != null) {
90 treeChanged = !t.Equals(u);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeRewriter.cs 79 if (showTransformations && r != null && !t.Equals(r.Tree) && r.Tree != null)
100 treeChanged = !t.Equals( u );
  /external/v8/src/ast/
context-slot-cache.cc 34 if ((key.data == data) && key.name->Equals(name)) {
86 DCHECK(key.name->Equals(*name));
  /external/v8/src/crankshaft/
hydrogen-types.h 52 bool Equals(HType other) const WARN_UNUSED_RESULT {
57 return Combine(other).Equals(other);
  /external/libchrome/base/
values_unittest.cc 554 TEST(ValuesTest, Equals) {
558 EXPECT_TRUE(null1->Equals(null2.get()));
561 EXPECT_FALSE(null1->Equals(&boolean));
572 EXPECT_TRUE(dv.Equals(copy.get()));
581 EXPECT_FALSE(dv.Equals(copy.get()));
583 EXPECT_TRUE(dv.Equals(copy.get()));
586 EXPECT_FALSE(dv.Equals(copy.get()));
588 // Check if Equals detects differences in only the keys.
590 EXPECT_TRUE(dv.Equals(copy.get()));
593 EXPECT_FALSE(dv.Equals(copy.get()))
    [all...]
  /external/protobuf/csharp/src/AddressBook/
Addressbook.cs 121 public override bool Equals(object other) {
122 return Equals(other as Person);
125 public bool Equals(Person other) {
135 if(!phones_.Equals(other.phones_)) return false;
284 public override bool Equals(object other) {
285 return Equals(other as PhoneNumber);
288 public bool Equals(PhoneNumber other) {
410 public override bool Equals(object other) {
411 return Equals(other as AddressBook);
414 public bool Equals(AddressBook other)
    [all...]

Completed in 479 milliseconds

1 2 34 5 6 7 8 91011>>