Searched defs:derived (Results 1 - 25 of 37) sorted by relevance

12

/external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
H A Dconvert.fail.cpp31 struct derived {}; struct
35 derived d;
/external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/
H A Dmove_iterator.fail.cpp33 struct derived {}; struct
37 derived d;
/external/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
H A Dreverse_iterator.fail.cpp31 struct derived {}; struct
35 derived d;
/external/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/
H A Dreverse_iterator.fail.cpp33 struct derived {}; struct
37 derived d;
/external/clang/test/SemaCXX/
H A Dmicrosoft-new-delete.cpp24 struct derived : private base {} der; // expected-note {{here}} struct in inherits:base
26 void *operator new(size_t, derived &);
H A Dstatic-cast.cpp93 (void)static_cast<H*>((A*)0); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
94 (void)static_cast<H&>(*((A*)0)); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
134 (void)static_cast<int A::*>((int H::*)0); // expected-error {{ambiguous conversion from pointer to member of derived class 'H' to pointer to member of base class 'A':}}
142 template<typename E> struct derived : public base {}; struct in namespace:pr5261
145 ~outer() { (void)static_cast<derived<E>*>(pb); }
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DRotationBase.h21 * \param Derived is the derived type, i.e., a rotation type
35 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::RotationBase
36 inline Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::RotationBase
39 inline RotationMatrixType toRotationMatrix() const { return derived().toRotationMatrix(); }
42 inline Derived inverse() const { return derived().inverse(); }
/external/libcxxabi/test/
H A Dcatch_ptr_02.cpp82 struct derived : base1, base2 {}; struct in inherits:base1,base2
88 throw (derived*)0;
120 throw (derived*)12;
/external/chromium_org/ui/gfx/
H A Dfont_list_unittest.cc213 FontList derived = font_list.Derive(10, Font::ITALIC | Font::UNDERLINE); local
214 EXPECT_EQ("Arial,Sans serif,Italic 18px", derived.GetFontDescriptionString());
215 EXPECT_EQ(Font::ITALIC | Font::UNDERLINE, derived.GetFontStyle());
219 derived.GetFonts();
220 EXPECT_EQ(Font::ITALIC | Font::UNDERLINE, derived.GetFontStyle());
229 FontList derived = font_list.Derive(5, Font::BOLD | Font::UNDERLINE); local
230 const std::vector<Font>& derived_fonts = derived.GetFonts();
240 FontList derived = font_list.DeriveWithSizeDelta(-8); local
242 derived.GetFontDescriptionString());
251 FontList derived local
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dsuper.js48 var derived; variable
52 assertSame(this, derived);
63 _x: 'derived'
68 derived = new Derived();
69 assertEquals('derived', derived.testGetter());
92 _x: 'derived'
119 _x: 'derived'
124 assertEquals('derived', new Derived()[0]);
125 // assertEquals('derived', ne
[all...]
/external/eigen/Eigen/src/Core/
H A DEigenBase.h20 * Besides MatrixBase-derived classes, this also includes special matrix classes such as diagonal matrices, etc.
33 /** \returns a reference to the derived object */
34 Derived& derived() { return *static_cast<Derived*>(this); } function in struct:Eigen::EigenBase
35 /** \returns a const reference to the derived object */
36 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in struct:Eigen::EigenBase
44 inline Index rows() const { return derived().rows(); }
46 inline Index cols() const { return derived().cols(); }
53 { derived().evalTo(dst); }
59 // derived class can reimplement it in a more optimized way.
69 // derived clas
[all...]
H A DDiagonalMatrix.h40 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::DiagonalBase
41 inline Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::DiagonalBase
43 DenseMatrixType toDenseMatrix() const { return derived(); }
53 inline const DiagonalVectorType& diagonal() const { return derived().diagonal(); }
54 inline DiagonalVectorType& diagonal() { return derived().diagonal(); }
65 return DiagonalProduct<MatrixDerived, Derived, OnTheLeft>(matrix.derived(), derived());
280 return derived();
H A DTranspositions.h58 Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::TranspositionsBase
59 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::TranspositionsBase
66 return derived();
76 return derived();
97 const IndicesType& indices() const { return derived().indices(); }
99 IndicesType& indices() { return derived().indices(); }
137 { return Transpose<TranspositionsBase>(derived()); }
141 { return Transpose<TranspositionsBase>(derived()); }
336 (transpositions.derived(), matrix.derived());
[all...]
/external/stlport/test/unit/
H A Duninitialized_test.cpp82 struct derived : public base {}; struct in inherits:base
215 derived d;
217 derived *pd = &d;
219 vector<derived*> src(10, pd);
/external/chromium_org/tools/cr/cr/base/
H A Dcontext.py119 self._data.derived = cr.config.Config('DERIVED')
125 self._data.derived,
193 def derived(self): member in class:Context
194 return self._data.derived
/external/eigen/Eigen/src/Geometry/
H A DRotationBase.h25 * \param Derived is the derived type, i.e., a rotation type
41 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::RotationBase
42 inline Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::RotationBase
45 inline RotationMatrixType toRotationMatrix() const { return derived().toRotationMatrix(); }
50 inline RotationMatrixType matrix() const { return derived().toRotationMatrix(); }
53 inline Derived inverse() const { return derived().inverse(); }
72 { return internal::rotation_base_generic_product_selector<Derived,OtherDerived>::run(derived(), e.derived()); }
77 { return l.derived() * r.toRotationMatrix(); }
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrixBase.h91 inline const Derived& derived() const { function in class:Eigen::SkylineMatrixBase
95 inline Derived& derived() { function in class:Eigen::SkylineMatrixBase
106 return derived().rows();
111 return derived().cols();
123 return derived().nonZeros();
144 return derived();
153 return derived();
158 derived().resize(other.rows(), other.cols());
162 derived().insert(row, col) = other.coeff(row, col);
164 derived()
[all...]
/external/clang/test/FixIt/
H A Dtypo.cpp120 struct derived : base { struct in inherits:base
125 derived d;
127 // to replace base::i with derived::i as we would for other qualified name misspellings.
/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DIterativeSolverBase.h32 Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::IterativeSolverBase
33 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::IterativeSolverBase
71 return derived();
90 return derived();
111 return derived();
126 return derived();
145 return derived();
172 return internal::solve_retval<Derived, Rhs>(derived(), b.derived());
186 return internal::sparse_solve_retval<IterativeSolverBase, Rhs>(*this, b.derived());
[all...]
/external/eigen/Eigen/src/PardisoSupport/
H A DPardisoSupport.h13 be used to endorse or promote products derived from this software without
180 return internal::solve_retval<PardisoImpl, Rhs>(*this, b.derived());
194 return internal::sparse_solve_retval<PardisoImpl, Rhs>(*this, b.derived());
197 Derived& derived() function in class:Eigen::PardisoImpl
201 const Derived& derived() const function in class:Eigen::PardisoImpl
293 derived().getMatrix(a);
304 return derived();
316 derived().getMatrix(a);
327 return derived();
336 derived()
[all...]
/external/chromium_org/third_party/jinja2/
H A Druntime.py199 def derived(self, locals=None): member in class:Context
200 """Internal helper function to create a derived context."""
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h130 res.d = Derived::IsVectorAtCompileTime ? mat.derived().size() : mat.derived().outerStride();
131 res.x = (void*)(mat.derived().data());
197 Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::CholmodBase
198 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::CholmodBase
216 return derived();
230 return internal::solve_retval<CholmodBase, Rhs>(*this, b.derived());
244 return internal::sparse_solve_retval<CholmodBase, Rhs>(*this, b.derived());
348 return derived();
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h154 return internal::solve_retval<PastixBase, Rhs>(*this, b.derived());
160 Derived& derived() function in class:Eigen::PastixBase
164 const Derived& derived() const function in class:Eigen::PastixBase
234 return internal::sparse_solve_retval<PastixBase, Rhs>(*this, b.derived());
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h44 other.derived().evalTo(derived());
45 return derived();
131 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::SparseMatrixBase
132 inline Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::SparseMatrixBase
150 inline Index rows() const { return derived().rows(); }
152 inline Index cols() const { return derived().cols(); }
158 inline Index nonZeros() const { return derived().nonZeros(); }
172 Derived& markAsRValue() { m_isRValue = true; return derived(); }
180 other.evalTo(derived());
[all...]
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h396 const AutoDiffScalar<_DerType>& derived() const { return *static_cast<const AutoDiffScalar<_DerType>*>(this); } function in struct:Eigen::internal::auto_diff_special_op
397 AutoDiffScalar<_DerType>& derived() { return *static_cast<AutoDiffScalar<_DerType>*>(this); } function in struct:Eigen::internal::auto_diff_special_op
402 return AutoDiffScalar<DerType&>(derived().value() + other, derived().derivatives());
412 derived().value() += other;
413 return derived();
421 derived().value() * other,
422 derived().derivatives() * other);
436 return derived();

Completed in 5218 milliseconds

12