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

1234

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
H A Ddefine_empty_macros.h7 #define METHOD1(Class, ReturnType, MethodName, Type0)
8 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1)
9 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2)
10 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3)
11 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
/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/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dreal_pepper_interface.cc22 #define METHOD1(Class, ReturnType, MethodName, Type0) \
23 virtual ReturnType MethodName(Type0);
24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
25 virtual ReturnType MethodName(Type0, Type1);
26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
27 virtual ReturnType MethodName(Type0, Type1, Type2);
28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
29 virtual ReturnType MethodName(Type0, Type1, Type2, Type3);
30 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
32 virtual ReturnType MethodNam
[all...]
H A Dpepper_interface.h75 #define METHOD1(Class, ReturnType, MethodName, Type0) \
76 virtual ReturnType MethodName(Type0) = 0;
77 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
78 virtual ReturnType MethodName(Type0, Type1) = 0;
79 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
80 virtual ReturnType MethodName(Type0, Type1, Type2) = 0;
81 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
82 virtual ReturnType MethodName(Type0, Type1, Type2, Type3) = 0;
83 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
85 virtual ReturnType MethodNam
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
H A Dpepper_interface_mock.h20 #define METHOD1(Class, ReturnType, MethodName, Type0) \
21 MOCK_METHOD1(MethodName, ReturnType(Type0));
22 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \
23 MOCK_METHOD2(MethodName, ReturnType(Type0, Type1));
24 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \
25 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2));
26 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \
27 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3));
28 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
30 MOCK_METHOD5(MethodName, ReturnType(Type
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DIntegerToStringConversion.h38 typedef PassRefPtr<StringImpl> ReturnType; typedef in struct:WTF::ConversionTrait
40 static inline ReturnType flush(LChar* characters, unsigned length, void*) { return StringImpl::create(characters, length); }
43 typedef void ReturnType; typedef in struct:WTF::ConversionTrait
45 static inline ReturnType flush(LChar* characters, unsigned length, StringBuilder* stringBuilder) { stringBuilder->append(characters, length); }
61 static typename ConversionTrait<T>::ReturnType numberToStringImpl(UnsignedIntegerType number, typename ConversionTrait<T>::AdditionalArgumentType* additionalArgument)
79 inline typename ConversionTrait<T>::ReturnType numberToStringSigned(SignedIntegerType number, typename ConversionTrait<T>::AdditionalArgumentType* additionalArgument = 0)
87 inline typename ConversionTrait<T>::ReturnType numberToStringUnsigned(UnsignedIntegerType number, typename ConversionTrait<T>::AdditionalArgumentType* additionalArgument = 0)
/external/chromium_org/base/
H A Dtask_runner_util.h20 template <typename ReturnType>
21 void ReturnAsParamAdapter(const Callback<ReturnType(void)>& func,
22 ReturnType* result) {
H A Dsequenced_task_runner_helpers.h76 template <class T, class ReturnType>
80 static ReturnType DeleteViaSequencedTaskRunner(
92 template <class T, class ReturnType>
96 static ReturnType ReleaseViaSequencedTaskRunner(
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpath_canonicalizer.py40 class ReturnType(object): class in function:PathCanonicalizer.Canonicalize
56 return ReturnType(path[len(channel_prefix):], True)
60 return ReturnType(path, False)
64 return ReturnType(path + '/', False)
88 return ReturnType(path, False)
107 return ReturnType(path, False)
/external/chromium_org/ppapi/shared_impl/
H A Dproxy_lock.h90 template <class ReturnType>
91 ReturnType CallWhileUnlocked(ReturnType (*function)()) {
95 template <class ReturnType, class P1>
96 ReturnType CallWhileUnlocked(ReturnType (*function)(P1), const P1& p1) {
100 template <class ReturnType, class P1, class P2>
101 ReturnType CallWhileUnlocked(ReturnType (*function)(P1, P2),
107 template <class ReturnType, clas
[all...]
/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.h177 typename Scalar=typename internal::traits<ExpressionType>::Scalar> struct ReturnType struct in class:Eigen::VectorwiseOp
263 const typename ReturnType<internal::member_minCoeff>::Type minCoeff() const
273 const typename ReturnType<internal::member_maxCoeff>::Type maxCoeff() const
283 const typename ReturnType<internal::member_squaredNorm,RealScalar>::Type squaredNorm() const
293 const typename ReturnType<internal::member_norm,RealScalar>::Type norm() const
302 const typename ReturnType<internal::member_blueNorm,RealScalar>::Type blueNorm() const
311 const typename ReturnType<internal::member_stableNorm,RealScalar>::Type stableNorm() const
320 const typename ReturnType<internal::member_hypotNorm,RealScalar>::Type hypotNorm() const
330 const typename ReturnType<internal::member_sum>::Type sum() const
337 const typename ReturnType<interna
[all...]
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h201 template <typename ReturnType>
202 static MatcherList matcherMarshall0(ReturnType (*Func)(),
212 template <typename ReturnType, typename ArgType1>
213 static MatcherList matcherMarshall1(ReturnType (*Func)(ArgType1),
225 template <typename ReturnType, typename ArgType1, typename ArgType2>
226 static MatcherList matcherMarshall2(ReturnType (*Func)(ArgType1, ArgType2),
282 template <typename ReturnType>
283 MatcherCreateCallback *makeMatcherAutoMarshall(ReturnType (*Func)(),
285 return new FixedArgCountMatcherCreateCallback<ReturnType (*)()>(
290 template <typename ReturnType, typenam
[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/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DSyncCallbackHelper.h54 typedef PassRefPtr<ResultType> ReturnType; typedef in struct:WebCore::HelperResultType
57 static ReturnType createFromCallbackArg(CallbackArg argument)
65 typedef EntrySyncVector ReturnType; typedef in struct:WebCore::HelperResultType
87 typedef typename ResultTypeTrait::ReturnType ResultReturnType;
/external/v8/src/
H A Dobjects-visiting.h222 template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
225 static inline ReturnType Visit(Map* map, HeapObject* object) {
232 return static_cast<ReturnType>(object_size);
236 static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
243 return static_cast<ReturnType>(object_size);
248 template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
251 static inline ReturnType Visit(Map* map, HeapObject* object) {
257 return static_cast<ReturnType>(BodyDescriptor::kSize);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_dispatcher_host.h127 template <class ReturnType>
128 ReturnType* GetOrTerminateProcess(IDMap<ReturnType, IDMapOwnPointer>* map,
130 template <class ReturnType>
131 ReturnType* GetOrTerminateProcess(RefIDMap<ReturnType>* map,
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTypeTraits.h276 template<typename ReturnType, bool Expr> class InstantiateOnlyWhen;
277 template<typename ReturnType> class InstantiateOnlyWhen<ReturnType, true> {
279 typedef ReturnType Type;
282 #define EnsurePtrConvertibleType(ReturnType, From, To) \
283 typename InstantiateOnlyWhen<ReturnType, IsPointerConvertible<From, To>::Value >::Type
/external/llvm/lib/IR/
H A DLLVMContextImpl.h143 const Type *ReturnType; member in struct:llvm::FunctionTypeKeyInfo::KeyTy
147 ReturnType(R), Params(P), isVarArg(V) {}
149 ReturnType(FT->getReturnType()),
153 if (ReturnType != that.ReturnType)
172 return hash_combine(Key.ReturnType,
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dproxy.h63 class ReturnType { class in namespace:webrtc
81 class ReturnType<void> { class in namespace:webrtc
112 ReturnType<R> r_;
132 ReturnType<R> r_;
152 ReturnType<R> r_;
173 ReturnType<R> r_;
194 ReturnType<R> r_;
217 ReturnType<R> r_;
/external/chromium_org/v8/src/
H A Dobjects-visiting.h228 template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
231 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
238 return static_cast<ReturnType>(object_size);
242 static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
249 return static_cast<ReturnType>(object_size);
254 template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
257 INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
263 return static_cast<ReturnType>(BodyDescriptor::kSize);
/external/clang/lib/Sema/
H A DSemaLambda.cpp197 LSI->ReturnType = CallOperator->getResultType();
199 if (!LSI->ReturnType->isDependentType() &&
200 !LSI->ReturnType->isVoidType()) {
201 if (RequireCompleteType(CallOperator->getLocStart(), LSI->ReturnType,
385 if (CSI.ReturnType.isNull())
386 CSI.ReturnType = Ctx.VoidTy;
392 assert(!CSI.ReturnType.isNull() && "We should have a tentative return type.");
393 if (CSI.ReturnType->isDependentType())
401 CSI.ReturnType = Context.getTypeDeclType(ED);
402 adjustBlockReturnsToEnum(*this, CSI.Returns, CSI.ReturnType);
423 QualType ReturnType = (RetE ? RetE->getType() : Context.VoidTy); local
[all...]
/external/clang/include/clang/AST/
H A DASTMutationListener.h69 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h494 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
499 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
505 typedef AutoDiffScalar<DerType> ReturnType; typedef in struct:Eigen::internal::scalar_product_traits
516 typedef AutoDiffScalar<CwiseUnaryOp<Eigen::internal::scalar_multiple_op<Scalar>, const typename Eigen::internal::remove_all<DerType>::type> > ReturnType; \
539 return ReturnType(abs(x.value()), x.derivatives() * (sign(x.value())));)
543 return ReturnType(abs2(x.value()), x.derivatives() * (Scalar(2)*x.value()));)
548 return ReturnType(sqrtx,x.derivatives() * (Scalar(0.5) / sqrtx));)
553 return ReturnType(cos(x.value()), x.derivatives() * (-sin(x.value())));)
558 return ReturnType(sin(x.value()),x.derivatives() * cos(x.value()));)
563 return ReturnType(exp
[all...]
/external/chromium/base/
H A Did_map.h116 template<class ReturnType>
143 ReturnType* GetCurrentValue() const {

Completed in 4365 milliseconds

1234