Home
last modified time | relevance | path

Searched refs:Results (Results 1 – 25 of 134) sorted by relevance

123456

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaCodeComplete.cpp1662 : Results(Results), InitialLookupCtx(InitialLookupCtx), in CodeCompletionDeclConsumer()
4327 Results.data(), Results.size()); in CodeCompleteModuleImport()
4414 Results.data(), Results.size()); in CodeCompleteOrdinaryName()
4490 Results.data(), Results.size()); in CodeCompleteDeclSpec()
4642 Results.data(), Results.size()); in CodeCompleteAttribute()
4826 Results.data(), Results.size()); in CodeCompleteExpression()
5768 Results.data(), Results.size()); in CodeCompleteMemberReferenceExpr()
5792 Results.data(), Results.size()); in CodeCompleteObjCClassPropertyRefExpr()
8683 Results.data()[Results.size() - 1].Kind == in CodeCompleteObjCPropertySynthesizeIvar()
8686 Results.data()[Results.size() - 1].Priority--; in CodeCompleteObjCPropertySynthesizeIvar()
[all …]
H A DCodeCompleteConsumer.cpp643 std::stable_sort(Results, Results + NumResults); in ProcessCodeCompleteResults()
651 if (!Filter.empty() && isResultFilteredOut(Filter, Results[I])) in ProcessCodeCompleteResults()
654 switch (Results[I].Kind) { in ProcessCodeCompleteResults()
656 OS << *Results[I].Declaration; in ProcessCodeCompleteResults()
659 if (Results[I].Hidden) in ProcessCodeCompleteResults()
661 if (Results[I].InBaseClass) in ProcessCodeCompleteResults()
663 if (Results[I].Availability == in ProcessCodeCompleteResults()
679 OS << Results[I].Keyword; in ProcessCodeCompleteResults()
683 OS << Results[I].Macro->getName(); in ProcessCodeCompleteResults()
692 OS << "Pattern : " << Results[I].Pattern->getAsString(); in ProcessCodeCompleteResults()
[all …]
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp237 Results[i] = LegalizeOp(Results[i]); in RecursivelyLegalizeResults()
525 Results.push_back(Res); in LowerOperationWrapper()
603 Results.push_back(Res); in Promote()
633 Results.push_back(Res); in PromoteINT_TO_FP()
640 Results.push_back(Res); in PromoteINT_TO_FP()
1188 Results.push_back(Tmp); in ExpandBITREVERSE()
1213 Results.push_back(Op); in ExpandBITREVERSE()
1230 Results.push_back(Tmp); in ExpandBITREVERSE()
1486 Results.push_back( in ExpandUINT_TO_FLOAT()
1512 Results.push_back(Tmp); in ExpandFSUB()
[all …]
H A DLegalizeDAG.cpp2306 Results.push_back( in ExpandSinCosLibCall()
2308 Results.push_back( in ExpandSinCosLibCall()
2584 Results.push_back( in PromoteLegalINT_TO_FP()
3032 Results.push_back(Results[0].getValue(1)); in ExpandNode()
3165 Results.push_back(Results[0].getValue(1)); in ExpandNode()
3183 Results.push_back(Results[0].getValue(0)); in ExpandNode()
4381 Results.push_back( in ConvertNodeToLibcall()
4758 Results.push_back(Results.back().getValue(1)); in PromoteNode()
4793 Results.push_back( in PromoteNode()
4822 Results.push_back( in PromoteNode()
[all …]
H A DLegalizeTypes.cpp931 SmallVector<SDValue, 8> Results; in CustomLowerNode() local
933 TLI.ReplaceNodeResults(N, Results, DAG); in CustomLowerNode()
935 TLI.LowerOperationWrapper(N, Results, DAG); in CustomLowerNode()
937 if (Results.empty()) in CustomLowerNode()
942 assert(Results.size() == N->getNumValues() && in CustomLowerNode()
945 ReplaceValueWith(SDValue(N, i), Results[i]); in CustomLowerNode()
958 SmallVector<SDValue, 8> Results; in CustomWidenLowerNode() local
959 TLI.ReplaceNodeResults(N, Results, DAG); in CustomWidenLowerNode()
961 if (Results.empty()) in CustomWidenLowerNode()
966 assert(Results.size() == N->getNumValues() && in CustomWidenLowerNode()
[all …]
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp739 Results->Results = nullptr; in clang_codeCompleteAt_Impl()
765 Results->LangOpts, *Results->SourceMgr, *Results->FileMgr, in clang_codeCompleteAt_Impl()
768 Results->DiagnosticsWrappers.resize(Results->Diagnostics.size()); in clang_codeCompleteAt_Impl()
850 return Results; in clang_codeCompleteAt_Impl()
897 delete Results; in clang_disposeCodeCompleteResults()
904 if (!Results) in clang_codeCompleteGetNumDiagnostics()
915 if (!Results || Index >= Results->Diagnostics.size()) in clang_codeCompleteGetDiagnostic()
931 if (!Results) in clang_codeCompleteGetContexts()
942 if (!Results) in clang_codeCompleteGetContainerKind()
955 if (!Results) in clang_codeCompleteGetContainerUSR()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp1161 Results.print(dbgs(), DAG); in materialize()
1163 if (Results.empty()) in materialize()
1165 const SDLoc &dl(Results.InpNode); in materialize()
1209 SDNode *InpN = Results.InpNode; in materialize()
1222 const SDLoc &dl(Results.InpNode); in concats()
1228 return OpRef::res(Results.top()); in concats()
1560 return concats(L, H, Results); in vmuxp()
1679 return concats(L, H, Results); in shuffp1()
2468 Results.push(Res); in perfect()
2611 ResultStack Results(SN); in selectShuffle() local
[all …]
/openbsd/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-account.cpp304 static void sortByKey(std::vector<TupleType> &Results, F Fn) { in sortByKey() argument
306 llvm::sort(Results, [=](const TupleType &L, const TupleType &R) { in sortByKey()
313 std::vector<TupleType> Results; in exportStats() local
314 Results.reserve(FunctionLatencies.size()); in exportStats()
318 Results.emplace_back(FuncId, Timings.size(), getStats(Timings)); in exportStats()
319 auto &Row = std::get<2>(Results.back()); in exportStats()
337 sortByKey(Results, [](const TupleType &X) { return std::get<0>(X); }); in exportStats()
340 sortByKey(Results, [](const TupleType &X) { return std::get<1>(X); }); in exportStats()
366 std::min(AccountTop.getValue(), static_cast<int>(Results.size())); in exportStats()
367 Results.erase(Results.begin() + MaxTop, Results.end()); in exportStats()
[all …]
/openbsd/gnu/llvm/clang/lib/Tooling/
H A DAllTUsExecution.cpp38 Results.addResult(Key, Value); in addResult()
43 return Results.AllKVResults(); in AllKVResults()
48 Results.forEachResult(Callback); in forEachResult()
52 InMemoryToolResults Results; member in clang::tooling::__anon81086a9b0111::ThreadSafeToolResults
67 : Compilations(Compilations), Results(new ThreadSafeToolResults), in AllTUsToolExecutor()
68 Context(Results.get()), ThreadCount(ThreadCount) {} in AllTUsToolExecutor()
75 Results(new ThreadSafeToolResults), Context(Results.get()), in AllTUsToolExecutor()
H A DFileMatchTrie.cpp154 void getAll(std::vector<StringRef> &Results, in getAll() argument
159 Results.push_back(StringRef(Path)); in getAll()
167 It->getValue().getAll(Results, Children.end()); in getAll()
/openbsd/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.cpp69 SmallVectorImpl<MVT> &Results) { in computeSignatureVTs() argument
70 computeLegalValueVTs(ContextFunc, TM, Ty->getReturnType(), Results); in computeSignatureVTs()
73 if (Results.size() > 1 && in computeSignatureVTs()
79 Results.clear(); in computeSignatureVTs()
115 llvm::signatureFromMVTs(const SmallVectorImpl<MVT> &Results, in signatureFromMVTs() argument
118 valTypesFromMVTs(Results, Sig->Returns); in signatureFromMVTs()
129 Results.push_back(EVT(VT).getEVTString()); in WebAssemblyFunctionInfo()
159 for (auto VT : YamlMFI.Results) in initializeBaseYamlFields()
H A DWebAssemblyMachineFunctionInfo.h35 std::vector<MVT> Results; variable
83 void addResult(MVT VT) { Results.push_back(VT); } in addResult()
84 const std::vector<MVT> &getResults() const { return Results; } in getResults()
88 Results.clear(); in clearParamsAndResults()
177 SmallVectorImpl<MVT> &Results);
183 signatureFromMVTs(const SmallVectorImpl<MVT> &Results,
192 std::vector<FlowStringValue> Results; member
209 YamlIO.mapOptional("results", MFI.Results, std::vector<FlowStringValue>());
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DLookup.h646 LookupResult &Results; variable
651 Filter(LookupResult &Results) : Results(Results), I(Results.begin()) {} in Filter() argument
655 : Results(F.Results), I(F.I), Changed(F.Changed), in Filter()
666 return I != Results.end(); in hasNext()
670 assert(I != Results.end() && "next() called on empty filter"); in next()
676 I = Results.begin(); in restart()
681 Results.Decls.erase(--I); in erase()
688 Results.Decls.replace(I-1, D); in replace()
694 Results.Decls.replace(I-1, D, AS); in replace()
703 Results.resolveKindAfterFilter(); in done()
/openbsd/gnu/llvm/clang/include/clang/Tooling/
H A DExecution.h82 explicit ExecutionContext(ToolResults *Results) : Results(Results) {} in ExecutionContext() argument
99 ToolResults *Results;
H A DAllTUsExecution.h57 ToolResults *getToolResults() override { return Results.get(); } in getToolResults()
67 std::unique_ptr<ToolResults> Results; variable
H A DStandaloneExecution.h70 ToolResults *getToolResults() override { return &Results; } in getToolResults()
92 InMemoryToolResults Results; variable
/openbsd/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DSerialSnippetGenerator.cpp165 std::vector<CodeTemplate> Results; in generateCodeTemplates() local
171 EC.Description, Results); in generateCodeTemplates()
172 if (!Results.empty()) in generateCodeTemplates()
175 if (Results.empty()) in generateCodeTemplates()
178 return std::move(Results); in generateCodeTemplates()
/openbsd/gnu/llvm/clang/tools/clang-refactor/
H A DTestSupport.cpp116 Results.push_back({}); in TestRefactoringResultConsumer()
121 for (auto &Group : Results) { in ~TestRefactoringResultConsumer()
144 Results.back().push_back(std::move(Result)); in handleResult()
145 size_t GroupIndex = Results.size() - 1; in handleResult()
146 if (Results.back().size() >= in handleResult()
154 Results.push_back({}); in handleResult()
159 std::vector<std::vector<Expected<tooling::AtomicChanges>>> Results; member in clang::refactor::__anon64aabf950111::TestRefactoringResultConsumer
179 for (auto &Group : llvm::enumerate(Results)) { in handleAllResults()
/openbsd/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVCompare.cpp29 LVCompareInfo Results = { variable
35 static LVCompareInfo::iterator IterTotal = Results.end();
54 for (LVCompareInfo::reference Entry : Results) { in zeroResults()
59 IterTotal = Results.find(LVCompareItem::Total); in zeroResults()
60 assert(IterTotal != Results.end()); in zeroResults()
75 LVCompareInfo::iterator Iter = Results.find(Kind); in getResultsEntry()
76 assert(Iter != Results.end()); in getResultsEntry()
418 for (LVCompareInfo::reference Entry : Results) { in printSummary()
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DParallel.h178 std::vector<ResultTy> Results(NumTasks, Init); in parallel_transform_reduce()
189 TG.spawn([=, &Transform, &Reduce, &Results] { in parallel_transform_reduce()
194 Results[TaskId] = R; in parallel_transform_reduce()
204 ResultTy FinalResult = std::move(Results.front()); in parallel_transform_reduce()
206 MutableArrayRef(Results.data() + 1, Results.size() - 1)) in parallel_transform_reduce()
/openbsd/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DMatchSwitch.h122 auto Results = ast_matchers::matchDynamic(Matcher, Node, Context); in Build()
123 if (Results.empty()) { in Build()
128 for (const auto &Element : Results[0].getMap()) { in Build()
135 ast_matchers::MatchFinder::MatchResult(Results[0], &Context), S); in Build()
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta/t/data-fail/
H A DMETA-1_2.yml25 Test::Harness::Results:
26 file: lib/Test/Harness/Results.pm
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta/t/data-fixable/
H A DMETA-1_2.yml25 Test::Harness::Results:
26 file: lib/Test/Harness/Results.pm
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta/t/data-test/
H A DMETA-1_2.yml26 Test::Harness::Results:
27 file: lib/Test/Harness/Results.pm
/openbsd/gnu/llvm/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.cpp1072 Results.push_back(Result); in ReplaceNodeResults()
1167 Results.push_back( in ReplaceNodeResults()
1171 Results.push_back(N->getOperand(0)); in ReplaceNodeResults()
1235 Results.push_back( in ReplaceNodeResults()
1251 Results.push_back(DAG.getNode( in ReplaceNodeResults()
1268 Results.push_back(DAG.getNode( in ReplaceNodeResults()
1292 Results.push_back(DAG.getNode( in ReplaceNodeResults()
1296 Results.push_back(Op0); in ReplaceNodeResults()
1304 Results.push_back(Op0); in ReplaceNodeResults()
1319 Results.push_back(DAG.getUNDEF(VT)); in ReplaceNodeResults()
[all …]

123456