Searched refs:Equals (Results 51 - 75 of 744) sorted by relevance

1234567891011>>

/external/chromium_org/net/spdy/
H A Dspdy_session_key.cc38 if (!host_port_proxy_pair_.first.Equals(other.host_port_proxy_pair_.first))
43 bool SpdySessionKey::Equals(const SpdySessionKey& other) const { function in class:net::SpdySessionKey
45 host_port_proxy_pair_.first.Equals(other.host_port_proxy_pair_.first) &&
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dscreen_capturer_helper_unittest.cc39 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(1, 2, 3, 4)).Equals(region));
46 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(1, 2, 6, 4)).Equals(region));
53 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeWH(12, 34)).Equals(region));
68 EXPECT_TRUE(DesktopRegion().Equals(region));
73 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(7, 7, 1, 1)).Equals(region));
79 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(7, 7, 1, 1)).Equals(region));
85 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(7, 7, 1, 1)).Equals(region));
92 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(6, 6, 2, 2)).Equals(region));
98 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(4, 4, 4, 4)).Equals(region));
104 EXPECT_TRUE(DesktopRegion(DesktopRect::MakeXYWH(7, 7, 1, 1)).Equals(regio
[all...]
/external/chromium_org/base/memory/
H A Dref_counted_memory_unittest.cc63 TEST(RefCountedMemoryUnitTest, Equals) {
74 EXPECT_TRUE(mem1->Equals(mem2));
79 EXPECT_FALSE(mem1->Equals(mem3));
80 EXPECT_FALSE(mem2->Equals(mem3));
86 EXPECT_FALSE(mem->Equals(NULL));
/external/chromium_org/extensions/browser/value_store/
H A Dvalue_store_change_unittest.cc27 EXPECT_TRUE(change.new_value()->Equals(expected.get()));
37 EXPECT_TRUE(change.old_value()->Equals(expected.get()));
50 EXPECT_TRUE(change.old_value()->Equals(expected.get()));
54 EXPECT_TRUE(change.new_value()->Equals(expected.get()));
91 EXPECT_TRUE(from_json->Equals(expected_from_json.get()));
/external/chromium_org/net/base/
H A Dhash_value.cc26 bool SHA1HashValue::Equals(const SHA1HashValue& other) const { function in class:net::SHA1HashValue
30 bool SHA256HashValue::Equals(const SHA256HashValue& other) const { function in class:net::SHA256HashValue
34 bool HashValue::Equals(const HashValue& other) const { function in class:net::HashValue
39 return fingerprint.sha1.Equals(other.fingerprint.sha1);
41 return fingerprint.sha256.Equals(other.fingerprint.sha256);
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Derrorcode.cc59 bool ErrorCode::Equals(const ErrorCode& err) const { function in class:sandbox::ErrorCode
70 width_ == err.width_ && passed_->Equals(*err.passed_) &&
71 failed_->Equals(*err.failed_);
99 } else if (!passed_->Equals(*err.passed_)) {
101 } else if (!failed_->Equals(*err.failed_)) {
/external/chromium_org/sync/internal_api/public/base/
H A Denum_set_unittest.cc93 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_2, TEST_3)));
95 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_2, TEST_3, TEST_4)));
101 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_2, TEST_3, TEST_4)));
107 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_3)));
114 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_3, TEST_4)));
116 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_4)));
125 EXPECT_TRUE(enums.Equals(TestEnumSet(TEST_4)));
167 EXPECT_TRUE(enums1.Equals(enums2));
175 EXPECT_TRUE(enums3.Equals(TestEnumSet(TEST_2, TEST_3, TEST_4)));
183 EXPECT_TRUE(enums3.Equals(TestEnumSe
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-hydrogen-types.cc24 CHECK(i == j || !kTypes[i].Equals(kTypes[j]));
33 CHECK(kTypes[i].Equals(kTypes[i]));
51 CHECK(!ti.Equals(tj) || !tj.Equals(tk) || ti.Equals(tk));
93 CHECK(!HType::Any().IsSubtypeOf(ti) || HType::Any().Equals(ti));
102 CHECK(ti.IsTagged() || HType::Any().Equals(ti));
109 HType::Tagged().Equals(ti) ||
110 HType::Any().Equals(ti));
120 ti.Equals(HTyp
[all...]
/external/chromium_org/v8/src/compiler/
H A Doperator.h66 virtual bool Equals(const Operator* other) const = 0;
114 virtual bool Equals(const Operator* that) const FINAL {
140 static bool Equals(T a, T b) { function in struct:v8::internal::compiler::StaticParameterTraits
152 static bool Equals(int a, int b) { return a == b; } function in struct:v8::internal::compiler::StaticParameterTraits
164 static bool Equals(double a, double b) { function in struct:v8::internal::compiler::StaticParameterTraits
178 static bool Equals(Unique<Object> a, Unique<Object> b) { return a == b; } function in struct:v8::internal::compiler::StaticParameterTraits
188 static bool Equals(Unique<Name> a, Unique<Name> b) { return a == b; } function in struct:v8::internal::compiler::StaticParameterTraits
204 static bool Equals(Handle<Object> a, Handle<Object> b) { function in struct:v8::internal::compiler::StaticParameterTraits
226 virtual bool Equals(const Operator* other) const OVERRIDE {
229 return StaticParameterTraits<T>::Equals(thi
[all...]
H A Dvalue-numbering-reducer.cc18 bool Equals(Node* a, Node* b) { function in namespace:v8::internal::compiler::__anon17283
23 if (!a->op()->Equals(b->op())) return false;
64 if (Equals(node, entry->node())) {
/external/chromium_org/chrome/browser/prefs/
H A Dleveldb_pref_store_unittest.cc80 EXPECT_TRUE(orig_value.Equals(actual_value));
92 EXPECT_TRUE(orig_value.Equals(actual_value));
125 EXPECT_TRUE(base::Value::Equals(&value, actual_value));
138 EXPECT_TRUE(orig_value->Equals(actual_value));
149 EXPECT_TRUE(base::Value::Equals(golden_value.get(), retrieved_value));
154 EXPECT_TRUE(base::Value::Equals(golden_value.get(), retrieved_value));
285 EXPECT_TRUE(base::FundamentalValue(false).Equals(value));
288 EXPECT_TRUE(base::FundamentalValue(10).Equals(value));
291 EXPECT_TRUE(base::FundamentalValue(10.3).Equals(value));
294 EXPECT_TRUE(base::StringValue("some string").Equals(valu
[all...]
/external/clang/include/clang/Basic/
H A DABI.h67 bool Equals(const VirtualAdjustment &Other) const { function in union:clang::ReturnAdjustment::VirtualAdjustment
73 return Equals(Zero);
87 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
135 bool Equals(const VirtualAdjustment &Other) const { function in union:clang::ThisAdjustment::VirtualAdjustment
141 return Equals(Zero);
155 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
/external/chromium_org/tools/json_schema_compiler/test/
H A Dadditional_properties_unittest.cc22 EXPECT_TRUE(type->additional_properties.Equals(type_value.get()));
43 EXPECT_TRUE(params->param_object.additional_properties.Equals(
61 EXPECT_TRUE(base::Value::Equals(
/external/chromium_org/base/
H A Dsequence_checker_impl.cc26 return sequence_token_.Equals(
H A Dversion.h46 bool Equals(const Version& other) const;
/external/chromium_org/base/strings/
H A Dnullable_string16_unittest.cc17 TEST(NullableString16Test, Equals) {
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_contents_resizing_strategy.h22 bool Equals(const DevToolsContentsResizingStrategy& strategy);
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_renderer_data.h39 bool Equals(const TabRendererData& data);
/external/chromium_org/chrome/renderer/
H A Dbenchmarking_extension.cc65 if (name->Equals(v8::String::NewFromUtf8(isolate, "GetCounter"))) {
67 } else if (name->Equals(
70 } else if (name->Equals(
73 } else if (name->Equals(v8::String::NewFromUtf8(isolate, "HiResTime"))) {
/external/chromium_org/chromeos/network/
H A Dnetwork_type_pattern.h44 bool Equals(const NetworkTypePattern& other) const;
/external/chromium_org/components/content_settings/core/common/
H A Dpermission_request_id.cc22 bool PermissionRequestID::Equals(const PermissionRequestID& other) const { function in class:PermissionRequestID
/external/chromium_org/components/history/core/common/
H A Dthumbnail_score.h27 bool Equals(const ThumbnailScore& rhs) const;
/external/chromium_org/components/invalidation/
H A Dack_handle.h28 bool Equals(const AckHandle& other) const;
/external/chromium_org/components/policy/core/common/
H A Dexternal_data_fetcher.h33 static bool Equals(const ExternalDataFetcher* first,
H A Dpolicy_provider_android_unittest.cc86 EXPECT_TRUE(provider.Get()->policies().Equals(kEmptyBundle));
100 EXPECT_TRUE(provider.Get()->policies().Equals(expected_policy_bundle));
114 EXPECT_TRUE(provider.Get()->policies().Equals(expected_policy_bundle));
123 EXPECT_TRUE(provider.Get()->policies().Equals(expected_policy_bundle));

Completed in 639 milliseconds

1234567891011>>