Searched refs:ResultType (Results 1 - 25 of 76) sorted by relevance

1234

/external/webkit/Source/JavaScriptCore/parser/
H A DResultType.h31 struct ResultType { struct in namespace:JSC
46 explicit ResultType(Type type) function in struct:JSC::ResultType
81 static ResultType nullType()
83 return ResultType(TypeMaybeNull);
86 static ResultType booleanType()
88 return ResultType(TypeMaybeBool);
91 static ResultType numberType()
93 return ResultType(TypeMaybeNumber);
96 static ResultType numberTypeCanReuse()
98 return ResultType(TypeReusabl
141 OperandTypes(ResultType first = ResultType::unknownType(), ResultType second = ResultType::unknownType()) argument
[all...]
H A DNodeConstructors.h50 inline ExpressionNode::ExpressionNode(JSGlobalData* globalData, ResultType resultType)
63 : ExpressionNode(globalData, ResultType::nullType())
68 : ExpressionNode(globalData, ResultType::booleanType())
74 : ExpressionNode(globalData, ResultType::numberType())
80 : ExpressionNode(globalData, ResultType::stringType())
290 : ExpressionNode(globalData, ResultType::numberType()) // could be reusable for pre?
364 : ExpressionNode(globalData, ResultType::stringType())
370 : ExpressionNode(globalData, ResultType::stringType())
407 inline UnaryOpNode::UnaryOpNode(JSGlobalData* globalData, ResultType type, ExpressionNode* expr, OpcodeID opcodeID)
415 : UnaryOpNode(globalData, ResultType
[all...]
/external/eigen/Eigen/src/LU/
H A DInverse.h21 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
24 static inline void run(const MatrixType& matrix, ResultType& result)
30 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
37 template<typename MatrixType, typename ResultType>
38 struct compute_inverse<MatrixType, ResultType, 1>
40 static inline void run(const MatrixType& matrix, ResultType& result)
47 template<typename MatrixType, typename ResultType>
48 struct compute_inverse_and_det_with_check<MatrixType, ResultType, 1>
53 ResultType& result,
54 typename ResultType
128 compute_inverse_size3_helper( const MatrixType& matrix, const typename ResultType::Scalar& invdet, const Matrix<typename ResultType::Scalar,3,1>& cofactors_col0, ResultType& result) argument
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DConservativeSparseSparseProduct.h17 template<typename Lhs, typename Rhs, typename ResultType>
18 static void conservative_sparse_sparse_product_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res)
123 template<typename Lhs, typename Rhs, typename ResultType,
126 int ResStorageOrder = traits<ResultType>::Flags&RowMajorBit>
129 template<typename Lhs, typename Rhs, typename ResultType>
130 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
135 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res)
137 typedef SparseMatrix<typename ResultType::Scalar,RowMajor> RowMajorMatrix;
138 typedef SparseMatrix<typename ResultType::Scalar,ColMajor> ColMajorMatrix;
147 template<typename Lhs, typename Rhs, typename ResultType>
[all...]
H A DSparseSparseProductWithPruning.h19 template<typename Lhs, typename Rhs, typename ResultType>
20 static void sparse_sparse_product_with_pruning_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res, typename ResultType::RealScalar tolerance)
45 if(ResultType::IsRowMajor)
76 template<typename Lhs, typename Rhs, typename ResultType,
79 int ResStorageOrder = traits<ResultType>::Flags&RowMajorBit>
82 template<typename Lhs, typename Rhs, typename ResultType>
83 struct sparse_sparse_product_with_pruning_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
86 typedef typename ResultType::RealScalar RealScalar;
88 static void run(const Lhs& lhs, const Rhs& rhs, ResultType
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DSyncCallbackHelper.h60 template <typename SuccessCallback, typename ObserverType, typename CallbackArg, typename ResultType>
64 typedef SyncCallbackHelper<SuccessCallback, ObserverType, CallbackArg, ResultType> HelperType;
74 PassRefPtr<ResultType> getResult(ExceptionCode& ec)
106 m_helper->setResult(ResultType::create(arg));
149 void setResult(PassRefPtr<ResultType> result)
158 RefPtr<ResultType> m_result;
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp298 llvm::Type *ResultType = 0;
317 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
322 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
341 ResultType = llvm::IntegerType::get(getLLVMContext(),
351 ResultType = llvm::Type::getInt16Ty(getLLVMContext());
356 ResultType = getTypeForFormat(getLLVMContext(),
362 ResultType = llvm::Type::getInt8PtrTy(getLLVMContext());
367 ResultType = llvm::IntegerType::get(getLLVMContext(), 128);
381 ResultType = llvm::StructType::get(EltTy, EltTy, NULL);
390 ResultType
[all...]
H A DCGVTables.cpp179 QualType ResultType, RValue RV,
182 bool NullCheckValue = !ResultType->isReferenceType();
242 QualType ResultType = FPT->getResultType(); local
295 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
308 QualType ResultType = FPT->getResultType(); local
318 CGM.getCXXABI().BuildInstanceFunctionParams(*this, ResultType, FunctionArgs);
328 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, local
376 if (!ResultType->isVoidType() &&
379 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified());
385 RV = PerformReturnAdjustment(*this, ResultType, R
178 PerformReturnAdjustment(CodeGenFunction &CGF, QualType ResultType, RValue RV, const ThunkInfo &Thunk) argument
[all...]
H A DCGObjCRuntime.h156 QualType ResultType,
172 QualType ResultType,
/external/chromium/chrome/browser/autocomplete/
H A Dkeyword_provider_unittest.cc18 template<class ResultType>
22 const ResultType output[3];
31 template<class ResultType>
32 void RunTest(test_data<ResultType>* keyword_cases,
34 ResultType AutocompleteMatch::* member);
62 template<class ResultType>
64 test_data<ResultType>* keyword_cases,
66 ResultType AutocompleteMatch::* member) {
/external/eigen/Eigen/src/Eigen2Support/
H A DLU.h51 template<typename OtherDerived, typename ResultType>
52 bool solve(const MatrixBase<OtherDerived>& b, ResultType *result) const
58 template<typename ResultType>
59 inline void computeInverse(ResultType *result) const
H A DQR.h29 template<typename OtherDerived, typename ResultType>
30 bool solve(const MatrixBase<OtherDerived>& b, ResultType *result) const
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixSquareRoot.h53 template <typename ResultType> void compute(ResultType &result);
79 template <typename ResultType>
80 void MatrixSquareRootQuasiTriangular<MatrixType>::compute(ResultType &result)
282 template <typename ResultType> void compute(ResultType &result);
289 template <typename ResultType>
290 void MatrixSquareRootTriangular<MatrixType>::compute(ResultType &result)
349 template <typename ResultType> void compute(ResultType
[all...]
H A DMatrixFunction.h59 template <typename ResultType>
60 void compute(ResultType &result);
101 template <typename ResultType>
102 void compute(ResultType& result)
144 template <typename ResultType> void compute(ResultType& result);
201 template <typename ResultType>
202 void MatrixFunction<MatrixType,AtomicType,1>::compute(ResultType& result)
509 template <typename ResultType>
510 inline void evalTo(ResultType
[all...]
H A DMatrixExponential.h46 template <typename ResultType>
47 void compute(ResultType &result);
182 template <typename ResultType>
183 void MatrixExponential<MatrixType>::compute(ResultType &result)
420 template <typename ResultType>
421 inline void evalTo(ResultType& result) const
/external/eigen/Eigen/src/Geometry/
H A DTransform.h399 EIGEN_STRONG_INLINE const typename internal::transform_right_product_impl<Transform, OtherDerived>::ResultType
411 inline const typename internal::transform_left_product_impl<OtherDerived,Mode,Options,_Dim,_Dim+1>::ResultType
464 // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
469 typedef typename ProductType::ResultType ResultType; typedef in struct:Eigen::Transform::icc_11_workaround
475 inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
484 inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::ResultType
1235 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1237 static EIGEN_STRONG_INLINE ResultType run(const TransformType& T, const MatrixType& other)
1253 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1279 typedef typename MatrixType::PlainObject ResultType; typedef in struct:Eigen::internal::transform_right_product_impl
1303 typedef Transform<typename Other::Scalar,Dim,Projective,Options> ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1314 typedef Transform<typename Other::Scalar,Dim,Projective,Options> ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1330 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1346 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1362 typedef TransformType ResultType; typedef in struct:Eigen::internal::transform_left_product_impl
1384 typedef Transform<Scalar,Dim,ResultMode,LhsOptions> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1400 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1412 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
1427 typedef Transform<Scalar,Dim,Projective> ResultType; typedef in struct:Eigen::internal::transform_transform_product_impl
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h248 template<typename Lhs, typename Rhs, typename ResultType,
252 template<typename Lhs, typename Rhs, typename ResultType>
253 struct skyline_product_selector<Lhs, Rhs, ResultType, RowMajor> {
256 static void run(const Lhs& lhs, const Rhs& rhs, ResultType & res) {
257 skyline_row_major_time_dense_product<Lhs, Rhs, ResultType > (lhs, rhs, res);
261 template<typename Lhs, typename Rhs, typename ResultType>
262 struct skyline_product_selector<Lhs, Rhs, ResultType, ColMajor> {
265 static void run(const Lhs& lhs, const Rhs& rhs, ResultType & res) {
266 skyline_col_major_time_dense_product<Lhs, Rhs, ResultType > (lhs, rhs, res);
/external/clang/lib/AST/
H A DComment.cpp174 ResultType = FD->getResultType();
195 ResultType = MD->getResultType();
208 ResultType = FD->getResultType();
290 ResultType = FTL->getResultLoc().getType();
/external/eigen/Eigen/src/LU/arch/
H A DInverse_SSE.h34 template<typename MatrixType, typename ResultType>
35 struct compute_inverse_size4<Architecture::SSE, float, MatrixType, ResultType>
39 ResultAlignment = bool(ResultType::Flags&AlignedBit),
40 StorageOrdersMatch = (MatrixType::Flags&RowMajorBit) == (ResultType::Flags&RowMajorBit)
43 static void run(const MatrixType& matrix, ResultType& result)
162 template<typename MatrixType, typename ResultType>
163 struct compute_inverse_size4<Architecture::SSE, double, MatrixType, ResultType>
167 ResultAlignment = bool(ResultType::Flags&AlignedBit),
168 StorageOrdersMatch = (MatrixType::Flags&RowMajorBit) == (ResultType::Flags&RowMajorBit)
170 static void run(const MatrixType& matrix, ResultType
[all...]
/external/eigen/Eigen/src/Eigenvalues/
H A DHessenbergDecomposition.h353 template <typename ResultType>
354 inline void evalTo(ResultType& result) const
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h340 template<typename ResultType>
341 void computeInverse(MatrixBase<ResultType> *result) const {
347 template<typename ResultType>
349 ResultType& inverse,
350 typename ResultType::Scalar& determinant,
354 template<typename ResultType>
356 ResultType& inverse,
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp985 QualType ResultType; local
988 ResultType = PTy->getPointeeType();
990 ResultType->getAsObjCQualifiedInterfaceType())
991 ResultType = iQFaceTy->getBaseType();
997 CheckKeyForObjCARCConversion(S, ResultType,
1003 if (ResultType.isNull()) {
1025 AtIndexGetter = S.LookupMethodInObjectType(AtIndexGetterSelector, ResultType,
1096 QualType ResultType; local
1099 ResultType = PTy->getPointeeType();
1101 ResultType
[all...]
H A DCodeCompleteConsumer.cpp180 CodeCompletionString::Chunk::CreateResultType(const char *ResultType) { argument
181 return Chunk(CK_ResultType, ResultType);
367 void CodeCompletionBuilder::AddResultTypeChunk(const char *ResultType) { argument
368 Chunks.push_back(Chunk::CreateResultType(ResultType));
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DTransform.h166 inline const typename ei_transform_product_impl<OtherDerived,_Dim,_Dim+1>::ResultType
744 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType; typedef in struct:Eigen::ei_transform_product_impl
745 static ResultType run(const TransformType& tr, const Other& other)
754 typedef TransformType ResultType; typedef in struct:Eigen::ei_transform_product_impl
755 static ResultType run(const TransformType& tr, const Other& other)
770 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType; typedef in struct:Eigen::ei_transform_product_impl
771 static ResultType run(const TransformType& tr, const Other& other)
780 typedef Matrix<Scalar,Dim,1> ResultType; typedef in struct:Eigen::ei_transform_product_impl
781 static ResultType run(const TransformType& tr, const Other& other)
/external/chromium/chrome/browser/safe_browsing/
H A Dprotocol_manager.h166 enum ResultType { enum in class:SafeBrowsingProtocolManager
195 ResultType result_type);

Completed in 356 milliseconds

1234