Searched defs:other (Results 26 - 50 of 929) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A D2007-04-10-PackedUnion.cpp31 L(const L& other);
38 L::L(const L& other) argument
40 fdata = other.fdata;
/external/clang/test/Index/
H A Dcomplete-cxx-inline-methods.cpp18 OtherClass(const OtherClass &other) : MyCls(other), value(value) { } argument
/external/clang/test/PCH/
H A Dcxx11-constexpr.cpp26 constexpr T plus_seven(T other) { argument
27 return value + other;
/external/clang/test/SemaCXX/
H A DPR9908.cpp7 typedef typename _Tp::template rebind<_Up>::other type;
27 template <class U> struct rebind {typedef ReboundA<U> other;}; typedef in struct:A::rebind
/external/deqp/framework/common/
H A DtcuEither.cpp50 TestClassWithConstructor (const TestClassWithConstructor& other) argument
51 : m_i (other.m_i)
52 , m_copyCheck (other.m_copyCheck)
56 TestClassWithConstructor& operator= (const TestClassWithConstructor& other) argument
60 if (this == &other)
63 m_i = other.m_i;
64 m_copyCheck = other.m_copyCheck;
/external/deqp/framework/randomshaders/
H A DrsgToken.cpp45 Token& Token::operator= (const Token& other) argument
53 m_type = other.m_type;
57 m_arg.identifier = deStrdup(other.m_arg.identifier);
62 m_arg.floatValue = other.m_arg.floatValue;
64 m_arg.intValue = other.m_arg.intValue;
66 m_arg.boolValue = other.m_arg.boolValue;
71 Token::Token (const Token& other) argument
74 *this = other;
77 bool Token::operator!= (const Token& other) const
79 if (m_type != other
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStringDataItem.java94 protected int compareTo0(OffsettedItem other) { argument
95 StringDataItem otherData = (StringDataItem) other;
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DNameValuePair.java62 public boolean equals(Object other) { argument
63 if (! (other instanceof NameValuePair)) {
67 NameValuePair otherPair = (NameValuePair) other;
79 public int compareTo(NameValuePair other) { argument
80 int result = name.compareTo(other.name);
86 return value.compareTo(other.value);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DConstant.java48 public final int compareTo(Constant other) { argument
50 Class otherClazz = other.getClass();
56 return compareTo0(other);
63 * @param other {@code non-null;} the instance to compare to
67 protected abstract int compareTo0(Constant other); argument
H A DCstAnnotation.java45 public boolean equals(Object other) { argument
46 if (! (other instanceof CstAnnotation)) {
50 return annotation.equals(((CstAnnotation) other).annotation);
61 protected int compareTo0(Constant other) { argument
62 return annotation.compareTo(((CstAnnotation) other).annotation);
H A DCstFieldRef.java67 protected int compareTo0(Constant other) { argument
68 int cmp = super.compareTo0(other);
74 CstFieldRef otherField = (CstFieldRef) other;
H A DCstLiteral32.java38 public final boolean equals(Object other) { argument
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral32) other).bits;
52 protected int compareTo0(Constant other) { argument
53 int otherBits = ((CstLiteral32) other).bits;
H A DCstLiteral64.java38 public final boolean equals(Object other) { argument
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral64) other).bits;
52 protected int compareTo0(Constant other) { argument
53 long otherBits = ((CstLiteral64) other).bits;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java47 * Merges {@code other} into this set, so this set becomes the
50 * @param other {@code non-null;} other set to merge with.
52 void merge(IntSet other); argument
H A DListIntSet.java61 public void merge(IntSet other) { argument
62 if (other instanceof ListIntSet) {
63 ListIntSet o = (ListIntSet) other;
87 } else if (other instanceof BitIntSet) {
88 BitIntSet o = (BitIntSet) other;
95 IntIterator iter = other.iterator();
/external/eigen/Eigen/src/Core/
H A DFuzzy.h79 /** \returns \c true if \c *this is approximately equal to \a other, within the precision
99 const DenseBase<OtherDerived>& other,
103 return internal::isApprox_selector<Derived, OtherDerived>::run(derived(), other.derived(), prec);
106 /** \returns \c true if the norm of \c *this is much smaller than \a other,
114 * the value of the reference scalar \a other should come from the Hilbert-Schmidt norm
121 const typename NumTraits<Scalar>::Real& other,
125 return internal::isMuchSmallerThan_scalar_selector<Derived>::run(derived(), other, prec);
128 /** \returns \c true if the norm of \c *this is much smaller than the norm of \a other,
141 const DenseBase<OtherDerived>& other,
145 return internal::isMuchSmallerThan_object_selector<Derived, OtherDerived>::run(derived(), other
98 isApprox( const DenseBase<OtherDerived>& other, const RealScalar& prec ) const argument
120 isMuchSmallerThan( const typename NumTraits<Scalar>::Real& other, const RealScalar& prec ) const argument
140 isMuchSmallerThan( const DenseBase<OtherDerived>& other, const RealScalar& prec ) const argument
[all...]
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseBinaryOps.h1 /** \returns an expression of the coefficient wise product of \c *this and \a other
7 operator*(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
9 return EIGEN_CWISE_PRODUCT_RETURN_TYPE(Derived,OtherDerived)(derived(), other.derived());
12 /** \returns an expression of the coefficient wise quotient of \c *this and \a other
18 operator/(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
20 return CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
23 /** \returns an expression of the coefficient-wise min of \c *this and \a other
32 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other
43 (const Scalar &other) const
45 return (min)(Derived::PlainObject::Constant(rows(), cols(), other));
153 operator +(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other) argument
172 operator -(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGifTypeRequest.java17 * @param <ModelType> The type of model to load the {@link com.bumptech.glide.load.resource.gif.GifDrawable} or other
39 GifTypeRequest(GenericRequestBuilder<ModelType, ?, ?, ?> other, argument
41 super(buildProvider(other.glide, streamModelLoader, GifDrawable.class, null), GifDrawable.class, other);
/external/guava/guava/src/com/google/common/net/
H A DHostSpecifier.java149 public boolean equals(@Nullable Object other) { argument
150 if (this == other) {
154 if (other instanceof HostSpecifier) {
155 final HostSpecifier that = (HostSpecifier) other;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java62 @Override public <T> T[] toArray(T[] other) { argument
63 return delegate.toArray(other);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DBaseComparable.java40 @Override public boolean equals(Object other) { argument
41 if (other == null) {
43 } else if (other instanceof BaseComparable) {
44 return s.equals(((BaseComparable) other).s);
/external/icu/icu4c/source/common/
H A Dchariter.cpp16 ForwardCharacterIterator::ForwardCharacterIterator(const ForwardCharacterIterator &other) argument
17 : UObject(other)
H A Dsharedobject.h33 SharedObject(const SharedObject &other) argument
34 : UObject(other),
/external/icu/icu4c/source/i18n/
H A Dcurrfmt.cpp27 CurrencyFormat::CurrencyFormat(const CurrencyFormat& other) : argument
28 MeasureFormat(other), fmt(NULL)
30 fmt = (NumberFormat*) other.fmt->clone();
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...]

Completed in 510 milliseconds

1234567891011>>