Searched refs:other (Results 201 - 225 of 1751) sorted by relevance

1234567891011>>

/external/chromium/net/proxy/
H A Dproxy_server.h137 bool operator==(const ProxyServer& other) const {
138 return scheme_ == other.scheme_ &&
139 host_port_pair_.Equals(other.host_port_pair_);
143 bool operator<(const ProxyServer& other) const {
144 if (scheme_ != other.scheme_)
145 return scheme_ < other.scheme_;
146 return host_port_pair_ < other.host_port_pair_;
/external/webkit/Source/WebKit/chromium/public/
H A DWebNotification.h12 * in the documentation and/or other materials provided with the
52 WebNotification(const WebNotification& other) : m_private(0) { assign(other); } argument
59 WebNotification& operator=(const WebNotification& other) argument
61 assign(other);
66 bool equals(const WebNotification& other) const { return m_private == other.m_private; }
67 WEBKIT_API bool lessThan(const WebNotification& other) const;
/external/webkit/Tools/Scripts/webkitpy/style/
H A Derror_handlers.py10 # documentation and/or other materials provided with the distribution.
90 def __eq__(self, other):
92 if self._configuration != other._configuration:
94 if self._file_path != other._file_path:
96 if self._increment_error_count != other._increment_error_count:
98 if self._line_numbers != other._line_numbers:
104 def __ne__(self, other):
106 return not self.__eq__(other)
/external/libxml2/
H A Dtriostr.h103 TRIO_STRING_PUBLIC trio_string_t *trio_xstring_duplicate TRIO_PROTO((const char *other));
111 TRIO_STRING_PUBLIC int trio_string_append TRIO_PROTO((trio_string_t *self, trio_string_t *other));
112 TRIO_STRING_PUBLIC int trio_string_contains TRIO_PROTO((trio_string_t *self, trio_string_t *other));
113 TRIO_STRING_PUBLIC int trio_string_copy TRIO_PROTO((trio_string_t *self, trio_string_t *other));
114 TRIO_STRING_PUBLIC trio_string_t *trio_string_duplicate TRIO_PROTO((trio_string_t *other));
115 TRIO_STRING_PUBLIC int trio_string_equal TRIO_PROTO((trio_string_t *self, trio_string_t *other));
117 TRIO_STRING_PUBLIC int trio_string_equal_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
118 TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other));
126 TRIO_STRING_PUBLIC int trio_string_match TRIO_PROTO((trio_string_t *self, trio_string_t *other));
127 TRIO_STRING_PUBLIC int trio_string_match_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
[all...]
/external/llvm/unittests/ADT/
H A DSCCIteratorTest.cpp43 NodeSubset(const NodeSubset &other) : Elements(other.Elements) {}
46 bool operator==(const NodeSubset &other) const {
47 return other.Elements == this->Elements;
49 bool operator!=(const NodeSubset &other) const {
50 return !(*this == other);
77 bool isSubsetOf(const NodeSubset &other) const {
78 return (this->Elements | other.Elements) == other.Elements;
87 NodeSubset Join(const NodeSubset &other) cons
[all...]
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DFontPlatformDataPango.cpp216 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other) argument
219 if (this == &other)
222 m_size = other.m_size;
223 m_syntheticBold = other.m_syntheticBold;
224 m_syntheticOblique = other.m_syntheticOblique;
226 if (other.m_scaledFont)
227 cairo_scaled_font_reference(other.m_scaledFont);
230 m_scaledFont = other.m_scaledFont;
232 if (other.m_font)
233 g_object_ref(other
247 FontPlatformData(const FontPlatformData& other) argument
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTranslation.h76 inline Translation operator* (const Translation& other) const
77 { return Translation(m_coeffs + other.m_coeffs); }
80 inline TransformType operator* (const ScalingType& other) const;
106 inline VectorType operator* (const VectorType& other) const
107 { return m_coeffs + other; }
112 Translation& operator=(const Translation& other) argument
114 m_coeffs = other.m_coeffs;
129 inline explicit Translation(const Translation<OtherScalarType,Dim>& other) argument
130 { m_coeffs = other.vector().template cast<Scalar>(); }
132 /** \returns \c true if \c *this is approximately equal to \a other, withi
136 isApprox(const Translation& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()) const argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableList.java77 @Override public <T> T[] toArray(T[] other) { argument
78 if (other.length < size) {
79 other = ObjectArrays.newArray(other, size);
80 } else if (other.length > size) {
81 other[size] = null;
83 System.arraycopy(array, offset, other, 0, size);
84 return other;
151 RegularImmutableList<?> other = (RegularImmutableList<?>) object;
152 for (int i = other
[all...]
/external/proguard/src/proguard/evaluation/
H A DVariables.java90 * given Variables object. The other object may have fewer values, in which
93 public void initialize(Variables other) argument
95 if (this.size < other.size)
97 throw new IllegalArgumentException("Variable frame is too small ["+this.size+"] compared to other frame ["+other.size+"]");
101 System.arraycopy(other.values, 0, this.values, 0, other.size);
108 * @param clearConflictingOtherVariables specifies whether the other
113 public boolean generalize(Variables other, argument
116 if (this.size != other
[all...]
H A DTracedVariables.java130 public void initialize(TracedVariables other) argument
132 super.initialize(other);
134 producerVariables.initialize(other.producerVariables);
137 public boolean generalize(TracedVariables other, argument
140 boolean variablesChanged = super.generalize(other, clearConflictingOtherVariables);
141 boolean producersChanged = producerVariables.generalize(other.producerVariables, clearConflictingOtherVariables);
142 /* consumerVariables.generalize(other.consumerVariables)*/
155 other.producerVariables.values[index] = null;
199 TracedVariables other = (TracedVariables)object;
202 this.producerVariables.equals(other
[all...]
/external/webkit/Source/WebCore/dom/
H A DQualifiedName.h69 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); } argument
70 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; } argument
72 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; }
73 bool operator!=(const QualifiedName& other) const { return !(*this == other); }
75 bool matches(const QualifiedName& other) cons
[all...]
/external/chromium/base/
H A Dversion.cc44 int Version::CompareTo(const Version& other) const {
46 DCHECK(other.is_valid_);
47 size_t count = std::min(components_.size(), other.components_.size());
49 if (components_[i] > other.components_[i])
51 if (components_[i] < other.components_[i])
54 if (components_.size() > other.components_.size()) {
58 } else if (components_.size() < other.components_.size()) {
59 for (size_t i = count; i < other.components_.size(); ++i)
60 if (other.components_[i] > 0)
/external/chromium/net/base/
H A Dcert_verifier.h126 bool operator==(const RequestParams& other) const {
130 return (flags == other.flags &&
131 memcmp(cert_fingerprint.data, other.cert_fingerprint.data,
133 hostname == other.hostname);
136 bool operator<(const RequestParams& other) const {
140 if (flags != other.flags)
141 return flags < other.flags;
142 int rv = memcmp(cert_fingerprint.data, other.cert_fingerprint.data,
146 return hostname < other.hostname;
/external/webkit/Source/WebCore/platform/animation/
H A DTimingFunction.h45 virtual bool operator==(const TimingFunction& other) = 0;
65 virtual bool operator==(const TimingFunction& other) argument
67 return other.isLinearTimingFunction();
91 virtual bool operator==(const TimingFunction& other) argument
93 if (other.isCubicBezierTimingFunction()) {
94 const CubicBezierTimingFunction* ctf = static_cast<const CubicBezierTimingFunction*>(&other);
136 virtual bool operator==(const TimingFunction& other) argument
138 if (other.isStepsTimingFunction()) {
139 const StepsTimingFunction* stf = static_cast<const StepsTimingFunction*>(&other);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAConfiguration.java13 * documentation and/or other materials provided with the distribution.
63 * other configuration associated with alt 3).
111 NFAConfiguration other = (NFAConfiguration)o;
112 return this.state==other.state &&
113 this.alt==other.alt &&
114 this.context.equals(other.context)&&
115 this.semanticContext.equals(other.semanticContext);
/external/chromium/chrome/browser/policy/
H A Dpolicy_map.cc38 void PolicyMap::Swap(PolicyMap* other) { argument
39 map_.swap(other->map_);
42 bool PolicyMap::Equals(const PolicyMap& other) const {
43 return other.map_.size() == map_.size() &&
44 std::equal(map_.begin(), map_.end(), other.map_.begin(), MapEntryEquals);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStringIdItem.java51 public boolean equals(Object other) { argument
52 if (!(other instanceof StringIdItem)) {
56 StringIdItem otherString = (StringIdItem) other;
67 public int compareTo(Object other) { argument
68 StringIdItem otherString = (StringIdItem) other;
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstNat.java61 public boolean equals(Object other) { argument
62 if (!(other instanceof CstNat)) {
66 CstNat otherNat = (CstNat) other;
79 protected int compareTo0(Constant other) { argument
80 CstNat otherNat = (CstNat) other;
/external/icu4c/common/
H A Drbbisetb.h48 RangeDescriptor(const RangeDescriptor &other, UErrorCode &status);
56 RangeDescriptor(const RangeDescriptor &other); // forbid copying of this class
57 RangeDescriptor &operator=(const RangeDescriptor &other); // forbid copying of this class
123 RBBISetBuilder(const RBBISetBuilder &other); // forbid copying of this class
124 RBBISetBuilder &operator=(const RBBISetBuilder &other); // forbid copying of this class
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParametersHeader.java94 public boolean equals(Object other) { argument
95 if (this==other) return true;
99 if (other instanceof HeaderAddress && other instanceof Parameters) {
100 final HeaderAddress o = (HeaderAddress) other;
/external/replicaisland/src/com/replica/replicaisland/
H A DInputXY.java89 public void clone(InputXY other) { argument
90 if (other.getPressed()) {
91 press(other.getLastPressedTime(), other.getX(), other.getY());
/external/smack/src/com/kenai/jbosh/
H A DAttrVersion.java148 AttrVersion other = (AttrVersion) otherObj;
149 if (major < other.major) {
151 } else if (major > other.major) {
153 } else if (minor < other.minor) {
155 } else if (minor > other.minor) {
/external/v8/src/
H A Dallocation.cc10 // disclaimer in the documentation and/or other materials provided
104 void PreallocatedStorage::LinkTo(PreallocatedStorage* other) { argument
105 next_ = other->next_;
106 other->next_->previous_ = this;
107 previous_ = other;
108 other->next_ = this;
H A Ddiy-fp.h10 // disclaimer in the documentation and/or other materials provided
46 // this = this - other.
48 // must be bigger than the significand of other.
50 void Subtract(const DiyFp& other) { argument
51 ASSERT(e_ == other.e_);
52 ASSERT(f_ >= other.f_);
53 f_ -= other.f_;
58 // than other. The result will not be normalized.
66 // this = this * other.
67 void Multiply(const DiyFp& other);
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowCustom.h38 inline bool JSDOMWindowBase::allowsAccessFrom(const JSGlobalObject* other) const
40 if (allowsAccessFromPrivate(other))
42 printErrorMessage(crossDomainAccessErrorMessage(other));
67 ALWAYS_INLINE bool JSDOMWindowBase::allowsAccessFromPrivate(const JSGlobalObject* other) const
69 const JSDOMWindow* originWindow = asJSDOMWindow(other);

Completed in 1706 milliseconds

1234567891011>>