| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | FormatCommon.h | 21 AlignStyle Where; member 25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount, 27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in Adapter() 49 switch (Where) { in format()
|
| H A D | FormatAdapters.h | 28 AlignStyle Where; variable 33 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter() argument 34 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter() 39 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format() 86 detail::AlignAdapter<T> fmt_align(T &&Item, AlignStyle Where, size_t Amount, 88 return detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, Fill);
|
| H A D | FormatVariadic.h | 52 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, in ReplacementItem() 55 Where(Where), Pad(Pad), Options(Options) {} in ReplacementItem() 61 AlignStyle Where = AlignStyle::Right; member 71 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where, 100 FmtAlign Align(*W, R.Where, R.Align, R.Pad); in format()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | FormatVariadic.cpp | 27 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where, in consumeFieldLayout() argument 29 Where = AlignStyle::Right; in consumeFieldLayout() 45 Where = *Loc; in consumeFieldLayout() 48 Where = *Loc; in consumeFieldLayout() 65 AlignStyle Where = AlignStyle::Right; in parseReplacementItem() local 76 if (!consumeFieldLayout(RepString, Where, Align, Pad)) in parseReplacementItem() 89 return ReplacementItem{Spec, Index, Align, Where, Pad, Options}; in parseReplacementItem()
|
| /llvm-project-15.0.7/clang/lib/Rewrite/ |
| H A D | TokenRewriter.cpp | 72 TokenRewriter::AddToken(const Token &T, TokenRefTy Where) { in AddToken() argument 73 Where = TokenList.insert(Where, T); in AddToken() 76 Where)).second; in AddToken() 79 return Where; in AddToken()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ |
| H A D | ConfusableIdentifierCheck.cpp | 71 auto Where = std::lower_bound(std::begin(ConfusableEntries), in skeleton() local 75 if (Where == std::end(ConfusableEntries) || CodePoint != Where->codepoint) { in skeleton() 81 const UTF32 *ValuesStart = std::begin(Where->values); in skeleton() 83 std::find(std::begin(Where->values), std::end(Where->values), '\0'); in skeleton()
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | FormatVariadicTest.cpp | 91 EXPECT_EQ(AlignStyle::Right, Replacements[0].Where); in TEST() 100 EXPECT_EQ(AlignStyle::Right, Replacements[0].Where); in TEST() 109 EXPECT_EQ(AlignStyle::Left, Replacements[0].Where); in TEST() 127 EXPECT_EQ(AlignStyle::Right, Replacements[0].Where); in TEST() 136 EXPECT_EQ(AlignStyle::Left, Replacements[0].Where); in TEST() 145 EXPECT_EQ(AlignStyle::Left, Replacements[0].Where); in TEST() 156 EXPECT_EQ(AlignStyle::Right, Replacements[0].Where); in TEST() 166 EXPECT_EQ(AlignStyle::Right, Replacements[0].Where); in TEST() 177 EXPECT_EQ(AlignStyle::Right, Replacements[0].Where); in TEST() 187 EXPECT_EQ(AlignStyle::Left, Replacements[0].Where); in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyMemIntrinsicResults.cpp | 101 MachineInstr *Where = O.getParent(); in replaceDominatedUses() local 104 if (&MI == Where || !MDT.dominates(&MI, Where)) in replaceDominatedUses() 108 SlotIndex WhereIdx = LIS.getInstructionIndex(*Where); in replaceDominatedUses() 119 LLVM_DEBUG(dbgs() << "Setting operand " << O << " in " << *Where << " from " in replaceDominatedUses()
|
| /llvm-project-15.0.7/clang/unittests/StaticAnalyzer/ |
| H A D | Reusables.h | 23 const T *findNode(const Decl *Where, MatcherT What) { in findNode() argument 26 *Where, Where->getASTContext()); in findNode() 36 const T *findDeclByName(const Decl *Where, StringRef Name) { in findDeclByName() argument 38 return findNode<T>(Where, namedDecl(hasName(Name))); in findDeclByName()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | MemorySSAUpdater.h | 128 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where); 129 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where); 131 MemorySSA::InsertionPlace Where); 247 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/Analyses/ |
| H A D | CalledOnceCheck.h | 74 const Decl *Where, in handleCapturedNeverCalled() argument 90 const Decl *Function, const Stmt *Where, in handleNeverCalled() argument
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
| H A D | ProTypeMemberInitCheck.cpp | 127 const CXXCtorInitializer *Where) in InitializerInsertion() 128 : Placement(Placement), Where(Where) {} in InitializerInsertion() 132 assert((Where != nullptr || Placement == InitializerPlacement::New) && in getLocation() 145 Where->getSourceRange().getBegin(), in getLocation() 150 Location = Where->getRParenLoc(); in getLocation() 177 const CXXCtorInitializer *Where; member
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | MemorySSAUpdater.cpp | 1167 WhereType Where) { in moveTo() argument 1177 MSSA->moveTo(What, BB, Where); in moveTo() 1191 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument 1192 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore() 1196 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument 1197 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter() 1201 MemorySSA::InsertionPlace Where) { in moveToPlace() argument 1202 if (Where != MemorySSA::InsertionPlace::BeforeTerminator) in moveToPlace() 1203 return moveTo(What, BB, Where); in moveToPlace() 1205 if (auto *Where = MSSA->getMemoryAccess(BB->getTerminator())) in moveToPlace() local [all …]
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | InstrProfWriter.cpp | 212 ProfilingData::iterator Where; in overlapRecord() local 213 std::tie(Where, NewFunc) = in overlapRecord() 219 InstrProfRecord &Dest = Where->second; in overlapRecord() 234 ProfilingData::iterator Where; in addRecord() local 235 std::tie(Where, NewFunc) = in addRecord() 237 InstrProfRecord &Dest = Where->second; in addRecord()
|
| /llvm-project-15.0.7/third-party/benchmark/docs/ |
| H A D | tools.md | 32 Where `<benchmark_baseline>` and `<benchmark_contender>` either specify a benchmark executable file… 95 Where `<benchmark>` either specify a benchmark executable file, or a JSON output file. The type of … 97 Where `<filter_baseline>` and `<filter_contender>` are the same regex filters that you would pass t… 146 Where `<benchmark_baseline>` and `<benchmark_contender>` either specify a benchmark executable file… 148 Where `<filter_baseline>` and `<filter_contender>` are the same regex filters that you would pass t…
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | SILoadStoreOptimizer.cpp | 1042 CombineInfo *Where; in checkAndPrepareMerge() local 1050 Where = &CI; in checkAndPrepareMerge() 1058 Where = &Paired; in checkAndPrepareMerge() 1067 return Where; in checkAndPrepareMerge() 2282 if (!Where) { in optimizeInstsWithSameBaseAddr() 2297 NewMI = mergeRead2Pair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr() 2300 NewMI = mergeWrite2Pair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr() 2315 NewMI = mergeImagePair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr() 2329 NewMI = mergeFlatLoadPair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr() 2335 NewMI = mergeFlatStorePair(CI, Paired, Where->I); in optimizeInstsWithSameBaseAddr() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonVectorCombine.cpp | 92 int Length, int Where) const; 660 Instruction *Where = Move.Main.front(); in move() local 665 D->moveBefore(Where); in move() 669 M->moveAfter(Where); in move() 670 Where = M; in move() 679 M->moveBefore(Where); in move() 680 Where = M; in move() 1014 int Start, int Length, int Where) const in insertb() 1020 assert(0 <= Where && Where + Length <= DstLen); in insertb() 1032 (Where <= i && i < Where + Length) ? P2Len + Start + (i - Where) : i; in insertb()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/IPO/ |
| H A D | GlobalDCE.cpp | 113 auto Where = ConstantDependenciesCache.find(CE); in ComputeDependencies() local 114 if (Where != ConstantDependenciesCache.end()) { in ComputeDependencies() 115 auto const &K = Where->second; in ComputeDependencies()
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | construct-seq.test | 11 - Uranus # Where the sun hardly shines.
|
| /llvm-project-15.0.7/llvm/utils/gn/build/ |
| H A D | symlink_or_copy.gni | 4 # output: Where to create the symlink.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | loop_exit_with_xor.ll | 3 ; Where the mask of lanes wanting to exit the loop on this iteration is not 35 ; Where the mask of lanes wanting to exit the loop on this iteration is
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | AMDGPUInstructionNotation.rst | 59 Where: 135 Where *name* is a link to a description of the *modifier*.
|
| /llvm-project-15.0.7/clang/include/clang/Rewrite/Core/ |
| H A D | TokenRewriter.h | 75 TokenRefTy AddToken(const Token &T, TokenRefTy Where);
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachineBasicBlock.h | 982 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { 984 if (Where != From) 985 splice(Where, Other, From, std::next(From)); 993 void splice(iterator Where, MachineBasicBlock *Other, 995 Insts.splice(Where.getInstrIterator(), Other->Insts,
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | ValueMap.h | 126 auto Where = MDMap->find(MD); in getMappedMD() local 127 if (Where == MDMap->end()) in getMappedMD() 129 return Where->second.get(); in getMappedMD()
|