Searched refs:other (Results 26 - 50 of 3814) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DInterval.java13 * documentation and/or other materials provided with the distribution.
68 Interval other = (Interval)o;
69 return this.a==other.a && this.b==other.b;
72 /** Does this start completely before other? Disjoint */
73 public boolean startsBeforeDisjoint(Interval other) { argument
74 return this.a<other.a && this.b<other.a;
77 /** Does this start at or before other? Nondisjoint */
78 public boolean startsBeforeNonDisjoint(Interval other) { argument
83 startsAfter(Interval other) argument
86 startsAfterDisjoint(Interval other) argument
91 startsAfterNonDisjoint(Interval other) argument
96 disjoint(Interval other) argument
101 adjacent(Interval other) argument
105 properlyContains(Interval other) argument
110 union(Interval other) argument
115 intersection(Interval other) argument
124 differenceNotProperlyContained(Interval other) argument
[all...]
/external/chromium_org/cc/quads/
H A Drender_pass_id.h22 bool operator==(const RenderPassId& other) const {
23 return layer_id == other.layer_id && index == other.index;
25 bool operator!=(const RenderPassId& other) const { return !(*this == other); }
26 bool operator<(const RenderPassId& other) const {
27 return layer_id < other.layer_id ||
28 (layer_id == other.layer_id && index < other.index);
/external/chromium_org/content/browser/loader/
H A Dglobal_routing_id.h26 bool operator<(const GlobalRoutingID& other) const {
27 if (child_id == other.child_id)
28 return route_id < other.route_id;
29 return child_id < other.child_id;
31 bool operator==(const GlobalRoutingID& other) const {
32 return child_id == other.child_id &&
33 route_id == other.route_id;
35 bool operator!=(const GlobalRoutingID& other) const {
36 return !(*this == other);
/external/chromium_org/third_party/tlslite/tlslite/
H A Dhandshakesettings.py32 If the other party tries to use SRP, RSA, or Diffie-Hellman
39 If the other party tries to use SRP, RSA, or Diffie-Hellman
83 TLS 1.0, or (3,2) for TLS 1.1. If the other party wishes to
91 TLS 1.0, or (3,2) for TLS 1.1. If the other party wishes to
135 other = HandshakeSettings()
136 other.minKeySize = self.minKeySize
137 other.maxKeySize = self.maxKeySize
138 other.cipherNames = self.cipherNames
139 other.macNames = self.macNames
140 other
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DSVGRenderStyle.cpp60 SVGRenderStyle::SVGRenderStyle(const SVGRenderStyle& other) argument
63 fill = other.fill;
64 stroke = other.stroke;
65 stops = other.stops;
66 misc = other.misc;
67 inheritedResources = other.inheritedResources;
68 resources = other.resources;
70 svg_inherited_flags = other.svg_inherited_flags;
71 svg_noninherited_flags = other.svg_noninherited_flags;
78 bool SVGRenderStyle::operator==(const SVGRenderStyle& other) cons
110 copyNonInheritedFrom(const SVGRenderStyle* other) argument
[all...]
H A DSVGRenderStyleDefs.cpp47 StyleFillData::StyleFillData(const StyleFillData& other) argument
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
85 StyleStrokeData(const StyleStrokeData& other) argument
122 StyleStopData(const StyleStopData& other) argument
143 StyleMiscData(const StyleMiscData& other) argument
167 StyleResourceData(const StyleResourceData& other) argument
189 StyleInheritedResourceData(const StyleInheritedResourceData& other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSAspectRatioValue.cpp12 * documentation and/or other materials provided with the distribution.
39 bool CSSAspectRatioValue::equals(const CSSAspectRatioValue& other) const
41 return m_numeratorValue == other.m_numeratorValue && m_denominatorValue == other.m_denominatorValue;
/external/proguard/src/proguard/evaluation/value/
H A DUnknownIntegerValue.java70 public IntegerValue generalize(IntegerValue other) argument
76 public IntegerValue add(IntegerValue other) argument
81 public IntegerValue subtract(IntegerValue other) argument
86 public IntegerValue subtractFrom(IntegerValue other) argument
91 public IntegerValue multiply(IntegerValue other) argument
97 public IntegerValue divide(IntegerValue other) argument
103 public IntegerValue divideOf(IntegerValue other) argument
109 public IntegerValue remainder(IntegerValue other) argument
115 public IntegerValue remainderOf(IntegerValue other) argument
121 public IntegerValue shiftLeft(IntegerValue other) argument
126 shiftLeftOf(IntegerValue other) argument
131 shiftRight(IntegerValue other) argument
136 shiftRightOf(IntegerValue other) argument
141 unsignedShiftRight(IntegerValue other) argument
146 unsignedShiftRightOf(IntegerValue other) argument
151 shiftLeftOf(LongValue other) argument
156 shiftRightOf(LongValue other) argument
161 unsignedShiftRightOf(LongValue other) argument
166 and(IntegerValue other) argument
171 or(IntegerValue other) argument
176 xor(IntegerValue other) argument
181 equal(IntegerValue other) argument
186 lessThan(IntegerValue other) argument
191 lessThanOrEqual(IntegerValue other) argument
[all...]
H A DUnknownLongValue.java55 public LongValue generalize(LongValue other) argument
60 public LongValue add(LongValue other) argument
65 public LongValue subtract(LongValue other) argument
70 public LongValue subtractFrom(LongValue other) argument
75 public LongValue multiply(LongValue other) argument
81 public LongValue divide(LongValue other) argument
87 public LongValue divideOf(LongValue other) argument
93 public LongValue remainder(LongValue other) argument
99 public LongValue remainderOf(LongValue other) argument
105 public LongValue shiftLeft(IntegerValue other) argument
110 shiftRight(IntegerValue other) argument
115 unsignedShiftRight(IntegerValue other) argument
120 and(LongValue other) argument
125 or(LongValue other) argument
130 xor(LongValue other) argument
135 compare(LongValue other) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dsize.js42 * @param {print_preview.Size} other Other size object to compare against.
45 equals: function(other) {
46 return other != null &&
47 this.width_ == other.width_ &&
48 this.height_ == other.height_;
/external/chromium_org/gpu/command_buffer/common/
H A Dmailbox.h35 bool operator<(const Mailbox& other) const {
36 return memcmp(this, &other, sizeof other) < 0;
38 bool operator==(const Mailbox& other) const {
39 return memcmp(this, &other, sizeof other) == 0;
41 bool operator!=(const Mailbox& other) const {
42 return !operator==(other);
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKey.cpp12 * 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
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dqname.h12 * 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) cons
[all...]
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dqname.h31 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) !
[all...]
/external/clang/test/SemaTemplate/
H A Dtypo-dependent-name.cpp15 bool f(T other) { argument
16 return this->inner < other;
/external/markdown/tests/misc/
H A Dheaders.txt15 Some other text
/external/qemu/android/base/
H A DCompiler.h24 // .... other private declarations
28 T(const T& other); \
29 T& operator=(const T& other)
/external/icu/icu4c/source/i18n/
H A Dmeasure.cpp35 Measure::Measure(const Measure& other) : argument
36 UObject(other), unit(0) {
37 *this = other;
40 Measure& Measure::operator=(const Measure& other) { argument
41 if (this != &other) {
43 number = other.number;
44 unit = (MeasureUnit*) other.unit->clone();
57 UBool Measure::operator==(const UObject& other) const {
58 if (this == &other) { // Same object, equal
61 if (typeid(*this) != typeid(other)) { // Differen
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_change.h30 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
[all...]
/external/chromium_org/tools/gn/
H A Dlocation.cc27 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
[all...]
/external/chromium_org/components/history/core/browser/
H A Durl_row.cc30 URLRow& URLRow::operator=(const URLRow& other) { argument
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) { argument
42 std::swap(id_, other
83 SwapResult(URLResult* other) argument
[all...]
/external/chromium_org/content/browser/shared_worker/
H A Dworker_storage_partition.cc39 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
38 WorkerStoragePartition( const WorkerStoragePartition& other) argument
65 Copy(const WorkerStoragePartition& other) argument
[all...]
/external/clang/test/Modules/Inputs/
H A Dcategory_other.h4 -(void)other;
/external/chromium_org/base/
H A Dfile_descriptor_posix.h28 bool operator==(const FileDescriptor& other) const {
29 return (fd == other.fd && auto_close == other.auto_close);
32 bool operator!=(const FileDescriptor& other) const {
33 return !operator==(other);
37 bool operator<(const FileDescriptor& other) const {
38 return other.fd < fd;
/external/chromium_org/components/content_settings/core/common/
H A Dpermission_request_id.cc22 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_);

Completed in 4452 milliseconds

1234567891011>>