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

1 2 34 5 6 7 8 91011>>

  /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/test/cctest/
test-global-object.cc 84 ->Equals(env1.local(), result->Get(env1.local(), 0).ToLocalChecked())
88 ->Equals(env1.local(), result->Get(env1.local(), 1).ToLocalChecked())
test-api-interceptors.cc 230 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
239 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
249 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
260 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
269 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
279 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
289 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
299 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
309 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom)
319 ->Equals(info.GetIsolate()->GetCurrentContext(), bottom
    [all...]
test-threads.cc 49 CHECK(!(*refs_)[i].Equals(thread_id));
  /system/connectivity/shill/
socket_info_unittest.cc 38 EXPECT_TRUE(info1.local_ip_address().Equals(info2.local_ip_address()));
40 EXPECT_TRUE(info1.remote_ip_address().Equals(info2.remote_ip_address()));
socket_info_reader_unittest.cc 100 EXPECT_TRUE(info1.local_ip_address().Equals(info2.local_ip_address()));
102 EXPECT_TRUE(info1.remote_ip_address().Equals(info2.remote_ip_address()));
277 EXPECT_TRUE(ip_address.Equals(
283 EXPECT_TRUE(ip_address.Equals(StringToIPv6Address(kIPv6AddressPattern1)));
298 EXPECT_TRUE(ip_address.Equals(StringToIPv4Address(kIPv4AddressAllZeros)));
301 EXPECT_TRUE(ip_address.Equals(StringToIPv4Address(kIPv4Address_127_0_0_1)));
304 EXPECT_TRUE(ip_address.Equals(
308 EXPECT_TRUE(ip_address.Equals(
313 EXPECT_TRUE(ip_address.Equals(StringToIPv6Address(kIPv6AddressAllZeros)));
317 EXPECT_TRUE(ip_address.Equals(StringToIPv6Address(kIPv6AddressPattern1)))
    [all...]
active_link_monitor.cc 250 if (!connection_->local().address().Equals(
256 if (!local_mac_address_.Equals(packet.remote_mac_address())) {
261 if (!connection_->gateway().address().Equals(
289 if (!gateway_mac_address_.Equals(packet.local_mac_address())) {
arp_client_unittest.cc 108 destination_mac.Equals(socket_mac);
113 byte_data.GetLength()).Equals(byte_data);
250 EXPECT_TRUE(reply.local_ip_address().Equals(packet.local_ip_address()));
251 EXPECT_TRUE(reply.local_mac_address().Equals(packet.local_mac_address()));
252 EXPECT_TRUE(reply.remote_ip_address().Equals(packet.remote_ip_address()));
253 EXPECT_TRUE(reply.remote_mac_address().Equals(packet.remote_mac_address()));
255 sender.Equals(ByteString(kSenderBytes, arraysize(kSenderBytes))));
  /external/libchrome/base/
values_unittest.cc 548 TEST(ValuesTest, Equals) {
552 EXPECT_TRUE(null1->Equals(null2.get()));
555 EXPECT_FALSE(null1->Equals(&boolean));
566 EXPECT_TRUE(dv.Equals(copy.get()));
575 EXPECT_FALSE(dv.Equals(copy.get()));
577 EXPECT_TRUE(dv.Equals(copy.get()));
580 EXPECT_FALSE(dv.Equals(copy.get()));
582 // Check if Equals detects differences in only the keys.
584 EXPECT_TRUE(dv.Equals(copy.get()));
587 EXPECT_FALSE(dv.Equals(copy.get()))
    [all...]
values.h 108 virtual bool Equals(const Value* other) const;
112 static bool Equals(const Value* a, const Value* b);
139 bool Equals(const Value* other) const override;
168 bool Equals(const Value* other) const override;
199 bool Equals(const Value* other) const override;
380 bool Equals(const Value* other) const override;
484 // Searches for the first instance of |value| in the list using the Equals
503 bool Equals(const Value* other) const override;
  /external/libweave/third_party/chromium/base/
values_unittest.cc 515 TEST(ValuesTest, Equals) {
519 EXPECT_TRUE(null1->Equals(null2.get()));
522 EXPECT_FALSE(null1->Equals(&boolean));
532 EXPECT_TRUE(dv.Equals(copy.get()));
541 EXPECT_FALSE(dv.Equals(copy.get()));
543 EXPECT_TRUE(dv.Equals(copy.get()));
546 EXPECT_FALSE(dv.Equals(copy.get()));
548 // Check if Equals detects differences in only the keys.
550 EXPECT_TRUE(dv.Equals(copy.get()));
553 EXPECT_FALSE(dv.Equals(copy.get()))
    [all...]
values.h 106 virtual bool Equals(const Value* other) const;
110 static bool Equals(const Value* a, const Value* b);
137 bool Equals(const Value* other) const override;
162 bool Equals(const Value* other) const override;
193 bool Equals(const Value* other) const override;
368 bool Equals(const Value* other) const override;
469 // Searches for the first instance of |value| in the list using the Equals
488 bool Equals(const Value* other) const override;
  /art/runtime/arch/
instruction_set_features.h 66 virtual bool Equals(const InstructionSetFeatures* other) const = 0;
  /art/runtime/arch/mips/
instruction_set_features_mips.h 48 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /art/runtime/arch/x86/
instruction_set_features_x86.h 49 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
  /art/runtime/mirror/
string.cc 134 bool String::Equals(String* that) {
156 bool String::Equals(const uint16_t* that_chars, int32_t that_offset, int32_t that_length) {
169 bool String::Equals(const char* modified_utf8) {
196 bool String::Equals(const StringPiece& modified_utf8) {
string.h 128 // we unify this with Equals(const StringPiece&); ?
129 bool Equals(const char* modified_utf8) SHARED_REQUIRES(Locks::mutator_lock_);
134 bool Equals(const StringPiece& modified_utf8)
137 bool Equals(String* that) SHARED_REQUIRES(Locks::mutator_lock_);
143 bool Equals(const uint16_t* that_chars, int32_t that_offset,
  /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/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/v8/test/cctest/compiler/
test-run-jsexceptions.cc 56 CHECK(t == message->Get()->Equals(context, v8_str("Uncaught Error: Wat?")));
59 CHECK(t == message->Get()->Equals(context, v8_str("Uncaught Kaboom!")));
79 CHECK(t == message->Get()->Equals(context, v8_str("Uncaught Error: Wat?")));
82 CHECK(t == message->Get()->Equals(context, v8_str("Uncaught Kaboom!")));
  /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;

Completed in 1784 milliseconds

1 2 34 5 6 7 8 91011>>