Home
last modified time | relevance | path

Searched defs:Result (Results 1 – 25 of 946) sorted by relevance

12345678910>>...38

/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DSolver.h30 struct Result { struct
50 static Result Satisfiable(llvm::DenseMap<Atom, Assignment> Solution) { in Satisfiable() argument
56 static Result Unsatisfiable() { return Result(Status::Unsatisfiable, {}); } in Unsatisfiable() argument
60 static Result TimedOut() { return Result(Status::TimedOut, {}); } in TimedOut() argument
73 Result(Status SATCheckStatus, in Result() argument
89 virtual Result solve(llvm::ArrayRef<const Formula *> Vals) = 0; argument
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp405 auto Result = std::make_shared<DebugChecksumsSubsection>(*SC.strings()); in toCodeViewSubsection() local
416 auto Result = in toCodeViewSubsection() local
447 auto Result = std::make_shared<DebugInlineeLinesSubsection>( toCodeViewSubsection() local
467 auto Result = std::make_shared<DebugCrossModuleExportsSubsection>(); toCodeViewSubsection() local
479 auto Result = toCodeViewSubsection() local
491 auto Result = std::make_shared<DebugSymbolsSubsection>(); toCodeViewSubsection() local
502 auto Result = std::make_shared<DebugStringTableSubsection>(); toCodeViewSubsection() local
513 auto Result = std::make_shared<DebugFrameDataSubsection>(true); toCodeViewSubsection() local
534 auto Result = std::make_shared<DebugSymbolRVASubsection>(); toCodeViewSubsection() local
547 SourceFileChecksumEntry Result; convertOneChecksum() local
568 auto Result = std::make_shared<YAMLChecksumsSubsection>(); fromCodeViewSubsection() local
584 auto Result = std::make_shared<YAMLLinesSubsection>(); fromCodeViewSubsection() local
622 auto Result = std::make_shared<YAMLInlineeLinesSubsection>(); fromCodeViewSubsection() local
649 auto Result = std::make_shared<YAMLCrossModuleExportsSubsection>(); fromCodeViewSubsection() local
658 auto Result = std::make_shared<YAMLCrossModuleImportsSubsection>(); fromCodeViewSubsection() local
674 auto Result = std::make_shared<YAMLSymbolsSubsection>(); fromCodeViewSubsection() local
692 auto Result = std::make_shared<YAMLStringTableSubsection>(); fromCodeViewSubsection() local
711 auto Result = std::make_shared<YAMLFrameDataSubsection>(); fromCodeViewSubsection() local
739 auto Result = std::make_shared<YAMLCoffSymbolRVASubsection>(); fromCodeViewSubsection() local
750 std::vector<std::shared_ptr<DebugSubsection>> Result; toCodeViewSubsectionList() local
800 auto Result = YAMLLinesSubsection::fromCodeViewSubsection( visitLines() local
811 auto Result = YAMLChecksumsSubsection::fromCodeViewSubsection(State.strings(), visitFileChecksums() local
822 auto Result = YAMLInlineeLinesSubsection::fromCodeViewSubsection( visitInlineeLines() local
833 auto Result = visitCrossModuleExports() local
844 auto Result = YAMLCrossModuleImportsSubsection::fromCodeViewSubsection( visitCrossModuleImports() local
855 auto Result = YAMLStringTableSubsection::fromCodeViewSubsection(Strings); visitStringTable() local
864 auto Result = YAMLSymbolsSubsection::fromCodeViewSubsection(Symbols); visitSymbols() local
873 auto Result = visitFrameData() local
883 auto Result = YAMLCoffSymbolRVASubsection::fromCodeViewSubsection(RVAs); visitCOFFSymbolRVAs() local
913 std::vector<YAMLDebugSubsection> Result; fromDebugS() local
939 auto Result = SS.Subsection->toCodeViewSubsection(Allocator, SC); initializeStringsAndChecksums() local
951 auto Result = SS.Subsection->toCodeViewSubsection(Allocator, SC); initializeStringsAndChecksums() local
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineAdvisor.h309 Result getResult() { return {Factory}; } in run() argument
322 Result(Modul struct
100 recordUnsuccessfulInlining(const InlineResult & Result) recordUnsuccessfulInlining() argument
119 recordUnsuccessfulInliningImpl(const InlineResult & Result) recordUnsuccessfulInliningImpl() argument
305 struct Result { global() struct
323 ResultResult Result() argument
342 AdvisorResult run() argument
[all...]
H A DScalarEvolutionAliasAnalysis.h50 typedef SCEVAAResult Result; typedef
57 std::unique_ptr<SCEVAAResult> Result; variable
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRewriteRule.cpp35 translateEdits(const MatchResult &Result, ArrayRef<ASTEdit> ASTEdits) { in translateEdits()
79 return [Edits = std::move(Edits)](const MatchResult &Result) { in editList()
85 return [Edit = std::move(Edit)](const MatchResult &Result) { in edit()
114 const MatchResult &Result) -> llvm::Expected<SmallVector<Edit, 1>> { in flattenVector()
224 ast_matchers::internal::BoundNodesTreeBuilder Result(*Builder); in matches() local
279 void run(const MatchFinder::MatchResult &Result) override { in run()
301 const MatchResult &Result) { in rewriteDescendantsImpl()
311 const MatchResult &Result) { in rewriteDescendants()
317 const MatchResult &Result) { in rewriteDescendants()
323 const MatchResult &Result) { in rewriteDescendants()
[all …]
H A DRangeSelector.cpp100 return [Selector](const MatchResult &Result) -> Expected<CharSourceRange> { in before()
109 return [Selector](const MatchResult &Result) -> Expected<CharSourceRange> { in after()
135 return [ID](const MatchResult &Result) -> Expected<CharSourceRange> { in node()
148 return [ID](const MatchResult &Result) -> Expected<CharSourceRange> { in statement()
158 return [Begin, End](const MatchResult &Result) -> Expected<CharSourceRange> { in enclose()
182 return [ID](const MatchResult &Result) -> Expected<CharSourceRange> { in member()
194 return [ID](const MatchResult &Result) -> Expected<CharSourceRange> { in name()
254 Expected<CharSourceRange> operator()(const MatchResult &Result) { in operator ()()
309 CharSourceRange getArgumentsRange(const MatchResult &Result, in getArgumentsRange()
345 CharSourceRange getElseRange(const MatchResult &Result, const IfStmt &S) { in getElseRange()
[all …]
H A DTransformer.cpp27 const ast_matchers::MatchFinder::MatchResult &Result) { in onMatch()
37 const MatchFinder::MatchResult &Result) { in convertToAtomicChanges()
76 void Transformer::run(const MatchFinder::MatchResult &Result) { in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemAlloc.h26 void *Result = std::malloc(Sz); in safe_malloc() local
40 void *Result = std::calloc(Count, Sz); in safe_calloc() local
53 void *Result = std::realloc(Ptr, Sz); in safe_realloc() local
H A DLogicalResult.h67 inline bool succeeded(LogicalResult Result) { return Result.succeeded(); } in succeeded()
71 inline bool failed(LogicalResult Result) { return Result.failed(); } in failed()
80 FailureOr(LogicalResult Result) { in FailureOr()
121 ParseResult(LogicalResult Result = success()) : LogicalResult(Result) {} in LogicalResult() argument
H A DBLAKE3.h59 void final(BLAKE3Result<NumBytes> &Result) { in final()
68 BLAKE3Result<NumBytes> Result; in final() local
106 void final(BLAKE3Result<NumBytes> &Result) { return BLAKE3::final(Result); } in final()
H A DInstructionCost.h103 InstructionCost::CostType Result; variable
121 InstructionCost::CostType Result; variable
138 InstructionCost::CostType Result; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDynamicAPInt.h293 DynamicAPInt Result; variable
306 DynamicAPInt Result; variable
319 DynamicAPInt Result; variable
429 int64_t Result = getSmall(); variable
446 int64_t Result = getSmall(); variable
463 int64_t Result = getSmall(); variable
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp402 StringRef Result(TokStart, CurPtr - TokStart); in LexDigit() local
422 StringRef Result(TokStart, CurPtr - TokStart); in LexDigit() local
439 APInt Result(128, 0); in LexDigit() local
452 APInt Result(128, 0); in LexDigit() local
476 StringRef Result(TokStart, CurPtr - TokStart); in LexDigit() local
495 StringRef Result(TokStart, CurPtr - TokStart); in LexDigit() local
506 StringRef Result(TokStart, CurPtr - TokStart); in LexDigit() local
534 APInt Result(128, 0); in LexDigit() local
552 StringRef Result(TokStart, CurPtr - TokStart); in LexDigit() local
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DListReducer.h50 Expected<TestResult> Result = doTest(TheList, empty); in reduceList() local
98 Expected<TestResult> Result = doTest(ShuffledList, empty); in reduceList() local
123 Expected<TestResult> Result = doTest(Prefix, Suffix); in reduceList() local
186 Expected<TestResult> Result = doTest(EmptyList, TestList); in reduceList() local
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTarget.cpp18 auto Result = TargetValue.split('-'); in create() local
62 PlatformVersionSet Result; mapToPlatformVersionSet() local
69 PlatformSet Result; mapToPlatformSet() local
76 ArchitectureSet Result; mapToArchitectureSet() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASourceFile.cpp34 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr); in getChecksum() local
46 HRESULT Result = SourceFile->get_checksumType(&Type); in getChecksumType() local
55 HRESULT Result = SourceFile->get_compilands(&DiaEnumerator); in getCompilands() local
/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DDriver.h33 struct Result { struct
44 Result lldMain(llvm::ArrayRef<const char *> args, llvm::raw_ostream &stdoutOS, argument
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DWasm.cpp43 struct Result { struct
44 int retCode;
45 bool canRunAgain;
113 lld::Result Result = in addModule() local
H A DCodeCompletion.cpp89 virtual void handleDeclaration(const CodeCompletionResult &Result) { in handleDeclaration()
120 virtual void handleKeyword(const CodeCompletionResult &Result) { in handleKeyword()
132 virtual void handlePattern(const CodeCompletionResult &Result) {} in handlePattern()
136 virtual void handleMacro(const CodeCompletionResult &Result) {} in handleMacro()
144 void handleDeclaration(const CodeCompletionResult &Result) override { in handleDeclaration()
159 void handleKeyword(const CodeCompletionResult &Result) override {} in handleKeyword()
182 auto &Result = InResults[I]; in ProcessCodeCompleteResults() local
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkFormat.cpp21 auto Result = StringSwitch<Format>(FormatStr) in parseFormat() local
36 auto Result = in magicToFormat() local
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DVerifier.h113 struct Result { struct
117 Result run(Module &M, ModuleAnalysisManager &); argument
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDIExpressionOptimizer.cpp51 auto Result = SaturatingAdd(Const1, Const2, &ResultOverflowed); in foldOperationIfPossible() local
72 auto Result = SaturatingMultiply(Const1, Const2, &ResultOverflowed); in foldOperationIfPossible() local
216 auto Result = foldOperationIfPossible( in tryFoldConstants() local
244 auto Result = foldOperationIfPossible(Const1, *Const2, Operand1); in tryFoldCommutativeMath() local
274 auto Result = foldOperationIfPossible(Const1, *Const2, Operand1); in tryFoldCommutativeMathWithArgInBetween() local
375 auto *Result = DIExpression::get(getContext(), ResultOps); in foldConstantMath() local
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp47 MacroArgs *Result; in create() local
124 const Token *Result = Start; in getUnexpArgument() local
169 std::vector<Token> &Result = PreExpArgTokens[Arg]; in getPreExpArgument() local
219 SmallString<128> Result; in StringifyArgument() local
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DSubtargetFeature.h110 FeatureBitset Result = *this; global() variable
122 FeatureBitset Result = *this; global() variable
134 FeatureBitset Result = *this; global() variable
140 FeatureBitset Result = *this; global() variable
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DOpDescriptor.h64 std::vector<Constant *> Result; in SourcePred() local
155 std::vector<Constant *> Result; in anyPtrType() local
172 std::vector<Constant *> Result; in sizedPtrType() local
198 std::vector<Constant *> Result; in matchFirstLengthWAnyType() local

12345678910>>...38