Home
last modified time | relevance | path

Searched full:signatures (Results 1 – 25 of 334) sorted by relevance

12345678910>>...14

/llvm-project/clang-tools-extra/clang-tidy/boost/
H A DUseRangesCheck.cpp30 BoostReplacer(ArrayRef<UseRangesCheck::Signature> Signatures, in BoostReplacer() argument
32 : Signatures(Signatures), IncludeSystem(IncludeSystem) {} in BoostReplacer()
35 return Signatures; in getReplacementSignatures()
61 SmallVector<UseRangesCheck::Signature> Signatures; member in clang::tidy::boost::__anonb8c86f720111::BoostReplacer
89 StringRef HeaderName, ArrayRef<UseRangesCheck::Signature> Signatures, in CustomBoostAlgorithmHeaderReplacer() argument
91 : BoostRangeAlgorithmReplacer(Signatures, IncludeSystem), in CustomBoostAlgorithmHeaderReplacer()
109 ArrayRef<UseRangesCheck::Signature> Signatures, in BoostAlgorithmReplacer() argument
111 : BoostReplacer(Signatures, IncludeSystem), in BoostAlgorithmReplacer()
133 ArrayRef<UseRangesCheck::Signature> Signatures, in CustomBoostAlgorithmReplacer() argument
155 MakeOverloadReplacer(ArrayRef<UseRangesCheck::Signature> Signatures) MakeOverloadReplacer() argument
174 SmallVector<UseRangesCheck::Signature> Signatures; global() member in clang::tidy::boost::__anonb8c86f720111::MakeOverloadReplacer
182 FixedBoostReplace(StringRef Header,ArrayRef<UseRangesCheck::Signature> Signatures,bool IncludeBoostSystem) FixedBoostReplace() argument
[all...]
/llvm-project/llvm/lib/Support/
H A DBalancedPartitioning.cpp183 // Renumber utility nodes so they can be used to index into Signatures in runIterations()
189 // Initialize signatures in runIterations()
190 SignaturesT Signatures(/*Size=*/UtilityNodeIndex.size()); in runIterations()
193 assert(UN < Signatures.size()); in runIterations()
195 Signatures[UN].LeftCount++; in runIterations()
197 Signatures[UN].RightCount++; in runIterations()
204 runIteration(Nodes, LeftBucket, RightBucket, Signatures, RNG); in runIterations()
213 SignaturesT &Signatures, in runIteration()
216 for (auto &Signature : Signatures) { in runIteration()
237 float Gain = moveGain(N, FromLeftToRight, Signatures); in runIteration()
188 SignaturesT Signatures(/*Size=*/UtilityNodeIndex.size()); runIterations() local
211 runIteration(const FunctionNodeRange Nodes,unsigned LeftBucket,unsigned RightBucket,SignaturesT & Signatures,std::mt19937 & RNG) const runIteration() argument
271 moveFunctionNode(BPFunctionNode & N,unsigned LeftBucket,unsigned RightBucket,SignaturesT & Signatures,std::mt19937 & RNG) const moveFunctionNode() argument
318 moveGain(const BPFunctionNode & N,bool FromLeftToRight,const SignaturesT & Signatures) moveGain() argument
[all...]
/llvm-project/clang-tools-extra/clang-tidy/modernize/
H A DUseRangesCheck.cpp105 explicit StdReplacer(SmallVector<UseRangesCheck::Signature> Signatures) in getReplaceName()
106 : Signatures(std::move(Signatures)) {} in getReplaceName()
113 return Signatures;
117 SmallVector<UseRangesCheck::Signature> Signatures;
161 for (const auto &[Signatures, Values] : AlgorithmNames) { in getReplacerMap()
163 SmallVector<UseRangesCheck::Signature>{Signatures}); in getReplacerMap()
102 StdReplacer(SmallVector<UseRangesCheck::Signature> Signatures) StdReplacer() argument
114 SmallVector<UseRangesCheck::Signature> Signatures; global() member in clang::tidy::modernize::__anon182f7a980111::StdReplacer
/llvm-project/clang-tools-extra/clangd/unittests/
H A DCodeCompleteTests.cpp1466 signatures(llvm::StringRef Text, Position Point, in TEST()
1494 signatures(llvm::StringRef Text, std::vector<Symbol> IndexSymbols = {}, in TEST()
1497 return signatures(Test.code(), Test.point(), std::move(IndexSymbols), in TEST()
1539 auto Results = signatures(R"cpp(
1547 EXPECT_THAT(Results.signatures, in TEST()
1604 EXPECT_THAT(signatures(Test).signatures, in TEST()
1617 EXPECT_THAT(signatures(Top + Init).signatures, in TEST()
1626 EXPECT_THAT(signatures(To in TEST()
1349 signatures(llvm::StringRef Text, Position Point, signatures() function
1377 signatures(llvm::StringRef Text, std::vector<Symbol> IndexSymbols = {}, signatures() function
3696 auto Signatures = signatures("auto x() { x(^").signatures; TEST() local
4182 auto Signatures = TEST() local
[all...]
/llvm-project/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp36 // A list of signatures that are shared by one or more builtin functions.
39 std::vector<std::pair<const Record *, unsigned>> Signatures;
52 // one of the signatures of "cos". The SignatureTable entry can be
58 // * Structs and enums to represent types and function signatures.
69 // A list of types representing function signatures. Each entry is an index
126 // Compare two lists of signatures and check that e.g. the OpenCL version,
129 // \param SignatureList (in) List of signatures of the considered function.
130 // \returns true if the two lists of signatures are identical.
135 // Group functions with the same list of signatures by populating the
137 // Some builtin functions have the same list of signatures, fo
40 std::vector<std::pair<const Record *, unsigned>> Signatures; global() member
[all...]
/llvm-project/polly/lib/External/isl/interface/
H A Dtemplate_cpp.cc406 /* Signatures for unary operations.
415 /* Signatures for binary operations, with the second argument
439 /* Signatures for binary operations, where the second argument
449 /* Signatures for ternary operations, where the last two arguments are integers.
460 /* Signatures for ternary operations.
470 /* Signatures for naming a leaf tuple using an identifier (with an anonymous
479 /* Signatures for the functions "min" and "max", which can be either
484 /* Signatures for adding an unnamed tuple to an object with zero or one tuple.
488 /* Signatures for adding a named tuple to an object with zero or one tuple.
495 /* Signatures for methods applying a map to a set, a function or
[all …]
/llvm-project/llvm/unittests/Support/
H A DBalancedPartitioningTest.cpp88 BalancedPartitioning::SignaturesT Signatures = { in TEST_F() local
93 EXPECT_FLOAT_EQ(Bp.moveGain(BPFunctionNode(0, {}), true, Signatures), 0.f); in TEST_F()
94 EXPECT_FLOAT_EQ(Bp.moveGain(BPFunctionNode(0, {0, 1}), true, Signatures), in TEST_F()
96 EXPECT_FLOAT_EQ(Bp.moveGain(BPFunctionNode(0, {1, 2}), false, Signatures), in TEST_F()
/llvm-project/clang-tools-extra/clang-tidy/utils/
H A DUseRangesCheck.cpp135 // signatures in order of length(longest to shortest). This way any in registerMatchers() local
/llvm-project/mlir/test/mlir-pdll-lsp-server/
H A Dsignature-help.test20 // CHECK-NEXT: "signatures": [
66 // CHECK-NEXT: "signatures": [
99 // CHECK-NEXT: "signatures": [
145 // CHECK-NEXT: "signatures": [
178 // CHECK-NEXT: "signatures": [
208 // CHECK-NEXT: "signatures": [
/llvm-project/llvm/test/ObjectYAML/wasm/
H A Dsection_header_size.yaml11 Signatures:
46 # CHECK-NEXT: Signatures:
84 Signatures:
H A Dtype_section.yaml7 Signatures:
26 # CHECK: Signatures:
H A Dcode_section.yaml7 Signatures:
61 # CHECK: Signatures:
H A Devent_section.yaml8 Signatures:
55 # CHECK-NEXT: Signatures:
H A Dmultiple-tables.yaml8 Signatures:
69 # CHECK-NEXT: Signatures:
/llvm-project/llvm/lib/Target/DirectX/
H A DDXILMetadata.cpp
/llvm-project/lldb/include/lldb/Core/
H A DDataFileCache.h106 /// signature and then encode and decode them to validate the signatures
135 /// Cache signatures are considered valid only if there is a UUID in the file
141 /// Check if two signatures are the same.
147 /// Check if two signatures differ.
/llvm-project/llvm/test/tools/llvm-dwp/X86/
H A Dincompatible_tu_index_version.s42 ## Hash Table of Signatures:
66 ## Hash Table of Signatures:
H A Dunknown-section-id.s88 ## Hash Table of Signatures:
117 ## Hash Table of Signatures:
/llvm-project/clang-tools-extra/clangd/support/
H A DPath.h25 /// signatures.
28 /// signatures.
/llvm-project/clang/test/SemaObjC/
H A Dmethod-conflict-2.m1 // RUN: %clang_cc1 -Wmethod-signatures -fsyntax-only -verify -Wno-objc-root-class %s
2 // RUN: %clang_cc1 -x objective-c++ -Wmethod-signatures -fsyntax-only -verify -Wno-objc-root-class …
/llvm-project/llvm/include/llvm/Support/
H A DBalancedPartitioning.h151 unsigned RightBucket, SignaturesT &Signatures,
157 unsigned RightBucket, SignaturesT &Signatures,
196 const SignaturesT &Signatures);
/llvm-project/lld/test/wasm/
H A Dtag-section.ll31 ; NOPIC-NEXT: Signatures:
55 ; PIC-NEXT: Signatures:
/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp553 Signature = &Signatures[F.SigIndex]; in parseNameSection()
731 Signature = &Signatures[Function.SigIndex]; in parseLinkingSectionSymtab()
742 Signature = &Signatures[Import.SigIndex]; in parseLinkingSectionSymtab()
857 Signature = &Signatures[Tag.SigIndex]; in parseLinkingSectionSymtab()
869 Signature = &Signatures[Import.SigIndex]; in parseLinkingSectionSymtab()
1063 if (Reloc.Index >= Signatures.size()) in parseRelocSection()
1188 Signatures.reserve(Count); in parseTypeSection()
1199 Signatures.reserve(Signatures.size() + RecSize); in parseTypeSection()
1202 Signatures in parseTypeSection()
[all...]
/llvm-project/llvm/test/DebugInfo/X86/
H A Ddebug-cu-index-overlap.s34 ## Hash Table of Signatures:
71 ## Hash Table of Signatures:
/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCInstMethSignature.cpp1 //===-- CheckObjCInstMethSignature.cpp - Check ObjC method signatures -----===//
99 // same signatures. in CheckObjCInstMethSignature()

12345678910>>...14