Searched defs:Result (Results 1 - 25 of 759) sorted by relevance

1234567891011>>

/external/trappy/tests/trappy/wa/
H A D__init__.py25 from trappy.wa.results import Result, get_results, combine_results namespace
/external/trappy/trappy/wa/
H A D__init__.py25 from trappy.wa.results import Result, get_results, combine_results namespace
/external/llvm/utils/not/
H A Dnot.cpp43 int Result = sys::ExecuteAndWait(*Program, argv, nullptr, nullptr, 0, 0, local
50 if (ExpectCrash && Result == 3)
51 Result = -3;
53 if (Result < 0) {
63 return Result == 0;
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DVectorExtras.h31 std::vector<T> Result; local
32 Result.push_back(A);
34 Result.push_back(Val);
36 return Result;
/external/swiftshader/third_party/LLVM/utils/not/
H A Dnot.cpp19 int Result = sys::Program::ExecuteAndWait(Program, argv + 1, 0, 0, 0, 0, local
21 if (Result < 0) {
26 return Result == 0;
/external/clang/tools/libclang/
H A DCIndexCXX.cpp101 ClassTemplatePartialSpecializationDecl *> Result local
103 if (Result.is<ClassTemplateDecl *>())
104 Template = Result.get<ClassTemplateDecl *>();
106 Template = Result.get<ClassTemplatePartialSpecializationDecl *>();
H A DCXComment.h33 CXComment Result; local
34 Result.ASTNode = C;
35 Result.TranslationUnit = TU;
36 return Result;
H A DCXSourceLocation.h35 CXSourceLocation Result = { { &SM, &LangOpts, }, local
37 return Result;
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/include/
H A DAlaLib.h88 int Result = 0; local
94 Result = fscanf(stream, format, &dwVal);
98 return Result;
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); local
32 if (0 == Result) {
/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c26 int Result = LLVMWriteBitcodeToFile(M, String_val(Path)); local
27 return Val_bool(Result == 0);
33 int Result; local
41 Result = LLVMWriteBitcodeToFD(M, Int_val(FD), 0, Unbuffered);
42 return Val_bool(Result == 0);
/external/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolCompiland.cpp30 std::string Result = RawSymbol->getSourceFileName(); local
31 if (!Result.empty())
32 return Result;
/external/swiftshader/third_party/LLVM/bindings/ocaml/analysis/
H A Danalysis_ocaml.c30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); local
32 if (0 == Result) {
/external/swiftshader/third_party/LLVM/lib/Support/
H A DSystemUtils.cpp46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr); local
47 Result.eraseComponent();
49 if (!Result.isEmpty()) {
50 Result.appendComponent(ExeName);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
54 return Result;
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_cast.cpp94 double Result = 0; local
95 Result += castBits<uint32_t, float>(0);
96 Result += castBits<uint64, double>(0);
97 Result += castBits<float, uint32_t>(0);
98 Result += castBits<double, uint64>(0);
99 Result += castBits<uint32_t, float>(1, 0, 2);
100 Result += castBits<uint64, double>(1, 0, 2);
101 Result += castBits<float, uint32_t>(1, 0, 2);
102 Result += castBits<double, uint64>(1, 0, 2);
103 return Result;
[all...]
/external/toolchain-utils/crosperf/
H A Dresults_organizer_unittest.py18 from results_cache import Result namespace
100 b.result = Result('', b.label, 'average', 'machine')
/external/vogar/src/vogar/
H A DResult.java22 public enum Result { enum
/external/clang/include/clang/Lex/
H A DPTHLexer.h53 bool LexEndOfFile(Token &Result);
92 void IndirectLex(Token &Result) override { Lex(Result); } variable
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp112 LookupResult Result = statChained(Path, Data, isFile, F, FS); local
118 if (Result == CacheMissing)
119 return Result;
125 return Result;
H A DObjCRuntime.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
H A DVersionTuple.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
/external/clang/unittests/AST/
H A DEvaluateAsRValueTest.cpp45 clang::Expr::EvalResult Result; local
46 bool WasEvaluated = Init->EvaluateAsRValue(Result, VD->getASTContext());
/external/clang/unittests/Format/
H A DFormatTestJava.cpp28 auto Result = applyAllReplacements(Code, Replaces); local
29 EXPECT_TRUE(static_cast<bool>(Result));
30 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
31 return *Result;
H A DFormatTestProto.cpp28 auto Result = applyAllReplacements(Code, Replaces); local
29 EXPECT_TRUE(static_cast<bool>(Result));
30 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
31 return *Result;
H A DFormatTestSelective.cpp31 auto Result = applyAllReplacements(Code, Replaces); local
32 EXPECT_TRUE(static_cast<bool>(Result));
33 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
34 return *Result;

Completed in 647 milliseconds

1234567891011>>