Searched refs:Result (Results 176 - 200 of 858) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp30 IdentifierLoc *Result = new (Ctx) IdentifierLoc; local
31 Result->Loc = Loc;
32 Result->Ident = Ident;
33 return Result;
H A DSemaLookup.cpp2539 LookupResult Result(*this, R.getLookupNameInfo(), R.getLookupKind());
2540 Result.setBaseObjectType(Context.getRecordType(Class));
2541 LookupQualifiedName(Result, RD);
2545 for (auto I = Result.begin(), E = Result.end(); I != E; ++I) {
2551 Result.suppressDiagnostics();
2563 /// \param Result The result of the ambiguous lookup to be diagnosed.
2564 void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) {
2565 assert(Result.isAmbiguous() && "Lookup result must be ambiguous");
2567 DeclarationName Name = Result
[all...]
H A DTreeTransform.h1090 LookupResult Result(SemaRef, Id, IdLoc, Sema::LookupTagName);
1099 SemaRef.LookupQualifiedName(Result, DC);
1100 switch (Result.getResultKind()) {
1106 Tag = Result.getAsSingle<TagDecl>();
1121 LookupResult Result(SemaRef, Id, IdLoc, Sema::LookupTagName);
1122 SemaRef.LookupQualifiedName(Result, DC);
1123 switch (Result.getResultKind()) {
1127 NamedDecl *SomeDecl = Result.getRepresentativeDecl();
1375 StmtResult RebuildReturnStmt(SourceLocation ReturnLoc, Expr *Result) { argument
1376 return getSema().BuildReturnStmt(ReturnLoc, Result);
1426 RebuildCoreturnStmt(SourceLocation CoreturnLoc, Expr *Result, bool IsImplicit) argument
1435 RebuildCoawaitExpr(SourceLocation CoawaitLoc, Expr *Result, bool IsImplicit) argument
1444 RebuildDependentCoawaitExpr(SourceLocation CoawaitLoc, Expr *Result, UnresolvedLookupExpr *Lookup) argument
1454 RebuildCoyieldExpr(SourceLocation CoyieldLoc, Expr *Result) argument
2283 ExprResult Result local
2483 ExprResult Result local
3079 ExprResult Result = getSema().CheckConceptTemplateId(SS, TemplateKWLoc, local
3244 ExprResult Result = getSema().BuildMemberReferenceExpr( local
3357 ExprResult Result local
3715 ExprResult Result = local
4176 TemplateArgumentLoc Result; local
4349 QualType Result = getDerived().TransformType(TLB, TL); local
4407 QualType Result = getDerived().TransformDependentNameType( local
4426 QualType Result = getDerived().TransformType(TLB, T.getUnqualifiedLoc()); local
4560 QualType Result; local
4792 QualType Result = TL.getType(); local
4838 QualType Result = TL.getType(); local
4915 QualType Result = TL.getType(); local
4963 QualType Result = TL.getType(); local
5178 QualType Result = getDerived().TransformType(TLB, local
5533 QualType Result = TL.getType(); local
5812 QualType Result = TL.getType(); local
5850 QualType Result = getDerived().RebuildDeducedTemplateSpecializationType( local
5946 QualType Result local
6131 QualType Result = TL.getType(); local
6231 QualType Result local
6251 QualType Result local
6309 QualType Result = TL.getType(); local
6705 QualType Result = TL.getType(); local
6779 StmtResult Result = getDerived().TransformStmt( local
7152 ExprResult Result = getDerived().TransformInitializer(S->getRetValue(), local
7206 ExprResult Result = getDerived().TransformExpr(OutputExpr); local
7224 ExprResult Result = getDerived().TransformExpr(InputExpr); local
7237 ExprResult Result = getDerived().TransformExpr(S->getLabelExpr(I)); local
7272 ExprResult Result = getDerived().TransformExpr(SrcExprs[i]); local
7420 ExprResult Result = getDerived().TransformInitializer(S->getOperand(), local
7434 ExprResult Result = getDerived().TransformInitializer(E->getOperand(), local
7469 ExprResult Result = getDerived().TransformInitializer(E->getOperand(), local
11703 TransformedInitCapture &Result = InitCaptures[C - E->capture_begin()]; local
12348 Optional<unsigned> Result = 0; local
12502 ExprResult Result = getDerived().TransformExpr(E->getInit()); local
13512 ExprResult Result = SemaRef.CheckPlaceholderExpr(Second); local
13544 ExprResult Result local
13607 ExprResult Result = SemaRef.CreateOverloadedBinOp( local
[all...]
H A DSemaTemplateDeduction.cpp383 DeducedTemplateArgument Result = checkDeducedTemplateArguments( local
385 if (Result.isNull()) {
392 Deduced[NTTP->getIndex()] = Result;
500 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, local
503 if (Result.isNull()) {
510 Deduced[TempParam->getIndex()] = Result;
559 if (Sema::TemplateDeductionResult Result
564 return Result;
595 if (Sema::TemplateDeductionResult Result
601 return Result;
934 DeducedTemplateArgument Result = local
1423 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, local
1776 Sema::TemplateDeductionResult Result = DeduceTemplateArguments( local
3630 Sema::TemplateDeductionResult Result local
3911 TemplateDeductionResult Result = local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangExternalASTSourceCallbacks.h26 llvm::SmallVectorImpl<clang::Decl *> &Result) override;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_logging.cpp271 XRayBuffer Result; local
272 Result.Data = CurrentBuffer;
273 Result.Size = SerializedBufferSize;
275 return Result;
287 s32 Result = XRayLogFlushStatus::XRAY_LOG_NOT_FLUSHING; variable
288 if (!atomic_compare_exchange_strong(&LogFlushStatus, &Result,
293 return static_cast<XRayLogFlushStatus>(Result);
343 auto Result = XRayLogFlushStatus::XRAY_LOG_NOT_FLUSHING; variable
344 atomic_store(&LogFlushStatus, Result, memory_order_release);
345 return Result;
420 TSCAndCPU Result; variable
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp135 std::vector<CompileCommand> Result; local
138 std::move(C.begin(), C.end(), std::back_inserter(Result));
140 return Result;
261 std::vector<std::string> &Result,
338 Result = std::vector<std::string>(Args.begin() + 1, End);
367 if (std::error_code Result = File.getError()) {
368 ErrorMsg = "Error while opening fixed database: " + Result.message();
389 std::vector<CompileCommand> Result(CompileCommands);
390 Result[0].CommandLine.push_back(FilePath);
391 Result[
260 stripPositionalArgs(std::vector<const char *> Args, std::vector<std::string> &Result, std::string &ErrorMsg) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp59 SmallVector<Constant*, 16> Result; local
65 Result.push_back(C);
68 return ConstantVector::get(Result);
741 SmallVector<Constant*, 16> Result; local
758 Result.push_back(V);
762 if (Result.size() == V1->getType()->getVectorNumElements())
763 return ConstantVector::get(Result);
846 SmallVector<Constant*, 16> Result;
847 Result.reserve(NumElts);
852 Result
885 SmallVector<Constant*, 32> Result; local
935 SmallVector<Constant*, 32> Result; local
983 SmallVector<Constant*, 16> Result; local
1334 SmallVector<Constant*, 16> Result; local
1967 int Result = -1; // -1 = unknown, 0 = known false, 1 = known true. local
2032 int Result = -1; // -1 = unknown, 0 = known false, 1 = known true. local
[all...]
H A DInlineAsm.cpp218 ConstraintInfoVector Result; local
229 Info.Parse(StringRef(I, ConstraintEnd-I), Result)) {
230 Result.clear(); // Erroneous constraint?
234 Result.push_back(Info);
242 Result.clear();
248 return Result;
/freebsd-11-stable/crypto/openssl/engines/vendor_defns/
H A Dhw_ubsec.h118 unsigned char *Result,
122 unsigned char *Result, int *Result_len);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizer.h83 using Result = GlobalsMetadata;
85 Result run(Module &, ModuleAnalysisManager &);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DDJB.cpp72 if (Optional<uint32_t> Result = fastCaseFoldingDjbHash(Buffer, H))
73 return *Result;
H A DProgram.cpp40 ProcessInfo Result = Wait( local
42 return Result.ReturnCode;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dedit_distance.h96 unsigned Result = Row[n]; local
97 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp101 size_t Result =
104 return Result;
173 Directory Result;
174 Result.Type = S.Type;
175 Result.Location.RVA = File.tell();
221 Result.Location.DataSize =
222 DataEnd.getValueOr(File.tell()) - Result.Location.RVA;
223 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp125 DependenceAnalysis::Result
733 // vector for Result will have 2 entries. SrcLevels = 4 and MaxLevels = 7.
1097 FullDependence &Result) const {
1111 Result.Consistent = false;
1145 unsigned Level, FullDependence &Result,
1195 Result.DV[Level].Distance = SE->getConstant(Distance);
1198 Result.DV[Level].Direction &= Dependence::DVEntry::LT;
1200 Result.DV[Level].Direction &= Dependence::DVEntry::GT;
1202 Result.DV[Level].Direction &= Dependence::DVEntry::EQ;
1207 Result
1143 strongSIVtest(const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
1279 weakCrossingSIVtest( const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
1490 exactSIVtest(const SCEV *SrcCoeff, const SCEV *DstCoeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
1699 weakZeroSrcSIVtest(const SCEV *DstCoeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
1809 weakZeroDstSIVtest(const SCEV *SrcCoeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint) const argument
2150 testSIV(const SCEV *Src, const SCEV *Dst, unsigned &Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
3068 bool Result = false; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp39 LookupResult Result;
41 Result[*KV.first] = std::move(KV.second);
42 OnResolved(Result);
59 LookupSet Result; local
63 Result.insert(*KV.first);
66 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadic.h129 std::string Result; local
130 raw_string_ostream Stream(Result);
133 return Result;
137 SmallString<N> Result; local
138 raw_svector_ostream Stream(Result);
140 return Result;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp216 auto Result = deleteLoopIfDead(&L, AR.DT, AR.SE, AR.LI); local
217 if (Result == LoopDeletionResult::Unmodified)
220 if (Result == LoopDeletionResult::Deleted)
262 LoopDeletionResult Result = deleteLoopIfDead(L, DT, SE, LI); local
264 if (Result == LoopDeletionResult::Deleted)
267 return Result != LoopDeletionResult::Unmodified;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp427 bool Result = true; local
439 Result = false;
458 Result = false;
472 Result = false;
483 Result = false;
488 return Result;
1024 bool Result = true; local
1034 Result = false;
1045 Result = false;
1056 Result
1081 bool Result = true; local
1106 bool Result = true; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp420 : Result(SM), CollectedExpansions(std::move(CollectedExpansions)), SM(SM),
422 Result.ExpandedTokens = std::move(Expanded);
426 assert(!Result.ExpandedTokens.empty());
427 assert(Result.ExpandedTokens.back().kind() == tok::eof);
436 while (NextExpanded < Result.ExpandedTokens.size() - 1 /* eof */) {
449 for (const auto &File : Result.Files)
452 return std::move(Result);
464 Result.ExpandedTokens[NextExpanded].location());
466 const auto &SpelledTokens = Result.Files[File].SpelledTokens;
474 Drain ? Result
584 TokenBuffer Result; member in class:TokenCollector::Builder
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp176 const Module *Result = this; local
177 while (Result->Parent)
178 Result = Result->Parent;
180 return Result;
220 std::string Result; local
222 llvm::raw_string_ostream Out(Result);
226 return Result;
330 Module *Result = new Module(Name, SourceLocation(), this, false, InferExplicitSubmodules, 0);
331 Result
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp82 class Result;
386 // generation by every method of a Result subclass (see below) that wants to
445 // The base class 'Result' can represent a value of the LLVM type 'Value', or
449 // plain integer literal, the Result object we construct here will be one that
456 class Result { class in namespace:__anon961
459 using Ptr = std::shared_ptr<Result>;
468 virtual ~Result() = default;
475 llvm_unreachable("non-working Result::getIntegerValue called");
507 // Each Result will be assigned a variable name in the output code, but not
510 // prevent annoying compiler warnings, we track whether each Result'
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp540 Record *Result = Records.getClass(Lex.getCurStrVal()); local
541 if (!Result) {
551 return Result;
565 MultiClass *Result = MultiClasses[Lex.getCurStrVal()].get(); local
566 if (!Result)
570 return Result;
581 SubClassReference Result; local
582 Result.RefRange.Start = Lex.getLoc();
586 Result.Rec = &MC->Rec;
588 Result
631 SubMultiClassReference Result; local
727 ParseRangeList(SmallVectorImpl<unsigned> &Result) argument
2153 Init *Result = ParseSimpleValue(CurRec, ItemType, Mode); local
2313 ParseDagArgList( SmallVectorImpl<std::pair<llvm::Init*, StringInit*>> &Result, Record *CurRec) argument
2357 ParseValueList(SmallVectorImpl<Init*> &Result, Record *CurRec, Record *ArgsRec, RecTy *EltTy) argument
3068 ParseLetList(SmallVectorImpl<LetRecord> &Result) argument
3178 auto Result = local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCExpr.cpp598 /// Result = (Result_A - Result_B + Result_Cst)
600 /// Result = LHS + RHS
602 /// Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst).
638 // Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst).
830 int64_t Result = 0; local
833 case MCBinaryExpr::AShr: Result = LHS >> RHS; break;
834 case MCBinaryExpr::Add: Result = LHS + RHS; break;
835 case MCBinaryExpr::And: Result = LHS & RHS; break;
847 Result = LHS / RHS;
849 Result
[all...]

Completed in 428 milliseconds

1234567891011>>