/external/eigen/Eigen/src/plugins/ |
H A D | CommonCwiseBinaryOps.h | 13 /** \returns an expression of the difference of \c *this and \a other 21 /** \returns an expression of the sum of \c *this and \a other 29 /** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other 42 binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const argument 44 return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
|
/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/ |
H A D | const_data_members.pass.cpp | 68 struct other {}; struct 194 // other 195 TEST_NUMERIC_LIMITS(other) 196 TEST_NUMERIC_LIMITS(const other) 197 TEST_NUMERIC_LIMITS(volatile other) 198 TEST_NUMERIC_LIMITS(const volatile other)
|
/external/llvm/test/CodeGen/SystemZ/Large/ |
H A D | branch-range-02.py | 39 # ...lots of other blocks... 71 other = 'end' if 2 * i < blocks else 'b0' variable 77 print ' br i1 %%atest%d, label %%%s, label %%%s' % (i, other, next)
|
/external/clang/test/SemaCXX/ |
H A D | cxx11-unused.cpp | 13 A(const A &other) = delete; member in class:A 30 B(const B &other); 33 B::B(const B &other) = default; member in class:B
|
/external/llvm/include/llvm/Support/ |
H A D | RandomNumberGenerator.h | 51 RandomNumberGenerator(const RandomNumberGenerator &other) = delete; member in class:llvm::RandomNumberGenerator 52 RandomNumberGenerator &operator=(const RandomNumberGenerator &other) = delete; member in class:llvm::RandomNumberGenerator
|
H A D | Watchdog.h | 32 Watchdog(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog 33 Watchdog &operator=(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
H A D | Memoable.java | 18 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance. 20 * @throws MemoableResetException if the <b>other</b> parameter is in some other way invalid. 22 public void reset(Memoable other); argument
|
/external/clang/test/SemaTemplate/ |
H A D | typo-dependent-name.cpp | 15 bool f(T other) { argument 16 return this->inner < other;
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
H A D | Collidable.java | 14 * documentation and/or other materials provided with the distribution. 38 * they support collision detection between other objects that are also 48 * @param other The object to check collision against 50 * @return how many collisions were found between this and other 52 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException; argument
|
/external/doclava/src/com/google/doclava/ |
H A D | Sorter.java | 28 public int compareTo(Object other) { argument 29 return label.compareToIgnoreCase(((Sorter) other).label);
|
/external/eigen/Eigen/src/Core/ |
H A D | CommaInitializer.h | 40 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other) argument 41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) 43 m_xpr.block(0, 0, other.rows(), other.cols()) = other; 77 CommaInitializer& operator,(const DenseBase<OtherDerived>& other) 79 if(other.cols()==0 || other.rows()==0) 85 m_currentBlockRows = other [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
H A D | Lazy.h | 54 EvalBeforeAssigningBit>& other) 56 other._expression().derived().addTo(derived()); return derived(); 64 EvalBeforeAssigningBit>& other) 66 other._expression().derived().subTo(derived()); return derived(); 53 operator +=(const Flagged<ProductBase<ProductDerived, Lhs,Rhs>, 0, EvalBeforeAssigningBit>& other) argument 63 operator -=(const Flagged<ProductBase<ProductDerived, Lhs,Rhs>, 0, EvalBeforeAssigningBit>& other) argument
|
/external/eigen/doc/ |
H A D | tutorial.cpp | 50 Eigen::Matrix4f other = (m4 * m4).lazy(); // forces lazy evaluation local
|
/external/icu/icu4c/source/common/ |
H A D | dtintrv.cpp | 32 DateInterval::DateInterval(const DateInterval& other) argument 33 : UObject(other) { 34 *this = other; 39 DateInterval::operator=(const DateInterval& other) { argument 40 if ( this != &other ) { 41 fromDate = other.fromDate; 42 toDate = other.toDate; 55 DateInterval::operator==(const DateInterval& other) const { 56 return ( fromDate == other.fromDate && toDate == other [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | curramt.cpp | 30 CurrencyAmount::CurrencyAmount(const CurrencyAmount& other) : argument 31 Measure(other) { 34 CurrencyAmount& CurrencyAmount::operator=(const CurrencyAmount& other) { argument 35 Measure::operator=(other);
|
H A D | currunit.cpp | 34 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) : argument 35 MeasureUnit(other) { 36 u_strcpy(isoCode, other.isoCode); 39 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) { argument 40 if (this == &other) { 43 MeasureUnit::operator=(other); 44 u_strcpy(isoCode, other.isoCode);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
H A D | CollisionData.java | 14 * documentation and/or other materials provided with the distribution. 48 public int collideWith(Collidable other, argument
|
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
H A D | discard.pass.cpp | 42 other() function 70 other<unsigned int>(); 71 other<unsigned long>(); 72 other<unsigned long long>();
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
H A D | const_Types.pass.cpp | 31 NoValueCtor(NoValueCtor const & other) : id(other.id) { ++count; } argument
|
/external/nist-sip/java/gov/nist/javax/sip/ |
H A D | LogRecord.java | 12 public abstract boolean equals(Object other); argument
|
/external/skia/include/gpu/ |
H A D | GrFragmentStage.h | 20 GrFragmentStage(const GrFragmentStage& other) { fProc.reset(SkRef(other.fProc.get())); } argument
|
/external/slf4j/slf4j-simple/src/test/java/org/slf4j/ |
H A D | SilentPrintStream.java | 31 PrintStream other; field in class:SilentPrintStream 35 other = ps;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
H A D | DefaultTransformer.java | 63 public boolean equals(Object other) { argument 64 if (this == other) { 67 if (other == null) { 70 return other instanceof DefaultTransformer;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
H A D | ASN1EncodableVector.java | 33 * @param other the vector to add. 35 public void addAll(ASN1EncodableVector other) argument 37 for (Enumeration en = other.v.elements(); en.hasMoreElements();)
|
/external/clang/test/CXX/temp/temp.res/temp.local/ |
H A D | p3.cpp | 27 WebVector(const WebVector<T>& other) { } // expected-error{{undeclared identifier 'T'}} \ argument 31 WebVector<T>& operator=(const C& other) { } // expected-error{{undeclared identifier 'T'}} argument
|