HomeSort by relevance Sort by last modified time
    Searched defs:ResultType (Results 1 - 25 of 46) sorted by null

1 2

  /cts/libs/commonutil/src/com/android/cts/util/
ResultType.java 22 public enum ResultType {
  /cts/common/util/src/com/android/compatibility/common/util/
ResultType.java 22 public enum ResultType {
  /external/chromium_org/build/android/pylib/base/
base_test_result_unittest.py 11 from pylib.base.base_test_result import ResultType
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)
base_test_result.py 7 class ResultType(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.GetTypes()
    [all...]
  /external/lldb/include/lldb/Expression/
ClangExpression.h 43 enum ResultType {
109 virtual ResultType
  /external/chromium_org/extensions/browser/
script_executor.h 71 enum ResultType {
99 ResultType result_type,
  /external/chromium_org/build/android/pylib/linker/
test_case.py 48 ResultType = base_test_result.ResultType
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.TIMEOUT
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 50 typedef R ResultType;
69 typedef R ResultType;
88 typedef R ResultType;
107 typedef R ResultType;
126 typedef R ResultType;
145 typedef R ResultType;
164 typedef R ResultType;
185 typedef R ResultType;
212 typedef R ResultType;
239 typedef R ResultType;
    [all...]
CheckedArithmetic.h 195 typedef U ResultType;
199 typedef V ResultType;
203 typedef U ResultType;
208 typedef U ResultType;
212 typedef U ResultType;
216 typedef V ResultType;
220 typedef U ResultType;
224 typedef typename SignednessSelector<U, V>::ResultType ResultType;
230 template <typename LHS, typename RHS, typename ResultType = typename Result<LHS, RHS>::ResultType
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 177 Type *ResultType =
180 ParamTypes.push_back(ResultType);
  /external/chromium_org/components/url_matcher/
url_matcher_factory_unittest.cc 191 enum ResultType { OK, NOT_FULFILLED, CREATE_FAILURE };
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/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 166 inline const typename ei_transform_product_impl<OtherDerived,_Dim,_Dim+1>::ResultType
744 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType;
745 static ResultType run(const TransformType& tr, const Other& other)
754 typedef TransformType ResultType;
755 static ResultType run(const TransformType& tr, const Other& other)
770 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType;
771 static ResultType run(const TransformType& tr, const Other& other)
780 typedef Matrix<Scalar,Dim,1> ResultType;
781 static ResultType run(const TransformType& tr, const Other& other)
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_manager.h 124 enum ResultType {
164 ResultType result_type);
  /external/clang/lib/CodeGen/
CGVTables.cpp 70 QualType ResultType, RValue RV,
73 bool NullCheckValue = !ResultType->isReferenceType();
132 QualType ResultType = FPT->getReturnType();
185 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
202 QualType ResultType =
216 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs);
219 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs,
273 QualType ResultType =
276 if (!ResultType->isVoidType() &&
279 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified())
    [all...]
CGExprConstant.cpp     [all...]
CGStmt.cpp     [all...]
  /external/chromium_org/content/browser/appcache/
appcache_update_job.h 42 enum ResultType {
132 ResultType result() const { return result_; }
160 ResultType result_;
187 ResultType result,
259 void LogHistogramStats(ResultType result, const GURL& failed_resource_url);
  /external/clang/test/SemaCXX/
typo-correction-pt2.cpp 95 enum ResultType {
101 ResultType type();
115 enum ResultType {
122 ResultType type();
  /external/eigen/Eigen/src/Geometry/
Transform.h 399 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;
475 inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
484 inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::ResultType
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/identity/
identity_apitest.cc 174 enum ResultType {
182 TestOAuth2MintTokenFlow(ResultType result,
221 ResultType result_;
296 void set_mint_token_result(TestOAuth2MintTokenFlow::ResultType result_type) {
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 52 ResultType(destType.getNonLValueExprType(S.Context)),
67 QualType ResultType;
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,
    [all...]
SemaPseudoObject.cpp 466 QualType resultType = result.get()->getType();
494 new (S.Context) UnaryOperator(syntacticOp, opcode, resultType,
851 QualType resultType = Getter->getReturnType();
852 if (!resultType->isLValueReferenceType()) return false;
    [all...]
SemaDeclObjC.cpp 120 QualType ResultType = NewMethod->getReturnType();
144 << ResultType
149 << ResultType
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 682 QualType ResultType;
686 ResultType = Getter->getReturnType();
688 ResultType = PDecl->getType();
692 ResultType = Getter->getReturnType(); // with reference!
694 return ResultType;
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]

Completed in 604 milliseconds

1 2