HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 26 - 50 of 2692) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/common/device-side/util/src/com/android/compatibility/common/util/
Result.java 20 * Represents the result of a test.
22 public interface Result {
26 * Sets the test result of this object.
28 * @param resultCode The test result, either {@code RESULT_OK} or {@code RESULT_FAIL}.
  /cts/libs/vogar-expect/src/vogar/
Result.java 20 * The result of a test or benchmark execution.
22 public enum Result {
  /device/generic/goldfish/dhcp/common/
result.h 23 class Result {
25 static Result success() {
26 return Result(true);
28 // Construct a result indicating an error.
29 static Result error(std::string message) {
30 return Result(message);
32 static Result error(const char* format, ...) {
39 return Result(std::string(buffer));
47 explicit Result(bool success) : mSuccess(success) { }
48 explicit Result(std::string message
    [all...]
  /device/generic/goldfish/wifi/ipv6proxy/
result.h 18 class Result {
20 static Result success() {
21 return Result(true);
23 // Construct a result indicating an error. NOTE: the data in |message| will
26 static Result error(const char* message) {
27 return Result(message);
35 explicit Result(bool success) : mSuccess(success) { }
36 explicit Result(const char* message)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
Math.c 61 value returns 64bit result.
62 No checking if the result is greater than 64bits
84 UINT64 Result;
86 Result = Operand;
88 Result *= 10;
90 return Result;
131 64bit result and the Remainder.
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/MonoStatusCode/
MonoStatusCode.c 97 VOID *Result;
101 Result = BuildGuidDataHob (
106 if (Result != NULL) {
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 112 LookupResult Result = statChained(Path, Data, isFile, F, FS);
118 if (Result == CacheMissing)
119 return Result;
125 return Result;
ObjCRuntime.cpp 20 std::string Result;
22 llvm::raw_string_ostream Out(Result);
25 return Result;
VersionTuple.cpp 20 std::string Result;
22 llvm::raw_string_ostream Out(Result);
25 return Result;
  /external/clang/tools/libclang/
CIndexCXX.cpp 101 ClassTemplatePartialSpecializationDecl *> Result
103 if (Result.is<ClassTemplateDecl *>())
104 Template = Result.get<ClassTemplateDecl *>();
106 Template = Result.get<ClassTemplatePartialSpecializationDecl *>();
  /external/clang/unittests/AST/
EvaluateAsRValueTest.cpp 45 clang::Expr::EvalResult Result;
46 bool WasEvaluated = Init->EvaluateAsRValue(Result, VD->getASTContext());
  /external/clang/unittests/Format/
FormatTestJava.cpp 28 auto Result = applyAllReplacements(Code, Replaces);
29 EXPECT_TRUE(static_cast<bool>(Result));
30 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
31 return *Result;
440 verifyFormat("return (result == null)\n"
FormatTestProto.cpp 28 auto Result = applyAllReplacements(Code, Replaces);
29 EXPECT_TRUE(static_cast<bool>(Result));
30 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
31 return *Result;
FormatTestSelective.cpp 31 auto Result = applyAllReplacements(Code, Replaces);
32 EXPECT_TRUE(static_cast<bool>(Result));
33 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
34 return *Result;
  /external/llvm/bindings/ocaml/analysis/
analysis_ocaml.c 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
32 if (0 == Result) {
  /external/llvm/include/llvm/ADT/
SetOperations.h 52 S1Ty Result;
56 Result.insert(*SI);
57 return Result;
  /external/llvm/include/llvm/IR/
Verifier.h 64 struct Result {
68 Result run(Module &M, ModuleAnalysisManager &);
69 Result run(Function &F, FunctionAnalysisManager &);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyTargetTransformInfo.cpp 30 unsigned Result = BaseT::getNumberOfRegisters(Vector);
34 Result = std::max(Result, 16u);
36 return Result;
  /external/swiftshader/third_party/LLVM/bindings/ocaml/analysis/
analysis_ocaml.c 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message);
32 if (0 == Result) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SetOperations.h 52 S1Ty Result;
56 Result.insert(*SI);
57 return Result;
  /external/swiftshader/third_party/LLVM/lib/Analysis/
Analysis.cpp 82 LLVMBool Result = verifyModule(*unwrap(M),
89 return Result;
  /external/trappy/trappy/wa/
results.py 26 class Result(pd.DataFrame):
29 super(Result, self).__init__(*args, **kwargs)
101 that have a score result, that's what's used. For benchmarks with
102 FPS_* result, that's the score. E.g. glbenchmarks "score" is it's
129 result = int(row[4])
131 result = float(row[4])
136 bench_dict[bench][run_id][run_number] = result
138 bench_dict[bench][run_id] = {run_number: result}
140 bench_dict[bench] = {run_id: {run_number: result}}
146 return Result(pd.concat(bench_dfrs.values(), axis=1
    [all...]
  /external/vogar/src/vogar/
Result.java 20 * The result of a test or benchmark execution.
22 public enum Result {
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AbstractStatementRetriever.java 56 * result = retrieveStatements(AssetFactory.create(
59 * {@code result} will contain the statements and the expiration time of this result. The statements
69 public abstract Result retrieveStatements(AbstractAsset source)
75 public interface Result {
  /libcore/luni/src/main/java/javax/xml/transform/
Result.java 18 // $Id: Result.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to build a transformation result tree.</p>
28 public interface Result {
32 * result tree disables output escaping.
34 * <p>Normally, result tree serialization escapes & and < (and
44 * <p>Result DOM trees may also have PI_DISABLE_OUTPUT_ESCAPING and
54 * if the result tree enables output escaping at some point after having
63 * Set the system identifier for this Result.
65 * <p>If the Result is not to be written to a file, the system identifier is optional.

Completed in 1257 milliseconds

12 3 4 5 6 7 8 91011>>