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

1 2 3 4

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
define_empty_macros.h 7 #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/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
pepper_interface_mock.h 20 #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(Type0, Type1, Type2, Type3, Type4))
    [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/chromium_org/native_client_sdk/src/libraries/nacl_io/
real_pepper_interface.cc 22 #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 MethodName(Type0, Type1, Type2, Type3, Type4)
    [all...]
pepper_interface.h 75 #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 MethodName(Type0, Type1, Type2, Type3, Type4) = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
IntegerToStringConversion.h 38 typedef PassRefPtr<StringImpl> ReturnType;
40 static inline ReturnType flush(LChar* characters, unsigned length, void*) { return StringImpl::create(characters, length); }
43 typedef void ReturnType;
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/eigen/Eigen/src/Core/
ReturnByValue.h 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;
VectorwiseOp.h 177 typename Scalar=typename internal::traits<ExpressionType>::Scalar> struct ReturnType
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<internal::member_mean>::Type mean() cons
    [all...]
  /external/chromium_org/base/
task_runner_util.h 20 template <typename ReturnType>
21 void ReturnAsParamAdapter(const Callback<ReturnType(void)>& func,
22 ReturnType* result) {
sequenced_task_runner_helpers.h 76 template <class T, class ReturnType>
80 static ReturnType DeleteViaSequencedTaskRunner(
92 template <class T, class ReturnType>
96 static ReturnType ReleaseViaSequencedTaskRunner(
  /external/chromium_org/ppapi/shared_impl/
proxy_lock.h 90 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, class P1, class P2, class P3
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 201 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, typename ArgType1
    [all...]
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 70 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 static inline ReturnType run(const RotationDerived& r, const MatrixType& m)
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
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;
126 static EIGEN_STRONG_INLINE ReturnType run(const RotationDerived& r, const OtherVectorType& v)
  /external/v8/src/
objects-visiting.h 222 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/third_party/WebKit/Source/modules/filesystem/
SyncCallbackHelper.h 54 typedef PassRefPtr<ResultType> ReturnType;
57 static ReturnType createFromCallbackArg(CallbackArg argument)
65 typedef EntrySyncVector ReturnType;
87 typedef typename ResultTypeTrait::ReturnType ResultReturnType;
  /external/clang/include/clang/AST/
ASTMutationListener.h 69 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.h 127 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/
TypeTraits.h 276 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/
LLVMContextImpl.h 143 const Type *ReturnType;
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/chrome/common/extensions/docs/server2/
path_canonicalizer.py 40 class ReturnType(object):
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/third_party/libjingle/source/talk/app/webrtc/
proxy.h 63 class ReturnType {
81 class ReturnType<void> {
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/
objects-visiting.h 228 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/
SemaLambda.cpp 197 LSI->ReturnType = CallOperator->getResultType();
199 if (!LSI->ReturnType->isDependentType() &&
200 !LSI->ReturnType->isVoidType()) {
201 if (RequireCompleteType(CallOperator->getLocStart(), LSI->ReturnType,
333 QualType returnType) {
338 if (S.Context.hasSameType(retValue->getType(), returnType))
342 assert(returnType->isIntegralOrUnscopedEnumerationType());
348 E = ImplicitCastExpr::Create(S.Context, returnType, CK_IntegralCast,
385 if (CSI.ReturnType.isNull())
386 CSI.ReturnType = Ctx.VoidTy
    [all...]
  /external/eigen/Eigen/src/misc/
Kernel.h 34 > ReturnType;
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 494 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType;
499 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType;
505 typedef AutoDiffScalar<DerType> ReturnType;
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(expx,x.derivatives() * expx);
    [all...]

Completed in 1219 milliseconds

1 2 3 4