Searched refs:ReturnType (Results 1 - 25 of 92) sorted by relevance

1234

/external/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h27 template <typename ReturnType, typename ContainerBase>
38 template <typename ReturnType, typename Container,
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
41 public RefCounted< PODIterator<ReturnType, Container> > {
50 virtual ReturnType Next() = 0;
65 template <typename ReturnType, typename Container,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
68 public RefCounted< RefIterator<ReturnType, Container> > {
77 CALLER_ATTACH virtual ReturnType* Next() = 0;
/external/eigen/Eigen/src/Core/
H A DReturnByValue.h25 : 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; typedef in class:Eigen::ReturnByValue
H A DVectorwiseOp.h178 typename Scalar=typename internal::traits<ExpressionType>::Scalar> struct ReturnType struct in class:Eigen::VectorwiseOp
288 const typename ReturnType<internal::member_minCoeff>::Type minCoeff() const
300 const typename ReturnType<internal::member_maxCoeff>::Type maxCoeff() const
310 const typename ReturnType<internal::member_squaredNorm,RealScalar>::Type squaredNorm() const
320 const typename ReturnType<internal::member_norm,RealScalar>::Type norm() const
329 const typename ReturnType<internal::member_blueNorm,RealScalar>::Type blueNorm() const
338 const typename ReturnType<internal::member_stableNorm,RealScalar>::Type stableNorm() const
347 const typename ReturnType<internal::member_hypotNorm,RealScalar>::Type hypotNorm() const
357 const typename ReturnType<internal::member_sum>::Type sum() const
364 const typename ReturnType<interna
[all...]
H A DDot.h31 typedef typename scalar_product_traits<typename traits<T>::Scalar,typename traits<U>::Scalar>::ReturnType ResScalar;
41 typedef typename scalar_product_traits<typename traits<T>::Scalar,typename traits<U>::Scalar>::ReturnType ResScalar;
62 typename internal::scalar_product_traits<typename internal::traits<Derived>::Scalar,typename internal::traits<OtherDerived>::Scalar>::ReturnType
/external/v8/test/cctest/compiler/
H A Dgraph-builder-tester.h75 template <typename ReturnType>
81 public CallHelper2<ReturnType, GraphBuilderTester<ReturnType> > {
92 main_zone(), ReturnValueTraits<ReturnType>::Representation(),
H A Dcodegen-tester.h81 template <typename ReturnType>
84 public CallHelper2<ReturnType, RawMachineAssemblerTester<ReturnType> > {
92 ReturnValueTraits<ReturnType>::Representation(), p0, p1, p2, p3,
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h40 /// \brief AST_MATCHER_FUNCTION(ReturnType, DefineMatcher) { ... }
42 /// ReturnType object.
43 #define AST_MATCHER_FUNCTION(ReturnType, DefineMatcher) \
44 inline ReturnType DefineMatcher##_getInstance(); \
45 inline ReturnType DefineMatcher() { \
47 ReturnType, DefineMatcher##_getInstance>::getInstance(); \
49 inline ReturnType DefineMatcher##_getInstance()
51 /// \brief AST_MATCHER_FUNCTION_P(ReturnType, DefineMatcher, ParamType, Param) { ... }
53 /// ReturnType object.
60 /// The code should return an instance of ReturnType
[all...]
/external/eigen/Eigen/src/Geometry/
H A DRotationBase.h70 EIGEN_STRONG_INLINE typename internal::rotation_base_generic_product_selector<Derived,OtherDerived,OtherDerived::IsVectorAtCompileTime>::ReturnType
104 typedef Matrix<typename RotationDerived::Scalar,Dim,Dim> ReturnType; typedef in struct:Eigen::internal::rotation_base_generic_product_selector
105 static inline ReturnType run(const RotationDerived& r, const MatrixType& m)
112 typedef Transform<Scalar,Dim,Affine> ReturnType; typedef in struct:Eigen::internal::rotation_base_generic_product_selector
113 static inline ReturnType run(const RotationDerived& r, const DiagonalMatrix<Scalar,Dim,MaxDim>& m)
115 ReturnType res(r);
125 typedef Matrix<typename RotationDerived::Scalar,Dim,1> ReturnType; typedef in struct:Eigen::internal::rotation_base_generic_product_selector
126 static EIGEN_STRONG_INLINE ReturnType run(const RotationDerived& r, const OtherVectorType& v)
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h415 template <typename ReturnType>
420 typedef ReturnType (*FuncType)();
426 template <typename ReturnType, typename ArgType1>
431 typedef ReturnType (*FuncType)(ArgType1);
439 template <typename ReturnType, typename ArgType1, typename ArgType2>
444 typedef ReturnType (*FuncType)(ArgType1, ArgType2);
622 template <typename ReturnType>
623 MatcherDescriptor *makeMatcherAutoMarshall(ReturnType (*Func)(),
626 BuildReturnTypeVector<ReturnType>::build(RetTypes);
628 matcherMarshall0<ReturnType>, reinterpret_cas
[all...]
/external/llvm/tools/llvm-pdbdump/
H A DFunctionDumper.cpp52 auto ReturnType = Symbol.getReturnType(); local
53 ReturnType->dump(*this);
150 auto ReturnType = Signature->getReturnType(); local
151 ReturnType->dump(*this);
/external/clang/lib/AST/
H A DComment.cpp161 ReturnType = FD->getReturnType();
181 ReturnType = MD->getReturnType();
193 ReturnType = FD->getReturnType();
279 ReturnType = FTL.getReturnLoc().getType();
298 ReturnType = FTL.getReturnLoc().getType();
/external/clang/lib/Sema/
H A DSemaLambda.cpp456 LSI->ReturnType = CallOperator->getReturnType();
458 if (!LSI->ReturnType->isDependentType() &&
459 !LSI->ReturnType->isVoidType()) {
460 if (RequireCompleteType(CallOperator->getLocStart(), LSI->ReturnType,
618 assert(CSI.ReturnType.isNull() || !CSI.ReturnType->isUndeducedType());
648 if (CSI.ReturnType.isNull())
649 CSI.ReturnType = Ctx.VoidTy;
655 assert(!CSI.ReturnType.isNull() && "We should have a tentative return type.");
656 if (CSI.ReturnType
686 QualType ReturnType = local
[all...]
H A DSemaCodeComplete.cpp1790 !SemaRef.getCurBlock()->ReturnType.isNull())
1791 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
4084 ResultType = BSI->ReturnType;
6202 QualType ReturnType,
6218 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6223 FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType,
6230 WantInstanceMethods, ReturnType,
6241 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6247 WantInstanceMethods, ReturnType, KnownMethods,
6264 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6199 FindImplementableMethods(ASTContext &Context, ObjCContainerDecl *Container, bool WantInstanceMethods, QualType ReturnType, KnownMethodsMap &KnownMethods, bool InOriginalClass = true) argument
6314 AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, bool IsInstanceMethod, QualType ReturnType, ASTContext &Context, VisitedSelectorSet &KnownSelectors, ResultBuilder &Results) argument
6949 QualType ReturnType = GetTypeFromParser(ReturnTy); local
[all...]
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h496 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
503 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
510 typedef AutoDiffScalar<DerType> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
517 typedef AutoDiffScalar<DerType> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
528 typedef AutoDiffScalar<CwiseUnaryOp<Eigen::internal::scalar_multiple_op<Scalar>, const typename Eigen::internal::remove_all<DerType>::type> > ReturnType; \
549 return ReturnType(abs(x.value()), x.derivatives() * (x.value()<0 ? -1 : 1) );)
553 return ReturnType(abs2(x.value()), x.derivatives() * (Scalar(2)*x.value()));)
558 return ReturnType(sqrtx,x.derivatives() * (Scalar(0.5) / sqrtx));)
563 return ReturnType(cos(x.value()), x.derivatives() * (-sin(x.value())));)
568 return ReturnType(si
[all...]
/external/eigen/Eigen/src/misc/
H A DSparseSolve.h24 typedef SparseMatrix<typename Rhs::Scalar, Rhs::Options, typename Rhs::Index> ReturnType; typedef in struct:Eigen::internal::traits
97 Rhs::MaxColsAtCompileTime> ReturnType; typedef in struct:Eigen::internal::traits
H A DImage.h32 > ReturnType; typedef in struct:Eigen::internal::traits
H A DKernel.h34 > ReturnType; typedef in struct:Eigen::internal::traits
H A DSolve.h29 Rhs::MaxColsAtCompileTime> ReturnType; typedef in struct:Eigen::internal::traits
/external/eigen/blas/
H A DPackedTriangularMatrixVector.h21 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
50 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
/external/v8/src/heap/
H A Dobjects-visiting.h200 template <typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
203 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
207 return static_cast<ReturnType>(object_size);
211 static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
215 return static_cast<ReturnType>(object_size);
220 template <typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
223 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
227 return static_cast<ReturnType>(BodyDescriptor::kSize);
/external/clang/include/clang/AST/
H A DASTMutationListener.h75 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
/external/llvm/include/llvm/Support/
H A DARMWinEH.h26 enum class ReturnType { class in namespace:llvm::ARM::WinEH
135 ReturnType Ret() const {
140 return ReturnType((UnwindData & 0x00006000) >> 13);
/external/eigen/Eigen/src/Core/util/
H A DMeta.h200 typedef T ReturnType; typedef in struct:Eigen::scalar_product_traits
209 typedef std::complex<T> ReturnType; typedef in struct:Eigen::scalar_product_traits
218 typedef std::complex<T> ReturnType; typedef in struct:Eigen::scalar_product_traits
224 // typedef typename scalar_product_traits<typename remove_all<ArgType0>::type, typename remove_all<ArgType1>::type>::ReturnType type;
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h22 typedef typename SPQRType::MatrixType ReturnType; typedef in struct:Eigen::internal::traits
26 typedef typename SPQRType::MatrixType ReturnType; typedef in struct:Eigen::internal::traits
30 typedef typename Derived::PlainObject ReturnType; typedef in struct:Eigen::internal::traits
/external/eigen/unsupported/Eigen/src/KroneckerProduct/
H A DKroneckerTensorProduct.h157 typedef typename scalar_product_traits<typename Lhs::Scalar, typename Rhs::Scalar>::ReturnType Scalar;
167 typedef Matrix<Scalar,Rows,Cols> ReturnType; typedef in struct:Eigen::internal::traits
176 typedef typename scalar_product_traits<typename Lhs::Scalar, typename Rhs::Scalar>::ReturnType Scalar;

Completed in 1756 milliseconds

1234