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

1234567891011>>

/external/llvm/lib/IR/
H A DPassManager.cpp18 FunctionAnalysisManagerModuleProxy::Result
21 return Result(*FAM);
24 FunctionAnalysisManagerModuleProxy::Result::~Result() {
30 bool FunctionAnalysisManagerModuleProxy::Result::invalidate(
/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/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/libnfc-nxp/src/
H A DphFriNfc_IntNdefMap.c122 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
159 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
164 Result = ((NdefMap->CardState ==
168 Result);
169 return Result;
H A DphFriNfc_MapTools.c67 NFCSTATUS Result = NFCSTATUS_SUCCESS; local
118 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
123 Result = ((NdefMap->CardState ==
127 Result);
128 return Result;
/external/llvm/bindings/ocaml/analysis/
H A Danalysis_ocaml.c29 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); local
31 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/Analysis/
H A DCGSCCPassManager.cpp18 CGSCCAnalysisManagerModuleProxy::Result
21 return Result(*CGAM);
24 CGSCCAnalysisManagerModuleProxy::Result::~Result() {
30 bool CGSCCAnalysisManagerModuleProxy::Result::invalidate(
47 FunctionAnalysisManagerCGSCCProxy::Result
50 return Result(*FAM);
53 FunctionAnalysisManagerCGSCCProxy::Result::~Result() {
59 bool FunctionAnalysisManagerCGSCCProxy::Result
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DCrossThreadProgress.h17 HRESULT Result; member in class:CCrossThreadProgress
/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/lib/Lex/
H A DPPCaching.cpp48 void Preprocessor::CachingLex(Token &Result) { argument
53 Result = CachedTokens[CachedLexPos++];
58 Lex(Result);
63 CachedTokens.push_back(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 std::string Result = applyAllReplacements(Code, Replaces); local
29 EXPECT_NE("", Result);
30 DEBUG(llvm::errs() << "\n" << Result << "\n\n");
31 return Result;
H A DFormatTestProto.cpp28 std::string Result = applyAllReplacements(Code, Replaces); local
29 EXPECT_NE("", Result);
30 DEBUG(llvm::errs() << "\n" << Result << "\n\n");
31 return Result;
H A DFormatTestSelective.cpp31 std::string Result = applyAllReplacements(Code, Replaces); local
32 EXPECT_NE("", Result);
33 DEBUG(llvm::errs() << "\n" << Result << "\n\n");
34 return Result;
/external/clang/unittests/Rewrite/
H A DRewriteBufferTest.cpp44 std::string Result; local
45 raw_string_ostream OS(Result);
48 EXPECT_EQ(Output, Result);
/external/easymock/src/org/easymock/internal/
H A DResult.java23 public class Result implements IAnswer<Object>, Serializable { class in inherits:IAnswer,Serializable
31 private Result(IAnswer<?> value, boolean shouldFillInStackTrace) { method in class:Result
36 public static Result createThrowResult(final Throwable throwable) {
50 return new Result(new ThrowingAnswer(), true);
53 public static Result createReturnResult(final Object value) {
67 return new Result(new ReturningAnswer(), true);
70 public static Result createDelegatingResult(final Object value) {
95 return new Result(new DelegatingAnswer(), false);
98 public static Result createAnswerResult(IAnswer<?> answer) {
99 return new Result(answe
[all...]
/external/llvm/include/llvm/ADT/
H A DSetOperations.h52 S1Ty Result; local
56 Result.insert(*SI);
57 return Result;
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionAliasAnalysis.h44 typedef SCEVAAResult Result; typedef in class:llvm::SCEVAA
60 std::unique_ptr<SCEVAAResult> Result; member in class:llvm::SCEVAAWrapperPass
67 SCEVAAResult &getResult() { return *Result; }
68 const SCEVAAResult &getResult() const { return *Result; }

Completed in 2831 milliseconds

1234567891011>>