HomeSort by relevance Sort by last modified time
    Searched refs:ReturnType (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/parameter-framework/asio-1.10.6/include/asio/
handler_type.hpp 70 template <typename ReturnType, typename Signature>
71 struct handler_type<ReturnType(), Signature>
72 : handler_type<ReturnType(*)(), Signature> {};
74 template <typename ReturnType, typename Arg1, typename Signature>
75 struct handler_type<ReturnType(Arg1), Signature>
76 : handler_type<ReturnType(*)(Arg1), Signature> {};
78 template <typename ReturnType, typename Arg1, typename Arg2, typename Signature>
79 struct handler_type<ReturnType(Arg1, Arg2), Signature>
80 : handler_type<ReturnType(*)(Arg1, Arg2), Signature> {};
82 template <typename ReturnType, typename Arg1, typename Arg2, typename Arg3
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
java_iterator.h 27 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/parameter-framework/upstream/test/functional-tests/include/
FailureWrapper.hpp 91 template <class K, class ReturnType, class... MArgs, class... Args>
92 ReturnType *mayFailCall(ReturnType *(K::*method)(MArgs...), Args &&... args)
94 return wrapCall<ReturnType *>(*this, method, std::forward<Args>(args)...);
102 template <class K, class ReturnType, class... MArgs, class... Args>
103 ReturnType *mayFailCall(ReturnType *(K::*method)(MArgs...) const, Args &&... args) const
105 return wrapCall<ReturnType *>(*this, method, std::forward<Args>(args)...);
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
function_traits.h 41 template <typename ReturnType, typename... Params>
43 SignatureType<ConditionalRewrite<Return_, ReturnType>(
46 template <template <typename> class Wrapper, typename ReturnType,
49 SignatureType<Wrapper<ConditionalRewrite<Return_, ReturnType>>(
52 template <typename ReturnType>
54 SignatureType<ConditionalRewrite<Return_, ReturnType>(Args_...)>;
remote_method_type.h 30 template <typename ReturnType, typename... Params>
32 typename Traits::template RewriteSignature<ReturnType, Params...>;
34 template <template <typename> class Wrapper, typename ReturnType,
37 typename Traits::template RewriteSignatureWrapReturn<Wrapper, ReturnType,
40 template <typename ReturnType>
41 using RewriteReturn = typename Traits::template RewriteReturn<ReturnType>;
argument_encoder.h 44 using ReturnType = typename std::decay<Return>::type;
54 void EncodeReturn(const ReturnType& return_value) {
129 using ReturnType = typename std::decay<Return>::type;
141 ErrorType DecodeReturn(ReturnType* value) {
  /external/libchrome/base/
task_runner_util.h 19 template <typename ReturnType>
20 void ReturnAsParamAdapter(const Callback<ReturnType(void)>& func,
21 ReturnType* result) {
sequenced_task_runner_helpers.h 77 template <class T, class ReturnType>
81 static ReturnType DeleteViaSequencedTaskRunner(
93 template <class T, class ReturnType>
97 static ReturnType ReleaseViaSequencedTaskRunner(
bind_internal.h 275 template <bool is_weak_call, typename ReturnType>
278 template <typename ReturnType>
279 struct InvokeHelper<false, ReturnType> {
281 static inline ReturnType MakeItSo(Functor&& functor, RunArgs&&... args) {
288 template <typename ReturnType>
289 struct InvokeHelper<true, ReturnType> {
293 static_assert(std::is_void<ReturnType>::value,
358 using ReturnType = ExtractReturnType<RunType>;
361 using Type = MakeFunctionType<ReturnType, UnboundArgs>;
  /external/eigen/Eigen/src/Core/
ReturnByValue.h 20 : public traits<typename traits<Derived>::ReturnType>
26 Flags = (traits<typename traits<Derived>::ReturnType>::Flags
41 typedef typename traits<Derived>::ReturnType type;
54 typedef typename internal::traits<Derived>::ReturnType ReturnType;
96 : public evaluator<typename internal::traits<Derived>::ReturnType>
99 typedef typename internal::traits<Derived>::ReturnType PlainObject;
VectorwiseOp.h 167 typename Scalar_=Scalar> struct ReturnType
274 typedef typename ReturnType<internal::member_minCoeff>::Type MinCoeffReturnType;
275 typedef typename ReturnType<internal::member_maxCoeff>::Type MaxCoeffReturnType;
276 typedef typename ReturnType<internal::member_squaredNorm,RealScalar>::Type SquaredNormReturnType;
277 typedef typename ReturnType<internal::member_norm,RealScalar>::Type NormReturnType;
278 typedef typename ReturnType<internal::member_blueNorm,RealScalar>::Type BlueNormReturnType;
279 typedef typename ReturnType<internal::member_stableNorm,RealScalar>::Type StableNormReturnType;
280 typedef typename ReturnType<internal::member_hypotNorm,RealScalar>::Type HypotNormReturnType;
281 typedef typename ReturnType<internal::member_sum>::Type SumReturnType;
282 typedef typename ReturnType<internal::member_mean>::Type MeanReturnType
    [all...]
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 70 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE typename internal::rotation_base_generic_product_selector<Derived,OtherDerived,OtherDerived::IsVectorAtCompileTime>::ReturnType
104 typedef Matrix<typename RotationDerived::Scalar,Dim,Dim> ReturnType;
105 EIGEN_DEVICE_FUNC static inline ReturnType run(const RotationDerived& r, const MatrixType& m)
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
113 EIGEN_DEVICE_FUNC 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;
126 EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE ReturnType run(const RotationDerived& r, const OtherVectorType& v)
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaFinderProxy.java 74 if (JpaFinderProxy.ReturnType.PLAIN.equals(finderDescriptor.returnType)) {
76 } else if (JpaFinderProxy.ReturnType.COLLECTION.equals(finderDescriptor.returnType)) {
78 } else if (JpaFinderProxy.ReturnType.ARRAY.equals(finderDescriptor.returnType)) {
162 finderDescriptor.returnType = determineReturnType(finderDescriptor.returnClass);
200 if (JpaFinderProxy.ReturnType.COLLECTION.equals(finderDescriptor.returnType)
231 private JpaFinderProxy.ReturnType determineReturnType(Class<?> returnClass)
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 53 /// \brief AST_MATCHER_FUNCTION(ReturnType, DefineMatcher) { ... }
55 /// ReturnType object.
56 #define AST_MATCHER_FUNCTION(ReturnType, DefineMatcher) \
57 inline ReturnType DefineMatcher##_getInstance(); \
58 inline ReturnType DefineMatcher() { \
60 ReturnType, DefineMatcher##_getInstance>::getInstance(); \
62 inline ReturnType DefineMatcher##_getInstance()
64 /// \brief AST_MATCHER_FUNCTION_P(ReturnType, DefineMatcher, ParamType, Param) {
67 /// ReturnType object.
74 /// The code should return an instance of ReturnType
    [all...]
  /system/libhidl/transport/token/1.0/utils/
HybridInterface.cpp 62 template <typename ReturnType>
63 bool isBadTransaction(hardware::Return<ReturnType>& transaction) {
  /external/eigen/Eigen/src/plugins/
ArrayCwiseBinaryOps.h 115 typedef CwiseBinaryOp<internal::scalar_cmp_op<Scalar,Scalar, internal::cmp_ ## COMPARATOR>, const Derived, const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> > Cmp ## COMPARATOR ## ReturnType; \
116 typedef CwiseBinaryOp<internal::scalar_cmp_op<Scalar,Scalar, internal::cmp_ ## COMPARATOR>, const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject>, const Derived > RCmp ## COMPARATOR ## ReturnType; \
117 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Cmp ## COMPARATOR ## ReturnType \
121 EIGEN_DEVICE_FUNC friend EIGEN_STRONG_INLINE const RCmp ## COMPARATOR ## ReturnType \
134 inline const RCmp ## RCOMPARATOR ## ReturnType \
138 friend inline const Cmp ## RCOMPARATOR ## ReturnType \
  /external/libmojo/mojo/public/cpp/bindings/lib/
serialization_util.h 134 template <typename ReturnType, typename ParamType, typename InputUserType>
135 ReturnType CallWithContext(ReturnType (*f)(ParamType, void*),
141 template <typename ReturnType, typename ParamType, typename InputUserType>
142 ReturnType CallWithContext(ReturnType (*f)(ParamType),
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 35 SparseMatrix<Scalar,int(SrcStorageOrder)==RowMajor?ColMajor:RowMajor,StorageIndex> >::type ReturnType;
92 // typename traits<permutation_sparse_matrix_product<Rhs,Lhs,OnTheRight,false> >::ReturnType
97 : public evaluator<typename permutation_matrix_product<Rhs,OnTheLeft,false,SparseShape>::ReturnType>
100 typedef typename permutation_matrix_product<Rhs,OnTheLeft,false,SparseShape>::ReturnType PlainObject;
120 : public evaluator<typename permutation_matrix_product<Lhs,OnTheRight,false,SparseShape>::ReturnType>
123 typedef typename permutation_matrix_product<Lhs,OnTheRight,false,SparseShape>::ReturnType PlainObject;
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 436 template <typename ReturnType>
441 typedef ReturnType (*FuncType)();
447 template <typename ReturnType, typename ArgType1>
452 typedef ReturnType (*FuncType)(ArgType1);
460 template <typename ReturnType, typename ArgType1, typename ArgType2>
465 typedef ReturnType (*FuncType)(ArgType1, ArgType2);
643 template <typename ReturnType>
644 MatcherDescriptor *makeMatcherAutoMarshall(ReturnType (*Func)(),
647 BuildReturnTypeVector<ReturnType>::build(RetTypes);
649 matcherMarshall0<ReturnType>, reinterpret_cast<void (*)()>(Func)
    [all...]
  /external/v8/src/heap/
objects-visiting.h 202 template <typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
205 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
208 return static_cast<ReturnType>(object_size);
213 static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
220 return static_cast<ReturnType>(object_size);
225 template <typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
228 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
230 return static_cast<ReturnType>(BodyDescriptor::kSize);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
DoubleTest.java 37 Target t = new Target(Target.FunctionType.NORMAL, Target.ReturnType.DOUBLE, true);
  /external/clang/include/clang/AST/
ASTMutationListener.h 78 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
  /external/eigen/Eigen/src/misc/
Image.h 32 > ReturnType;
Kernel.h 34 > ReturnType;
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.cpp 55 auto ReturnType = Symbol.getReturnType();
56 ReturnType->dump(*this);
153 auto ReturnType = Signature->getReturnType();
154 ReturnType->dump(*this);

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011