/external/clang/test/CodeGenCXX/ |
H A D | 2007-04-10-PackedUnion.cpp | 31 L(const L& other); 38 L::L(const L& other) argument 40 fdata = other.fdata;
|
/external/clang/test/Index/ |
H A D | complete-cxx-inline-methods.cpp | 18 OtherClass(const OtherClass &other) : MyCls(other), value(value) { } argument
|
/external/clang/test/PCH/ |
H A D | cxx11-constexpr.cpp | 26 constexpr T plus_seven(T other) { argument 27 return value + other;
|
/external/clang/test/SemaCXX/ |
H A D | PR9908.cpp | 7 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 D | tcuEither.cpp | 50 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 D | rsgToken.cpp | 45 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 D | StringDataItem.java | 94 protected int compareTo0(OffsettedItem other) { argument 95 StringDataItem otherData = (StringDataItem) other;
|
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/ |
H A D | NameValuePair.java | 62 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 D | Constant.java | 48 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 D | CstAnnotation.java | 45 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 D | CstFieldRef.java | 67 protected int compareTo0(Constant other) { argument 68 int cmp = super.compareTo0(other); 74 CstFieldRef otherField = (CstFieldRef) other;
|
H A D | CstLiteral32.java | 38 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 D | CstLiteral64.java | 38 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 D | IntSet.java | 47 * 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 D | ListIntSet.java | 61 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 D | Fuzzy.h | 79 /** \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 D | ArrayCwiseBinaryOps.h | 1 /** \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 D | GifTypeRequest.java | 17 * @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 D | HostSpecifier.java | 149 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 D | ForwardingImmutableCollection.java | 62 @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 D | BaseComparable.java | 40 @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 D | chariter.cpp | 16 ForwardCharacterIterator::ForwardCharacterIterator(const ForwardCharacterIterator &other) argument 17 : UObject(other)
|
H A D | sharedobject.h | 33 SharedObject(const SharedObject &other) argument 34 : UObject(other),
|
/external/icu/icu4c/source/i18n/ |
H A D | currfmt.cpp | 27 CurrencyFormat::CurrencyFormat(const CurrencyFormat& other) : argument 28 MeasureFormat(other), fmt(NULL) 30 fmt = (NumberFormat*) other.fmt->clone();
|
H A D | measure.cpp | 35 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...] |