Searched defs:other (Results 1 - 25 of 1348) sorted by relevance

1234567891011>>

/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dconst_data_members.pass.cpp68 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 Dbranch-range-02.py39 # ...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 Dcxx11-unused.cpp13 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/clang/test/SemaObjCXX/Inputs/
H A Dnullability-consistency-1.h8 int *other = ptr; // shouldn't warn local
/external/eigen/Eigen/src/SparseCore/
H A DSparseFuzzy.h17 bool SparseMatrixBase<Derived>::isApprox(const SparseMatrixBase<OtherDerived>& other, const RealScalar &prec) const argument
22 const PlainObject>::type actualB(other.derived());
/external/eigen/Eigen/src/plugins/
H A DCommonCwiseBinaryOps.h13 /** \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
43 binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const argument
45 return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
79 /** \returns an expression of the coefficient-wise boolean \b and operator of \c *this and \a other
91 operator&&(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
95 return CwiseBinaryOp<internal::scalar_boolean_and_op, const Derived, const OtherDerived>(derived(),other.derived());
98 /** \returns an expression of the coefficient-wise boolean \b or operator of \c *this and \a other
110 operator||(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) cons
[all...]
/external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
H A Dselect_on_container_copy_construction.pass.cpp39 A const other = a.select_on_container_copy_construction(); local
40 assert(other.resource() == ex::get_default_resource());
48 A const other = a.select_on_container_copy_construction(); local
49 assert(other.resource() == ex::get_default_resource());
50 assert(other.resource() == mptr);
/external/llvm/include/llvm/Analysis/
H A DIndirectCallPromotionAnalysis.h42 ICallPromotionAnalysis(const ICallPromotionAnalysis &other) = delete; member in class:llvm::ICallPromotionAnalysis
44 operator=(const ICallPromotionAnalysis &other) = delete; member in class:llvm::ICallPromotionAnalysis
/external/llvm/include/llvm/Support/
H A DRandomNumberGenerator.h51 RandomNumberGenerator(const RandomNumberGenerator &other) = delete; member in class:llvm::RandomNumberGenerator
52 RandomNumberGenerator &operator=(const RandomNumberGenerator &other) = delete; member in class:llvm::RandomNumberGenerator
H A DWatchdog.h32 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/pdfium/core/fpdfdoc/
H A Dcpvt_sectioninfo.cpp14 CPVT_SectionInfo::CPVT_SectionInfo(const CPVT_SectionInfo& other) { argument
15 operator=(other);
18 void CPVT_SectionInfo::operator=(const CPVT_SectionInfo& other) { argument
19 if (this == &other)
22 rcSection = other.rcSection;
23 nTotalLine = other.nTotalLine;
24 if (other.pSecProps)
25 pSecProps = pdfium::MakeUnique<CPVT_SecProps>(*other.pSecProps);
29 if (other.pWordProps)
30 pWordProps = pdfium::MakeUnique<CPVT_WordProps>(*other
[all...]
/external/pdfium/xfa/fxfa/app/
H A Dcxfa_eventparam.cpp27 CXFA_EventParam::CXFA_EventParam(const CXFA_EventParam& other) = default; member in class:CXFA_EventParam
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dnamespaces-expected.cc30 namespace other { namespace
38 } // namespace other
46 other::foo();
48 other::blink::foo();
49 other::WTF::foo();
H A Dnamespaces-original.cc30 namespace other { namespace
38 } // namespace other
46 other::foo();
48 other::blink::foo();
49 other::WTF::foo();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DMemoable.java22 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
24 * @throws MemoableResetException if the <b>other</b> parameter is in some other way invalid.
26 void reset(Memoable other); argument
/external/clang/test/SemaTemplate/
H A Dtypo-dependent-name.cpp15 bool f(T other) { argument
16 return this->inner < other;
/external/eigen/Eigen/src/Core/
H A DAssign.h20 ::lazyAssign(const DenseBase<OtherDerived>& other) argument
30 eigen_assert(rows() == other.rows() && cols() == other.cols());
31 internal::call_assignment_no_alias(derived(),other.derived());
39 EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator=(const DenseBase<OtherDerived>& other) argument
41 internal::call_assignment(derived(), other.derived());
47 EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator=(const DenseBase& other) argument
49 internal::call_assignment(derived(), other.derived());
55 EIGEN_STRONG_INLINE Derived& MatrixBase<Derived>::operator=(const MatrixBase& other) argument
57 internal::call_assignment(derived(), other
64 operator =(const DenseBase<OtherDerived>& other) argument
73 operator =(const EigenBase<OtherDerived>& other) argument
82 operator =(const ReturnByValue<OtherDerived>& other) argument
[all...]
H A DCommaInitializer.h41 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other) argument
42 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
44 m_xpr.block(0, 0, other.rows(), other.cols()) = other;
81 CommaInitializer& operator,(const DenseBase<OtherDerived>& other)
83 if (m_col==m_xpr.cols() && (other.cols()!=0 || other.rows()!=m_currentBlockRows))
87 m_currentBlockRows = other
[all...]
/external/eigen/doc/examples/
H A DCustomizingEigen_Inheritance.cpp11 MyVectorType(const Eigen::MatrixBase<OtherDerived>& other) argument
12 : Eigen::VectorXd(other)
17 MyVectorType& operator=(const Eigen::MatrixBase <OtherDerived>& other) argument
19 this->Eigen::VectorXd::operator=(other);
/external/libchrome/base/process/
H A Dlaunch.cc43 LaunchOptions::LaunchOptions(const LaunchOptions& other) = default; member in class:base::LaunchOptions
/external/libchrome/crypto/
H A Dsecure_hash.cc30 SecureHashSHA256(const SecureHashSHA256& other) : SecureHash() { argument
31 memcpy(&ctx_, &other.ctx_, sizeof(ctx_));
/external/pdfium/xfa/fwl/
H A Dcfwl_messagemouse.cpp17 CFWL_MessageMouse::CFWL_MessageMouse(const CFWL_MessageMouse& other) = default; member in class:CFWL_MessageMouse
/external/skia/src/sksl/ir/
H A DSkSLType.cpp13 bool Type::determineCoercionCost(const Type& other, int* outCost) const { argument
14 if (*this == other) {
18 if (this->kind() == kVector_Kind && other.kind() == kVector_Kind) {
19 if (this->columns() == other.columns()) {
20 return this->componentType().determineCoercionCost(other.componentType(), outCost);
25 if (this->columns() == other.columns() &&
26 this->rows() == other.rows()) {
27 return this->componentType().determineCoercionCost(other.componentType(), outCost);
32 if (*fCoercibleTypes[i] == other) {
/external/autotest/frontend/client/src/autotest/afe/models/
H A DHost.java16 public boolean equals(Object other) { argument
17 if (!(other instanceof Host)) {
21 Host otherHost = (Host) other;
/external/doclava/src/com/google/doclava/
H A DSorter.java28 public int compareTo(Object other) { argument
29 return label.compareToIgnoreCase(((Sorter) other).label);

Completed in 806 milliseconds

1234567891011>>