Searched defs:ResultType (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/build/android/pylib/base/
H A Dbase_test_result_unittest.py11 from pylib.base.base_test_result import ResultType namespace
16 self.p1 = BaseTestResult('p1', ResultType.PASS, log='pass1')
17 other_p1 = BaseTestResult('p1', ResultType.PASS)
18 self.p2 = BaseTestResult('p2', ResultType.PASS)
19 self.f1 = BaseTestResult('f1', ResultType.FAIL, log='failure1')
20 self.c1 = BaseTestResult('c1', ResultType.CRASH, log='crash1')
21 self.u1 = BaseTestResult('u1', ResultType.UNKNOWN)
43 other_p1 = BaseTestResult('p1', ResultType.PASS)
44 f2 = BaseTestResult('f2', ResultType.FAIL)
H A Dbase_test_result.py7 class ResultType(object): class in inherits:object
19 return [ResultType.PASS, ResultType.SKIP, ResultType.FAIL,
20 ResultType.CRASH, ResultType.TIMEOUT, ResultType.UNKNOWN]
31 test_type: Type of the test result as defined in ResultType.
35 assert test_type in ResultType.GetTypes()
83 for test_type in ResultType
[all...]
/external/lldb/include/lldb/Expression/
H A DClangExpression.h43 enum ResultType { enum in class:lldb_private::ClangExpression
109 virtual ResultType
/external/chromium_org/extensions/browser/
H A Dscript_executor.h71 enum ResultType { enum in class:extensions::ScriptExecutor
99 ResultType result_type,
/external/chromium_org/build/android/pylib/linker/
H A Dtest_case.py48 ResultType = base_test_result.ResultType variable
159 A (status, logs) tuple, where status is a ResultType constant, and logs
188 return ResultType.TIMEOUT, logs
191 return ResultType.PASS, logs
193 return ResultType.FAIL, logs
305 A (status, log) tuple, where <status> is a ResultType constant, and <log>
309 return ResultType.FAIL, 'Unimplemented _RunTest() method!'
332 if status == ResultType.FAIL:
334 elif status == ResultType
[all...]
/external/chromium_org/components/url_matcher/
H A Durl_matcher_factory_unittest.cc191 enum ResultType { OK, NOT_FULFILLED, CREATE_FAILURE }; enum in class:url_matcher::UrlConditionCaseTest
195 static ResultType ExpectedResult(bool case_sensitive,
209 ResultType expected_result) const;
215 const ResultType expected_result_for_wrong_case_;
229 UrlConditionCaseTest::ResultType expected_result) const {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DCheckedArithmetic.h195 typedef U ResultType; typedef in struct:WTF::ResultBase
199 typedef V ResultType; typedef in struct:WTF::ResultBase
203 typedef U ResultType; typedef in struct:WTF::ResultBase
208 typedef U ResultType; typedef in struct:WTF::SignednessSelector
212 typedef U ResultType; typedef in struct:WTF::SignednessSelector
216 typedef V ResultType; typedef in struct:WTF::SignednessSelector
220 typedef U ResultType; typedef in struct:WTF::SignednessSelector
224 typedef typename SignednessSelector<U, V>::ResultType ResultType; typedef in struct:WTF::ResultBase
230 template <typename LHS, typename RHS, typename ResultType
[all...]
H A DFunctional.h50 typedef R ResultType; typedef in class:WTF::FunctionWrapper
69 typedef R ResultType; typedef in class:WTF::FunctionWrapper
88 typedef R ResultType; typedef in class:WTF::FunctionWrapper
107 typedef R ResultType; typedef in class:WTF::FunctionWrapper
126 typedef R ResultType; typedef in class:WTF::FunctionWrapper
145 typedef R ResultType; typedef in class:WTF::FunctionWrapper
164 typedef R ResultType; typedef in class:WTF::FunctionWrapper
185 typedef R ResultType; typedef in class:WTF::FunctionWrapper
212 typedef R ResultType; typedef in class:WTF::FunctionWrapper
239 typedef R ResultType; typedef in class:WTF::FunctionWrapper
266 typedef R ResultType; typedef in class:WTF::FunctionWrapper
293 typedef R ResultType; typedef in class:WTF::FunctionWrapper
320 typedef R ResultType; typedef in class:WTF::FunctionWrapper
[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
130 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/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp177 Type *ResultType = local
180 ParamTypes.push_back(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_org/chrome/browser/safe_browsing/
H A Dprotocol_manager.h124 enum ResultType { enum in class:SafeBrowsingProtocolManager
164 ResultType result_type);
/external/chromium_org/content/browser/appcache/
H A Dappcache_update_job.h42 enum ResultType { enum in class:content::AppCacheUpdateJob
132 ResultType result() const { return result_; }
160 ResultType result_;
187 ResultType result,
259 void LogHistogramStats(ResultType result, const GURL& failed_resource_url);
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp175 RValue RV, QualType ResultType) {
176 CGF.EmitReturnOfRValue(RV, ResultType);
174 EmitReturnFromThunk(CodeGenFunction &CGF, RValue RV, QualType ResultType) argument
H A DCGVTables.cpp70 QualType ResultType, RValue RV,
73 bool NullCheckValue = !ResultType->isReferenceType();
132 QualType ResultType = FPT->getReturnType(); local
185 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
202 QualType ResultType = local
216 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs);
219 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, local
273 QualType ResultType = local
276 if (!ResultType->isVoidType() &&
279 Slot = ReturnValueSlot(ReturnValue, ResultType
69 PerformReturnAdjustment(CodeGenFunction &CGF, QualType ResultType, RValue RV, const ThunkInfo &Thunk) argument
[all...]
H A DCGExprConstant.cpp1155 llvm::Type *ResultType = getTypes().ConvertType(DestType); local
1163 return llvm::ConstantExpr::getTruncOrBitCast(AddrLabelDiff, ResultType);
H A DCGStmt.cpp1976 llvm::Type *ResultType; local
1978 ResultType = VoidTy;
1980 ResultType = ResultRegTypes[0];
1982 ResultType = llvm::StructType::get(getLLVMContext(), ResultRegTypes);
1985 llvm::FunctionType::get(ResultType, ArgTypes, false);
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp179 CodeCompletionString::Chunk::CreateResultType(const char *ResultType) { argument
180 return Chunk(CK_ResultType, ResultType);
365 void CodeCompletionBuilder::AddResultTypeChunk(const char *ResultType) { argument
366 Chunks.push_back(Chunk::CreateResultType(ResultType));
H A DSemaPseudoObject.cpp1114 QualType ResultType; local
1117 ResultType = PTy->getPointeeType();
1119 ResultType->getAsObjCQualifiedInterfaceType())
1120 ResultType = iQFaceTy->getBaseType();
1126 CheckKeyForObjCARCConversion(S, ResultType,
1132 if (ResultType.isNull()) {
1154 AtIndexGetter = S.LookupMethodInObjectType(AtIndexGetterSelector, ResultType,
1223 QualType ResultType; local
1226 ResultType = PTy->getPointeeType();
1228 ResultType
[all...]
H A DSemaCast.cpp52 ResultType(destType.getNonLValueExprType(S.Context)),
67 QualType ResultType; member in struct:__anon18003::CastOperation
264 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
275 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
287 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
300 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
2394 return Op.complete(CStyleCastExpr::Create(Context, Op.ResultType,
2415 return Op.complete(CXXFunctionalCastExpr::Create(Context, Op.ResultType,
/external/clang/test/SemaCXX/
H A Dtypo-correction-pt2.cpp95 enum ResultType { enum in class:class_member_typo_corrections::Result
101 ResultType type();
115 enum ResultType { enum in class:class_member_typo_corrections::Figure
122 ResultType type();
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Didentity_apitest.cc174 enum ResultType { enum in class:extensions::__anon3726::TestOAuth2MintTokenFlow
182 TestOAuth2MintTokenFlow(ResultType result,
221 ResultType result_;
296 void set_mint_token_result(TestOAuth2MintTokenFlow::ResultType result_type) {
/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/clang/include/clang/AST/
H A DExprObjC.h682 QualType ResultType; local
686 ResultType = Getter->getReturnType();
688 ResultType = PDecl->getType();
692 ResultType = Getter->getReturnType(); // with reference!
694 return ResultType;
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp1572 QualType ResultType = Proto->getReturnType(); local
1574 dyn_cast_or_null<AutoType>(ResultType->getContainedAutoType())) {
1576 mangleQualifiers(ResultType.getLocalQualifiers(), /*IsMember=*/false);
1581 if (ResultType->isVoidType())
1582 ResultType = ResultType.getUnqualifiedType();
1583 mangleType(ResultType, Range, QMM_Result);

Completed in 579 milliseconds

123