HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 26 - 50 of 5794) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/public/browser/
notification_source.h 21 NotificationSource(const NotificationSource& other) : ptr_(other.ptr_) {}
29 bool operator!=(const NotificationSource& other) const {
30 return ptr_ != other.ptr_;
32 bool operator==(const NotificationSource& other) const {
33 return ptr_ == other.ptr_;
49 Source(const NotificationSource& other) // NOLINT
50 : NotificationSource(other) {}
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyleDefs.cpp 47 StyleFillData::StyleFillData(const StyleFillData& other)
49 , opacity(other.opacity)
50 , paintType(other.paintType)
51 , paintColor(other.paintColor)
52 , paintUri(other.paintUri)
53 , visitedLinkPaintType(other.visitedLinkPaintType)
54 , visitedLinkPaintColor(other.visitedLinkPaintColor)
55 , visitedLinkPaintUri(other.visitedLinkPaintUri)
59 bool StyleFillData::operator==(const StyleFillData& other) const
61 return opacity == other.opacit
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.cpp 12 * documentation and/or other materials provided with the distribution.
66 int IDBKey::compare(const IDBKey* other) const
68 ASSERT(other);
69 if (m_type != other->m_type)
70 return m_type > other->m_type ? -1 : 1;
74 for (size_t i = 0; i < m_array.size() && i < other->m_array.size(); ++i) {
75 if (int result = m_array[i]->compare(other->m_array[i].get()))
78 return compareNumbers(m_array.size(), other->m_array.size());
80 if (int result = memcmp(m_binary->data(), other->m_binary->data(), std::min(m_binary->size(), other->m_binary->size()))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
qname.h 12 * and/or other materials provided with the distribution.
48 bool operator==(const QName& other) const;
49 bool operator!=(const QName& other) const;
66 int Compare(const StaticQName& other) const;
67 int Compare(const QName& other) const;
69 bool operator==(const StaticQName& other) const {
70 return Compare(other) == 0;
72 bool operator==(const QName& other) const {
73 return Compare(other) == 0;
75 bool operator!=(const StaticQName& other) const
    [all...]
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
qname.h 31 bool operator==(const QName& other) const;
32 bool operator!=(const QName& other) const;
49 int Compare(const StaticQName& other) const;
50 int Compare(const QName& other) const;
52 bool operator==(const StaticQName& other) const {
53 return Compare(other) == 0;
55 bool operator==(const QName& other) const {
56 return Compare(other) == 0;
58 bool operator!=(const StaticQName& other) const {
59 return Compare(other) != 0
    [all...]
  /external/markdown/tests/misc/
headers.txt 15 Some other text
  /external/chromium_org/components/password_manager/core/browser/
password_store_change.h 30 bool operator==(const PasswordStoreChange& other) const {
31 return type() == other.type() &&
32 form().signon_realm == other.form().signon_realm &&
33 form().origin == other.form().origin &&
34 form().action == other.form().action &&
35 form().submit_element == other.form().submit_element &&
36 form().username_element == other.form().username_element &&
37 form().username_value == other.form().username_value &&
38 form().password_element == other.form().password_element &&
39 form().password_value == other.form().password_value &
    [all...]
  /external/chromium_org/tools/gn/
location.cc 27 bool Location::operator==(const Location& other) const {
28 return other.file_ == file_ &&
29 other.line_number_ == line_number_ &&
30 other.char_offset_ == char_offset_;
33 bool Location::operator!=(const Location& other) const {
34 return !operator==(other);
37 bool Location::operator<(const Location& other) const {
38 DCHECK(file_ == other.file_);
39 if (line_number_ != other.line_number_)
40 return line_number_ < other.line_number_
    [all...]
  /external/chromium_org/components/history/core/browser/
url_row.cc 30 URLRow& URLRow::operator=(const URLRow& other) {
31 id_ = other.id_;
32 url_ = other.url_;
33 title_ = other.title_;
34 visit_count_ = other.visit_count_;
35 typed_count_ = other.typed_count_;
36 last_visit_ = other.last_visit_;
37 hidden_ = other.hidden_;
41 void URLRow::Swap(URLRow* other) {
42 std::swap(id_, other->id_)
    [all...]
  /external/chromium_org/content/browser/shared_worker/
worker_storage_partition.cc 39 const WorkerStoragePartition& other) {
40 Copy(other);
50 const WorkerStoragePartition& other) const {
51 return url_request_context_.get() == other.url_request_context_.get() &&
53 other.media_url_request_context_.get() &&
54 appcache_service_.get() == other.appcache_service_.get() &&
55 quota_manager_.get() == other.quota_manager_.get() &&
56 filesystem_context_.get() == other.filesystem_context_.get() &&
57 database_tracker_.get() == other.database_tracker_.get() &&
58 indexed_db_context_.get() == other.indexed_db_context_.get() &
    [all...]
  /external/clang/test/Modules/Inputs/
category_other.h 3 @interface Foo(Other)
4 -(void)other;
  /cts/tools/dasm/src/java_cup/
action_part.java 57 public boolean equals(action_part other)
60 return other != null && super.equals(other) &&
61 other.code_string().equals(code_string());
67 public boolean equals(Object other)
69 if (!(other instanceof action_part))
72 return equals((action_part)other);
production_part.java 51 public boolean equals(production_part other)
53 if (other == null) return false;
57 return label().equals(other.label());
59 return other.label() == null;
65 public boolean equals(Object other)
67 if (!(other instanceof production_part))
70 return equals((production_part)other);
  /external/chromium_org/components/content_settings/core/common/
permission_request_id.cc 22 bool PermissionRequestID::Equals(const PermissionRequestID& other) const {
23 return IsForSameTabAs(other) && (bridge_id_ == other.bridge_id_) &&
24 (origin_ == other.origin());
28 const PermissionRequestID& other) const {
29 return (render_process_id_ == other.render_process_id_) &&
30 (render_view_id_ == other.render_view_id_);
  /external/chromium_org/ppapi/shared_impl/
compositor_layer_data.cc 25 const CompositorLayerData& other) {
26 DCHECK(other.is_null() || other.is_valid());
28 common = other.common;
29 Copy(&color, other.color);
30 Copy(&texture, other.texture);
31 Copy(&image, other.image);
  /external/chromium_org/third_party/skia/include/gpu/
GrClipData.h 33 bool operator==(const GrClipData& other) const {
34 if (fOrigin != other.fOrigin) {
38 if (fClipStack && other.fClipStack) {
39 return *fClipStack == *other.fClipStack;
42 return fClipStack == other.fClipStack;
45 bool operator!=(const GrClipData& other) const {
46 return !(*this == other);
  /external/icu/icu4c/source/i18n/
currunit.cpp 34 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) :
35 MeasureUnit(other) {
36 u_strcpy(isoCode, other.isoCode);
39 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) {
40 if (this == &other) {
43 MeasureUnit::operator=(other);
44 u_strcpy(isoCode, other.isoCode);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
Nullable.h 25 Nullable(const Nullable& other)
26 : m_value(other.m_value)
27 , m_isNull(other.m_isNull) { }
29 Nullable& operator=(const Nullable& other)
31 m_value = other.m_value;
32 m_isNull = other.m_isNull;
49 bool operator==(const Nullable& other) const
51 return (m_isNull && other.m_isNull) || (!m_isNull && !other.m_isNull && m_value == other.m_value)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
measure.cpp 33 Measure::Measure(const Measure& other) :
34 UObject(other), unit(0) {
35 *this = other;
38 Measure& Measure::operator=(const Measure& other) {
39 if (this != &other) {
41 number = other.number;
42 unit = (MeasureUnit*) other.unit->clone();
51 UBool Measure::operator==(const UObject& other) const {
52 const Measure* m = (const Measure*) &other;
53 return typeid(*this) == typeid(other) &
    [all...]
  /external/chromium_org/components/autofill/core/common/
form_data_predictions.cc 12 FormDataPredictions::FormDataPredictions(const FormDataPredictions& other)
13 : data(other.data),
14 signature(other.signature),
15 experiment_id(other.experiment_id),
16 fields(other.fields) {
  /external/chromium_org/components/policy/core/common/
policy_namespace.h 36 PolicyNamespace(const PolicyNamespace& other);
39 PolicyNamespace& operator=(const PolicyNamespace& other);
40 bool operator<(const PolicyNamespace& other) const;
41 bool operator==(const PolicyNamespace& other) const;
42 bool operator!=(const PolicyNamespace& other) const;
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSTransitionData.cpp 17 CSSTransitionData::CSSTransitionData(const CSSTransitionData& other)
18 : CSSTimingData(other)
19 , m_propertyList(other.m_propertyList)
23 bool CSSTransitionData::transitionsMatchForStyleRecalc(const CSSTransitionData& other) const
25 return m_propertyList == other.m_propertyList;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-stats.h 30 bool Equivalent(const HeapProfileStats& other) const {
31 return allocs - frees == other.allocs - other.frees &&
32 alloc_size - free_size == other.alloc_size - other.free_size;
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageScaleConstraints.cpp 12 * in the documentation and/or other materials provided with the
44 void PageScaleConstraints::overrideWith(const PageScaleConstraints& other)
46 if (other.initialScale != -1) {
47 initialScale = other.initialScale;
49 minimumScale = std::min(minimumScale, other.initialScale);
51 if (other.minimumScale != -1)
52 minimumScale = other.minimumScale;
53 if (other.maximumScale != -1)
54 maximumScale = other.maximumScale;
55 if (!other.layoutSize.isEmpty()
    [all...]
  /external/chromium_org/v8/src/base/platform/
time.h 72 TimeDelta& operator=(const TimeDelta& other) {
73 delta_ = other.delta_;
77 // Computations with other deltas.
78 TimeDelta operator+(const TimeDelta& other) const {
79 return TimeDelta(delta_ + other.delta_);
81 TimeDelta operator-(const TimeDelta& other) const {
82 return TimeDelta(delta_ - other.delta_);
85 TimeDelta& operator+=(const TimeDelta& other) {
86 delta_ += other.delta_;
89 TimeDelta& operator-=(const TimeDelta& other) {
    [all...]

Completed in 407 milliseconds

12 3 4 5 6 7 8 91011>>