Searched refs:other (Results 326 - 350 of 1751) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/platform/graphics/
H A DIntSize.h11 * documentation and/or other materials provided with the distribution.
90 IntSize expandedTo(const IntSize& other) const
92 return IntSize(m_width > other.m_width ? m_width : other.m_width,
93 m_height > other.m_height ? m_height : other.m_height);
96 IntSize shrunkTo(const IntSize& other) const
98 return IntSize(m_width < other.m_width ? m_width : other.m_width,
99 m_height < other
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DBString.cpp11 * documentation and/or other materials provided with the distribution.
120 BString::BString(const BString& other) argument
122 if (!other.m_bstr)
125 m_bstr = SysAllocString(other.m_bstr);
135 BString& BString::operator=(const BString& other) argument
137 if (this != &other)
138 *this = other.m_bstr;
142 BString& BString::operator=(const BSTR& other) argument
144 if (other != m_bstr) {
146 m_bstr = other
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebplugindatabase.cpp70 Contructs a copy of \a other.
72 QWebPluginInfo::QWebPluginInfo(const QWebPluginInfo& other) argument
73 : m_package(other.m_package)
201 Returns true if this plugin info is the same as the \a other plugin info.
203 bool QWebPluginInfo::operator==(const QWebPluginInfo& other) const
205 return m_package == other.m_package;
209 Returns true if this plugin info is different from the \a other plugin info.
211 bool QWebPluginInfo::operator!=(const QWebPluginInfo& other) const
213 return m_package != other.m_package;
217 Assigns the \a other plugi
220 operator =(const QWebPluginInfo& other) argument
[all...]
/external/eigen/Eigen/src/Geometry/
H A DTransform.h103 * with any other transformations (Transform,Translation,RotationBase,Matrix)
150 * The concatenation of a Transform object with any kind of other transformation
237 inline Transform(const Transform& other) argument
240 m_matrix = other.m_matrix;
260 inline Transform& operator=(const Transform& other) argument
261 { m_matrix = other.m_matrix; return *this; }
267 inline explicit Transform(const EigenBase<OtherDerived>& other) argument
273 internal::transform_construct_from_matrix<OtherDerived,Mode,Options,Dim,HDim>::run(this, other.derived());
278 inline Transform& operator=(const EigenBase<OtherDerived>& other) argument
283 internal::transform_construct_from_matrix<OtherDerived,Mode,Options,Dim,HDim>::run(this, other
288 Transform(const Transform<Scalar,Dim,Mode,OtherOptions>& other) argument
296 Transform(const Transform<Scalar,Dim,OtherMode,OtherOptions>& other) argument
337 Transform(const ReturnByValue<OtherDerived>& other) argument
344 operator =(const ReturnByValue<OtherDerived>& other) argument
449 operator *=(const EigenBase<OtherDerived>& other) argument
577 Transform(const Transform<OtherScalarType,Dim,Mode,Options>& other) argument
587 isApprox(const Transform& other, typename NumTraits<Scalar>::Real prec = NumTraits<Scalar>::dummy_precision()) const argument
688 Transform(const QMatrix& other) argument
699 operator =(const QMatrix& other) argument
729 Transform(const QTransform& other) argument
740 operator =(const QTransform& other) argument
784 scale(const MatrixBase<OtherDerived> &other) argument
811 prescale(const MatrixBase<OtherDerived> &other) argument
838 translate(const MatrixBase<OtherDerived> &other) argument
852 pretranslate(const MatrixBase<OtherDerived> &other) argument
1183 run(Transform<typename Other::Scalar,Dim,Mode,Options> *transform, const Other& other) argument
1194 run(Transform<typename Other::Scalar,Dim,Mode,Options> *transform, const Other& other) argument
1204 run(Transform<typename Other::Scalar,Dim,Mode,Options> *transform, const Other& other) argument
1211 run(Transform<typename Other::Scalar,Dim,AffineCompact,Options> *transform, const Other& other) argument
1237 run(const TransformType& T, const MatrixType& other) argument
1255 run(const TransformType& T, const MatrixType& other) argument
1281 run(const TransformType& T, const MatrixType& other) argument
1304 run(const Other& other,const TransformType& tr) argument
1315 run(const Other& other,const TransformType& tr) argument
1331 run(const Other& other,const TransformType& tr) argument
1347 run(const Other& other,const TransformType& tr) argument
1363 run(const Other& other, const TransformType& tr) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DFieldAnnotationStruct.java62 public boolean equals(Object other) { argument
63 if (! (other instanceof FieldAnnotationStruct)) {
67 return field.equals(((FieldAnnotationStruct) other).field);
71 public int compareTo(FieldAnnotationStruct other) { argument
72 return field.compareTo(other.field);
H A DMethodAnnotationStruct.java62 public boolean equals(Object other) { argument
63 if (! (other instanceof MethodAnnotationStruct)) {
67 return method.equals(((MethodAnnotationStruct) other).method);
71 public int compareTo(MethodAnnotationStruct other) { argument
72 return method.compareTo(other.method);
/external/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h56 Cwise<ExpressionType>::operator*(const MatrixBase<OtherDerived> &other) const
58 return EIGEN_CWISE_PRODUCT_RETURN_TYPE(ExpressionType,OtherDerived)(_expression(), other.derived());
65 Cwise<ExpressionType>::operator/(const MatrixBase<OtherDerived> &other) const
67 return EIGEN_CWISE_BINOP_RETURN_TYPE(internal::scalar_quotient_op)(_expression(), other.derived());
73 inline ExpressionType& Cwise<ExpressionType>::operator*=(const MatrixBase<OtherDerived> &other) argument
75 return m_matrix.const_cast_derived() = *this * other;
81 inline ExpressionType& Cwise<ExpressionType>::operator/=(const MatrixBase<OtherDerived> &other) argument
83 return m_matrix.const_cast_derived() = *this / other;
158 Cwise<ExpressionType>::operator<(const MatrixBase<OtherDerived> &other) const
160 return EIGEN_CWISE_BINOP_RETURN_TYPE(std::less)(_expression(), other
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DTablesTransformValuesTest.java66 Table<String, Integer, Character> other = HashBasedTable.create();
67 other.put("foo", 1, 'd');
68 other.put("bar", 2, 'e');
69 other.put("cat", 2, 'f');
71 table.putAll(other);
/external/icu4c/i18n/
H A Dfuncrepl.cpp41 FunctionReplacer::FunctionReplacer(const FunctionReplacer& other) : argument
42 UnicodeFunctor(other),
43 UnicodeReplacer(other)
45 translit = other.translit->clone();
46 replacer = other.replacer->clone();
H A Dplurfmt.cpp30 0x6F, 0x74, 0x68, 0x65, 0x72, 0 // "other"
135 PluralFormat::PluralFormat(const PluralFormat& other) argument
136 : Format(other),
137 locale(other.locale),
138 msgPattern(other.msgPattern),
140 offset(other.offset) {
141 copyObjects(other);
145 PluralFormat::copyObjects(const PluralFormat& other) { argument
154 if (other.numberFormat == NULL) {
157 numberFormat = (NumberFormat*)other
328 operator =(const PluralFormat& other) argument
[all...]
H A Drepattrn.cpp44 RegexPattern::RegexPattern(const RegexPattern &other) : UObject(other) { argument
46 *this = other;
56 RegexPattern &RegexPattern::operator = (const RegexPattern &other) { argument
57 if (this == &other) {
69 if ( other.fPatternString == NULL ) {
71 fPattern = utext_clone(fPattern, other.fPattern, FALSE, TRUE, &fDeferredStatus);
73 fPatternString = new UnicodeString(*(other.fPatternString));
81 fFlags = other.fFlags;
82 fLiteralText = other
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontPlatformDataChromiumWin.h13 * in the documentation and/or other materials provided with the
54 // will create us with this structure, and it will compare other values
81 bool operator==(const FontPlatformData& other) const
83 return m_font == other.m_font && m_size == other.m_size;
112 bool operator==(const RefCountedHFONT& other) const
114 return m_hfont == other.m_hfont;
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DPathHaiku.cpp13 * documentation and/or other materials provided with the distribution.
50 Path::Path(const Path& other) argument
51 : m_path(new BRegion(*other.platformPath()))
55 Path& Path::operator=(const Path& other) argument
57 if (&other != this)
58 m_path = other.platformPath();
/external/webkit/Source/WebCore/platform/mac/
H A DCursorMac.mm11 * documentation and/or other materials provided with the distribution.
199 Cursor::Cursor(const Cursor& other)
200 : m_type(other.m_type)
201 , m_image(other.m_image)
202 , m_hotSpot(other.m_hotSpot)
203 , m_platformCursor(other.m_platformCursor)
207 Cursor& Cursor::operator=(const Cursor& other)
209 m_type = other.m_type;
210 m_image = other.m_image;
211 m_hotSpot = other
[all...]
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextMetrics.cpp60 bool SVGTextMetrics::operator==(const SVGTextMetrics& other) argument
62 return m_width == other.m_width
63 && m_height == other.m_height
64 && m_length == other.m_length
65 && m_glyph == other.m_glyph;
/external/webkit/Source/WebKit/chromium/src/
H A DWebCString.cpp12 * in the documentation and/or other materials provided with the
44 int WebCString::compare(const WebCString& other) const
47 if (isNull() != other.isNull())
53 return strcmp(m_private->data(), other.m_private->data());
64 void WebCString::assign(const WebCString& other) argument
66 assign(const_cast<WebCStringPrivate*>(other.m_private));
H A DWebSecurityOrigin.cpp12 * in the documentation and/or other materials provided with the
67 void WebSecurityOrigin::assign(const WebSecurityOrigin& other) argument
69 WebSecurityOriginPrivate* p = const_cast<WebSecurityOriginPrivate*>(other.m_private);
99 bool WebSecurityOrigin::canAccess(const WebSecurityOrigin& other) const
102 ASSERT(other.m_private);
103 return m_private->canAccess(other.m_private);
/external/guava/guava/src/com/google/common/collect/
H A DRange.java84 * <p>In this and other range-related specifications, concepts like "equal",
244 * Returns {@code true} if the bounds of {@code other} do not extend outside
281 public boolean encloses(Range<C> other) { argument
282 return lowerBound.compareTo(other.lowerBound) <= 0
283 && upperBound.compareTo(other.upperBound) >= 0;
288 * range and {@code other}, if such a range exists.
296 * {@code other} are {@linkplain #isConnected connected}.
313 public Range<C> intersection(Range<C> other) { argument
314 Cut<C> newLower = Ordering.natural().max(lowerBound, other.lowerBound);
315 Cut<C> newUpper = Ordering.natural().min(upperBound, other
344 isConnected(Range<C> other) argument
369 span(Range<C> other) argument
[all...]
H A DGeneralRange.java170 GeneralRange<T> intersect(GeneralRange<T> other) { argument
171 checkNotNull(other);
172 checkArgument(comparator.equals(other.comparator));
179 hasLowBound = other.hasLowerBound;
180 lowEnd = other.lowerEndpoint;
181 lowType = other.lowerBoundType;
182 } else if (other.hasLowerBound()) {
183 int cmp = comparator.compare(lowerEndpoint, other.lowerEndpoint);
184 if (cmp < 0 || (cmp == 0 && other.lowerBoundType == OPEN)) {
185 lowEnd = other
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h42 Derived& operator=(const EigenBase<OtherDerived> &other) argument
44 other.derived().evalTo(derived());
157 * In other words, this function returns
175 Derived& operator=(const ReturnByValue<OtherDerived>& other) argument
177 other.evalTo(derived());
183 inline Derived& operator=(const SparseMatrixBase<OtherDerived>& other) argument
185 return assign(other.derived());
188 inline Derived& operator=(const Derived& other) argument
190 // if (other.isRValue())
191 // derived().swap(other
199 assign(const OtherDerived& other) argument
228 assignGeneric(const OtherDerived& other) argument
432 isApprox(const SparseMatrixBase<OtherDerived>& other, RealScalar prec = NumTraits<Scalar>::dummy_precision()) const argument
437 isApprox(const MatrixBase<OtherDerived>& other, RealScalar prec = NumTraits<Scalar>::dummy_precision()) const argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DPictureParameterSet.java325 PictureParameterSet other = (PictureParameterSet) obj;
326 if (!Arrays.equals(bottom_right, other.bottom_right))
328 if (chroma_qp_index_offset != other.chroma_qp_index_offset)
330 if (constrained_intra_pred_flag != other.constrained_intra_pred_flag)
332 if (deblocking_filter_control_present_flag != other.deblocking_filter_control_present_flag)
334 if (entropy_coding_mode_flag != other.entropy_coding_mode_flag)
337 if (other.extended != null)
339 } else if (!extended.equals(other.extended))
341 if (num_ref_idx_l0_active_minus1 != other.num_ref_idx_l0_active_minus1)
343 if (num_ref_idx_l1_active_minus1 != other
[all...]
/external/bison/lib/
H A Dc-strcaseeq.h34 # define CASEEQ(other,upper) \
35 (c_isupper (upper) ? ((other) & ~0x20) == (upper) : (other) == (upper))
37 # define CASEEQ(other,upper) \
38 (c_isupper (upper) ? (other) == (upper) || (other) == (upper) - 'A' + 'a' : (other) == (upper))
40 # define CASEEQ(other,upper) \
41 (c_toupper (other) == (upper))
/external/chromium/googleurl/src/
H A Dgurl.h12 // in the documentation and/or other materials provided with the
52 GURL_API GURL(const GURL& other);
72 GURL_API GURL& operator=(const GURL& other);
75 // valid, other functions will still succeed, but you will not get canonical
129 bool operator==(const GURL& other) const {
130 return spec_ == other.spec_;
132 bool operator!=(const GURL& other) const {
133 return spec_ != other.spec_;
137 bool operator<(const GURL& other) const {
138 return spec_ < other
[all...]
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Djid.h12 * and/or other materials provided with the distribution.
88 bool BareEquals(const Jid & other) const;
90 bool operator==(const Jid & other) const;
91 bool operator!=(const Jid & other) const { return !operator==(other); }
93 bool operator<(const Jid & other) const { return Compare(other) < 0; };
94 bool operator>(const Jid & other) const { return Compare(other) > 0; };
96 int Compare(const Jid & other) cons
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrixBase.h151 inline Derived & operator=(const Derived& other) { argument
152 this->operator=<Derived > (other);
157 inline void assignGeneric(const OtherDerived& other) { argument
158 derived().resize(other.rows(), other.cols());
161 if (other.coeff(row, col) != Scalar(0))
162 derived().insert(row, col) = other.coeff(row, col);
168 inline Derived & operator=(const SkylineMatrixBase<OtherDerived>& other) { argument
182 operator*(const MatrixBase<OtherDerived> &other) const;

Completed in 660 milliseconds

<<11121314151617181920>>