Searched refs:Results (Results 1 - 25 of 87) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp62 std::vector<Result> Results; member in class:__anon617::ResultBuilder
235 Result *data() { return Results.empty() ? nullptr : &Results.front(); }
236 unsigned size() const { return Results.size(); }
237 bool empty() const { return Results.empty(); }
1033 Results.push_back(R);
1048 Results.push_back(R);
1086 Results[Index].Declaration = R.Declaration;
1155 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
1156 Results
1572 ResultBuilder &Results; member in class:__anon618::CodeCompletionDeclConsumer
1581 CodeCompletionDeclConsumer( ResultBuilder &Results, DeclContext *InitialLookupCtx, QualType BaseType = QualType(), std::vector<FixItHint> FixIts = std::vector<FixItHint>()) argument
1644 AddTypeSpecifierResults(const LangOptions &LangOpts, ResultBuilder &Results) argument
1726 AddStorageSpecifiers(Sema::ParserCompletionContext CCC, const LangOptions &LangOpts, ResultBuilder &Results) argument
1752 AddFunctionSpecifiers(Sema::ParserCompletionContext CCC, const LangOptions &LangOpts, ResultBuilder &Results) argument
1798 AddTypedefResult(ResultBuilder &Results) argument
1894 addThisCompletion(Sema &S, ResultBuilder &Results) argument
1908 AddStaticAssertResult(CodeCompletionBuilder &Builder, ResultBuilder &Results, const LangOptions &LangOpts) argument
1924 AddOverrideResults(ResultBuilder &Results, const CodeCompletionContext &CCContext, CodeCompletionBuilder &Builder) argument
1979 AddOrdinaryNameResults(Sema::ParserCompletionContext CCC, Scope *S, Sema &SemaRef, ResultBuilder &Results) argument
3863 AddMacroResults(Preprocessor &PP, ResultBuilder &Results, bool LoadExternal, bool IncludeUndefined, bool TargetTypeIsPointer = false) argument
3889 AddPrettyFunctionResults(const LangOptions &LangOpts, ResultBuilder &Results) argument
3902 HandleCodeCompleteResults(Sema *S, CodeCompleteConsumer *CodeCompleter, CodeCompletionContext Context, CodeCompletionResult *Results, unsigned NumResults) argument
3977 MaybeAddOverrideCalls(Sema &S, DeclContext *InContext, ResultBuilder &Results) argument
4146 AddPrettyFunctionResults(getLangOpts(), Results); local
4266 AddEnumerators(ResultBuilder &Results, ASTContext &Context, EnumDecl *Enum, DeclContext *CurContext, const CoveredEnumerators &Enumerators) argument
4311 AddLambdaCompletion(ResultBuilder &Results, llvm::ArrayRef<QualType> Parameters, const LangOptions &LangOpts) argument
4412 AddPrettyFunctionResults(getLangOpts(), Results); local
4504 AddObjCProperties(const CodeCompletionContext &CCContext, ObjCContainerDecl *Container, bool AllowCategories, bool AllowNullaryMethods, DeclContext *CurContext, AddedPropertiesSet &AddedProperties, ResultBuilder &Results, bool IsBaseExprStatement = false, bool IsClassProperty = false, bool InOriginalClass = true) argument
4684 AddRecordMembersCompletionResults( Sema &SemaRef, ResultBuilder &Results, Scope *S, QualType BaseType, ExprValueKind BaseKind, RecordDecl *RD, Optional<FixItHint> AccessOpFixIt) argument
4938 AddTypeQualifierResults(DeclSpec &DS, ResultBuilder &Results, const LangOptions &LangOpts) argument
5075 mergeCandidatesWithResults( Sema &SemaRef, SmallVectorImpl<ResultCandidate> &Results, OverloadCandidateSet &CandidateSet, SourceLocation Loc) argument
5148 SmallVector<ResultCandidate, 8> Results; local
5261 SmallVector<ResultCandidate, 8> Results; local
5350 AddPrettyFunctionResults(getLangOpts(), Results); local
5579 AddTypeSpecifierResults(getLangOpts(), Results); local
5792 AddObjCImplementationResults(const LangOptions &LangOpts, ResultBuilder &Results, bool NeedAt) argument
5815 AddObjCInterfaceResults(const LangOptions &LangOpts, ResultBuilder &Results, bool NeedAt) argument
5834 AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) argument
5891 AddObjCImplementationResults(getLangOpts(), Results, false); local
5893 AddObjCInterfaceResults(getLangOpts(), Results, false); local
5901 AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) argument
5966 AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) argument
6012 AddObjCVisibilityResults(const LangOptions &LangOpts, ResultBuilder &Results, bool NeedAt) argument
6027 AddObjCVisibilityResults(getLangOpts(), Results, false); local
6215 AddObjCMethods(ObjCContainerDecl *Container, bool WantInstanceMethods, ObjCMethodKind WantKind, ArrayRef<IdentifierInfo *> SelIdents, DeclContext *CurContext, VisitedSelectorSet &Selectors, bool AllowSameLength, ResultBuilder &Results, bool InOriginalClass = true, bool IsRootClass = false) argument
6523 AddSuperSendCompletion(Sema &S, bool NeedSuperKeyword, ArrayRef<IdentifierInfo *> SelIdents, ResultBuilder &Results) argument
6723 getPreferredArgumentTypeForMessageSend(ResultBuilder &Results, unsigned NumSelIdents) argument
6755 AddClassMessageCompletions(Sema &SemaRef, Scope *S, ParsedType Receiver, ArrayRef<IdentifierInfo *> SelIdents, bool AtArgumentExpression, bool IsSuper, ResultBuilder &Results) argument
7098 AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext, bool OnlyForwardDeclarations, ResultBuilder &Results) argument
7161 AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext, bool OnlyForwardDeclarations, bool OnlyUnimplemented, ResultBuilder &Results) argument
7567 AddObjCKeyValueCompletions(ObjCPropertyDecl *Property, bool IsInstanceMethod, QualType ReturnType, ASTContext &Context, VisitedSelectorSet &KnownSelectors, ResultBuilder &Results) argument
8817 GatherGlobalCodeCompletions( CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, SmallVectorImpl<CodeCompletionResult> &Results) argument
[all...]
H A DCodeCompleteConsumer.cpp537 Sema &SemaRef, CodeCompletionContext Context, CodeCompletionResult *Results,
539 std::stable_sort(Results, Results + NumResults);
548 if (!Filter.empty() && isResultFilteredOut(Filter, Results[I]))
551 switch (Results[I].Kind) {
553 OS << *Results[I].Declaration;
556 if (Results[I].Hidden)
558 if (Results[I].InBaseClass)
560 if (Results[I].Availability ==
566 if (CodeCompletionString *CCS = Results[
536 ProcessCodeCompleteResults( Sema &SemaRef, CodeCompletionContext Context, CodeCompletionResult *Results, unsigned NumResults) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddscontrol.c423 if ((ACPI_GET_DESCRIPTOR_TYPE (WalkState->Results->Results.ObjDesc[0]) ==
425 ((WalkState->Results->Results.ObjDesc [0])->Common.Type ==
427 ((WalkState->Results->Results.ObjDesc [0])->Reference.Class !=
431 &WalkState->Results->Results.ObjDesc [0], WalkState);
438 WalkState->ReturnDesc = WalkState->Results->Results
[all...]
H A Ddswstate.c198 State = WalkState->Results;
227 *Object = State->Results.ObjDesc [Index];
235 State->Results.ObjDesc [Index] = NULL;
303 State = WalkState->Results;
321 State->Results.ObjDesc [Index] = Object;
371 AcpiUtPushGenericState (&WalkState->Results, State);
377 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Results=%p State=%p\n",
408 if (WalkState->Results == NULL)
421 State = AcpiUtPopGenericState (&WalkState->Results);
940 while (WalkState->Results)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.cpp48 SmallVectorImpl<MVT> &Results) {
49 computeLegalValueVTs(F, TM, Ty->getReturnType(), Results);
52 if (Results.size() > 1 &&
58 Results.clear();
75 llvm::signatureFromMVTs(const SmallVectorImpl<MVT> &Results, argument
78 valTypesFromMVTs(Results, Sig->Returns);
45 computeSignatureVTs(const FunctionType *Ty, const Function &F, const TargetMachine &TM, SmallVectorImpl<MVT> &Params, SmallVectorImpl<MVT> &Results) argument
H A DWebAssemblyMachineFunctionInfo.h36 std::vector<MVT> Results; member in class:llvm::final
70 void addResult(MVT VT) { Results.push_back(VT); }
71 const std::vector<MVT> &getResults() const { return Results; }
75 Results.clear();
146 SmallVectorImpl<MVT> &Results);
152 signatureFromMVTs(const SmallVectorImpl<MVT> &Results,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DAllTUsExecution.cpp37 Results.addResult(Key, Value);
42 return Results.AllKVResults();
47 Results.forEachResult(Callback);
51 InMemoryToolResults Results; member in class:clang::tooling::__anon916::ThreadSafeToolResults
66 : Compilations(Compilations), Results(new ThreadSafeToolResults),
67 Context(Results.get()), ThreadCount(ThreadCount) {}
74 Results(new ThreadSafeToolResults), Context(Results.get()),
H A DStandaloneExecution.cpp36 Context(&Results), ArgsAdjuster(getDefaultArgumentsAdjusters()) {
48 Context(&Results), ArgsAdjuster(getDefaultArgumentsAdjusters()) {
H A DFileMatchTrie.cpp142 void getAll(std::vector<StringRef> &Results, argument
147 Results.push_back(StringRef(Path));
155 It->getValue().getAll(Results, Children.end());
H A DExecution.cpp39 Results->addResult(Key, Value);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp831 void materialize(const ResultStack &Results);
839 OpRef concat(OpRef Va, OpRef Vb, ResultStack &Results);
840 OpRef packs(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results,
842 OpRef packp(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results,
845 ResultStack &Results);
847 ResultStack &Results);
849 OpRef shuffs1(ShuffleMask SM, OpRef Va, ResultStack &Results);
850 OpRef shuffs2(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results);
851 OpRef shuffp1(ShuffleMask SM, OpRef Va, ResultStack &Results);
852 OpRef shuffp2(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp80 /// Make sure Results are legal and update the translation cache.
82 MutableArrayRef<SDValue> Results);
84 /// Wrapper to interface LowerOperation with a vector of Results.
86 /// returns true. If return is true and the Results are empty, then the
88 bool LowerOperationWrapper(SDNode *N, SmallVectorImpl<SDValue> &Results);
97 void Expand(SDNode *Node, SmallVectorImpl<SDValue> &Results);
101 void ExpandFP_TO_UINT(SDNode *Node, SmallVectorImpl<SDValue> &Results);
105 void ExpandUINT_TO_FLOAT(SDNode *Node, SmallVectorImpl<SDValue> &Results);
140 void ExpandFSUB(SDNode *Node, SmallVectorImpl<SDValue> &Results);
141 void ExpandBITREVERSE(SDNode *Node, SmallVectorImpl<SDValue> &Results);
232 RecursivelyLegalizeResults(SDValue Op, MutableArrayRef<SDValue> Results) argument
526 LowerOperationWrapper(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
555 Promote(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
619 PromoteINT_TO_FP(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
660 PromoteFP_TO_INT(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
841 Expand(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1199 ExpandBITREVERSE(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1297 ExpandFP_TO_UINT(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1317 ExpandUINT_TO_FLOAT(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1419 ExpandFSUB(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1433 ExpandUADDSUBO(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1441 ExpandSADDSUBO(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1449 ExpandMULO(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1467 ExpandStrictFPOp(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
1481 UnrollStrictFPOp(SDNode *Node, SmallVectorImpl<SDValue> &Results) argument
[all...]
H A DLegalizeDAG.cpp146 SmallVectorImpl<SDValue> &Results);
157 SmallVectorImpl<SDValue> &Results);
158 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
159 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
169 SmallVectorImpl<SDValue> &Results);
178 SmallVectorImpl<SDValue> &Results);
180 SmallVectorImpl<SDValue> &Results);
1585 SmallVectorImpl<SDValue> &Results) {
1615 Results.push_back(Tmp1);
1616 Results
[all...]
H A DLegalizeTypes.cpp244 // with a legal type). Results can be remapped using ReplaceValueWith,
883 SmallVector<SDValue, 8> Results;
885 TLI.ReplaceNodeResults(N, Results, DAG);
887 TLI.LowerOperationWrapper(N, Results, DAG);
889 if (Results.empty())
895 if (Results.size() == N->getNumValues() + 1 && LegalizeResult) {
898 SetExpandedInteger(SDValue(N, 0), Results[0], Results[1]); local
900 ReplaceValueWith(SDValue(N, 1), Results[2]); local
904 // Make everything that once used N's values now use those in Results instea
908 ReplaceValueWith(SDValue(N, i), Results[i]); local
934 ReplaceValueWith(SDValue(N, i), Results[i]); local
936 SetWidenedVector(SDValue(N, i), Results[i]); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DExecution.h44 /// Results should be string key-value pairs. For example, a refactoring tool
81 /// Initializes a context. This does not take ownership of `Results`.
82 explicit ExecutionContext(ToolResults *Results) : Results(Results) {} argument
99 ToolResults *Results; member in class:clang::tooling::ExecutionContext
H A DStandaloneExecution.h69 ToolResults *getToolResults() override { return &Results; }
91 InMemoryToolResults Results; member in class:clang::tooling::StandaloneToolExecutor
H A DAllTUsExecution.h56 ToolResults *getToolResults() override { return Results.get(); }
66 std::unique_ptr<ToolResults> Results; member in class:clang::tooling::AllTUsToolExecutor
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.cpp257 static void sortByKey(std::vector<TupleType> &Results, F Fn) { argument
259 llvm::sort(Results, [=](const TupleType &L, const TupleType &R) {
266 std::vector<TupleType> Results; local
267 Results.reserve(FunctionLatencies.size());
271 Results.emplace_back(FuncId, Timings.size(), getStats(Timings));
272 auto &Row = std::get<2>(Results.back());
290 sortByKey(Results, [](const TupleType &X) { return std::get<0>(X); });
293 sortByKey(Results, [](const TupleType &X) { return std::get<1>(X); });
296 sortByKey(Results, [](const TupleType &X) { return std::get<2>(X).Min; });
299 sortByKey(Results, [](cons
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h620 LookupResult &Results; member in class:clang::LookupResult::Filter
625 Filter(LookupResult &Results) : Results(Results), I(Results.begin()) {} argument
629 : Results(F.Results), I(F.I), Changed(F.Changed),
640 return I != Results.end();
644 assert(I != Results.end() && "next() called on empty filter");
650 I = Results
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DExprMutationAnalyzer.h73 ResultMap Results; member in class:clang::ExprMutationAnalyzer
90 llvm::DenseMap<const ParmVarDecl *, const Stmt *> Results; member in class:clang::FunctionParmMutationAnalyzer
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp106 Results);
443 if (Results.find(Parm) != Results.end())
446 Results[Parm] = S;
454 const auto Memoized = Results.find(Parm);
455 if (Memoized != Results.end())
459 return Results[Parm] = S;
461 return Results[Parm] = nullptr;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.cpp421 SmallVector<Register, 2> Results; local
452 Results.push_back(ProcessedResult);
455 if (Results.size() != 1) {
456 assert(Results.size() == 2 && "Unexpected number of results");
457 MIRBuilder.buildOr(OriginalResult, Results[0], Results[1]);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp526 std::vector<const NamedDecl *> Results;
532 Results.push_back(ND);
534 return Results;
545 return Results;
548 Results.push_back(ND);
550 return Results;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp277 SmallVector<SDValue, 4> Results;
278 Results.push_back(RepMovs);
282 Results.push_back(DAG.getMemcpy(
289 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Results);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h267 selectFirst(StringRef BoundTo, const SmallVectorImpl<BoundNodes> &Results) { argument
268 for (const BoundNodes &N : Results) {

Completed in 169 milliseconds

1234