Searched defs:traits (Results 1 - 25 of 101) sorted by relevance

12345

/external/eigen/Eigen/src/Core/
H A DVectorBlock.h49 struct traits<VectorBlock<VectorType, Size> > struct in namespace:Eigen::internal
50 : public traits<Block<VectorType,
51 traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
52 traits<VectorType>::Flags & RowMajorBit ? Size : 1> >
59 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
60 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1>
63 internal::traits<VectorType>::Flags & RowMajorBit ? 1 : Size,
64 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1> Base;
66 IsColVector = !(internal::traits<VectorType>::Flags & RowMajorBit)
H A DReturnByValue.h24 struct traits<ReturnByValue<Derived> > struct in namespace:Eigen::internal
25 : public traits<typename traits<Derived>::ReturnType>
31 Flags = (traits<typename traits<Derived>::ReturnType>::Flags
45 typedef typename traits<Derived>::ReturnType type;
54 typedef typename internal::traits<Derived>::ReturnType ReturnType;
H A DArray.h34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > struct in namespace:Eigen::internal
H A DCwiseUnaryOp.h38 struct traits<CwiseUnaryOp<UnaryOp, XprType> > struct in namespace:Eigen::internal
39 : traits<XprType>
60 public CwiseUnaryOpImpl<UnaryOp, XprType, typename internal::traits<XprType>::StorageKind>
64 typedef typename CwiseUnaryOpImpl<UnaryOp, XprType,typename internal::traits<XprType>::StorageKind>::Base Base;
H A DFlagged.h33 struct traits<Flagged<ExpressionType, Added, Removed> > : traits<ExpressionType> struct in namespace:Eigen::internal
H A DForceAlignedAccess.h30 struct traits<ForceAlignedAccess<ExpressionType> > : public traits<ExpressionType> struct in namespace:Eigen::internal
H A DNestByValue.h31 struct traits<NestByValue<ExpressionType> > : public traits<ExpressionType> struct in namespace:Eigen::internal
H A DSwap.h24 struct traits<SwapWrapper<ExpressionType> > : traits<ExpressionType> {}; struct in namespace:Eigen::internal
H A DArrayWrapper.h28 struct traits<ArrayWrapper<ExpressionType> > struct in namespace:Eigen::internal
29 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
148 struct traits<MatrixWrapper<ExpressionType> > struct in namespace:Eigen::internal
149 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
H A DCwiseUnaryView.h31 struct traits<CwiseUnaryView<ViewOp, MatrixType> > struct in namespace:Eigen::internal
32 : traits<MatrixType>
35 ViewOp(typename traits<MatrixType>::Scalar)
40 Flags = (traits<_MatrixTypeNested>::Flags & (HereditaryBits | LvalueBit | LinearAccessBit | DirectAccessBit)),
41 CoeffReadCost = traits<_MatrixTypeNested>::CoeffReadCost + functor_traits<ViewOp>::Cost,
47 : int(MatrixTypeInnerStride) * int(sizeof(typename traits<MatrixType>::Scalar) / sizeof(Scalar)),
50 : outer_stride_at_compile_time<MatrixType>::ret * int(sizeof(typename traits<MatrixType>::Scalar) / sizeof(Scalar))
59 class CwiseUnaryView : public CwiseUnaryViewImpl<ViewOp, MatrixType, typename internal::traits<MatrixType>::StorageKind>
63 typedef typename CwiseUnaryViewImpl<ViewOp, MatrixType,typename internal::traits<MatrixType>::StorageKind>::Base Base;
108 return derived().nestedExpression().innerStride() * sizeof(typename internal::traits<MatrixTyp
[all...]
/external/llvm/include/llvm/Support/
H A DRegistryParser.h37 typedef U traits; typedef in class:llvm::RegistryParser
43 addLiteralOption(traits::nameof(E), &E, traits::descof(E));
/external/chromium_org/base/
H A Dscoped_generic_unittest.cc33 IntTraits traits(&values_freed);
37 ScopedInt a(IntTraits::InvalidValue(), traits); local
44 ScopedInt a(kFirst, traits);
52 ScopedInt a(kFirst, traits);
55 ScopedInt b(IntTraits::InvalidValue(), traits); local
64 ScopedInt b(kFirst, traits);
75 ScopedInt a(kFirst, traits);
76 ScopedInt b(kSecond, traits);
90 ScopedInt a(kFirst, traits);
102 IntTraits traits(
[all...]
H A Dscoped_generic.h35 // standard copyable semantics and have a specific "invalid" value. The traits
42 // // for stateful traits.
81 // Constructor. Allows initialization of a stateful traits object.
82 ScopedGeneric(const element_type& value, const traits_type& traits) argument
83 : data_(value, traits) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSegmentedFontFace.h49 static PassRefPtrWillBeRawPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector, FontTraits traits) argument
51 return adoptRefWillBeNoop(new CSSSegmentedFontFace(selector, traits));
56 FontTraits traits() const { return m_traits; } function in class:blink::FINAL
H A DCSSSegmentedFontFace.cpp40 CSSSegmentedFontFace::CSSSegmentedFontFace(CSSFontSelector* fontSelector, FontTraits traits) argument
42 , m_traits(traits)
133 FontTraits desiredTraits = fontDescription.traits();
/external/eigen/Eigen/src/Core/util/
H A DForwardDeclarations.h17 template<typename T> struct traits;
19 // here we say once and for all that traits<const T> == traits<T>
20 // When constness must affect traits, it has to be constness on template parameters on which T itself depends.
21 // For example, traits<Map<const T> > != traits<Map<T> >, but
22 // traits<const Map<T> > == traits<Map<T> >
23 template<typename T> struct traits<const T> : traits< struct in namespace:Eigen::internal
[all...]
/external/deqp/framework/opengl/
H A DgluObjectWrapper.cpp35 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits) argument
37 , m_traits (traits)
40 (gl.*traits.genFunc)(1, &m_object);
45 const char* objectName = traits.name;
78 ObjectVector::ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects) argument
80 , m_traits (traits)
/external/eigen/Eigen/src/misc/
H A DKernel.h21 struct traits<kernel_retval_base<DecompositionType> > struct in namespace:Eigen::internal
H A DSolve.h21 struct traits<solve_retval_base<DecompositionType, Rhs> > struct in namespace:Eigen::internal
H A DImage.h21 struct traits<image_retval_base<DecompositionType> > struct in namespace:Eigen::internal
H A DSparseSolve.h21 struct traits<sparse_solve_retval_base<DecompositionType, Rhs> > struct in namespace:Eigen::internal
89 struct traits<solve_retval_with_guess<DecompositionType, Rhs, Guess> > struct in namespace:Eigen::internal
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cc44 Target<int*>* traits = &Provider<int*>::Instance; local
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h31 struct traits<Minor<MatrixType> > struct in namespace:Eigen::internal
32 : traits<MatrixType>
/external/eigen/Eigen/src/SparseCore/
H A DSparsePermutation.h20 struct traits<permut_sparsematrix_product_retval<PermutationType, MatrixType, Side, Transposed> > struct in namespace:Eigen::internal
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontDescription.cpp109 FontTraits FontDescription::traits() const function in class:blink::FontDescription
126 void FontDescription::setTraits(FontTraits traits) argument
128 setStyle(traits.style());
129 setVariant(traits.variant());
130 setWeight(traits.weight());
131 setStretch(traits.stretch());
157 FontTraits fontTraits = desiredTraits.bitfield() ? desiredTraits : traits();

Completed in 7188 milliseconds

12345