| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | unused-raii.rst | 23 - Ignore code expanded from macros. Testing frameworks make heavy use of this. 25 - Ignore types with trivial destructors. They are very unlikely to be RAII 28 - Ignore objects at the end of a compound statement (doesn't change behavior). 30 - Ignore objects returned from a call.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-cov/ |
| H A D | ignore-filename-regex.test | 4 # Ignore all header files. 15 # Ignore all files from "extra" directory. 27 # Ignore all files from "extra" directory even when SOURCES specified. 43 # Ignore all ".cc" files. 58 # Use a temp .json file as output in a single line. Ignore headers that have
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndexUSRs.cpp | 54 bool Ignore = cxcursor::getDeclCursorUSR(D, buf->Data); in clang_getCursorUSR() local 55 if (Ignore) { in clang_getCursorUSR() 75 bool Ignore = generateUSRForMacro(cxcursor::getCursorMacroDefinition(C), in clang_getCursorUSR() local 78 if (Ignore) { in clang_getCursorUSR()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ReachingDefAnalysis.cpp | 607 SmallPtrSet<MachineInstr*, 1> Ignore; in isSafeToRemove() local 609 return isSafeToRemove(MI, Visited, ToRemove, Ignore); in isSafeToRemove() 614 InstSet &Ignore) const { in isSafeToRemove() 616 return isSafeToRemove(MI, Visited, ToRemove, Ignore); in isSafeToRemove() 622 if (Visited.count(MI) || Ignore.count(MI)) in isSafeToRemove() 639 if (Ignore.count(I) || ToRemove.count(I)) in isSafeToRemove() 641 if (!isSafeToRemove(I, Visited, ToRemove, Ignore)) in isSafeToRemove() 683 SmallPtrSet<MachineInstr*, 1> Ignore; in isSafeToDefRegAt() local 684 return isSafeToDefRegAt(MI, PhysReg, Ignore); in isSafeToDefRegAt() 694 if (!llvm::set_is_subset(Uses, Ignore)) in isSafeToDefRegAt() [all …]
|
| /llvm-project-15.0.7/utils/bazel/llvm-project-overlay/ |
| H A D | .bazelignore | 1 # Ignore the utils/bazel directory when this is overlayed onto the repo root. 3 # Ignore third-party projects. These should be configured separately and some
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | NameMatchesTest.cpp | 14 TEST(NameMatchesTest, Ignore) { in TEST() argument 15 EXPECT_TRUE(NameMatches("foo", NameMatch::Ignore, "bar")); in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | ReachingDefAnalysis.h | 230 InstSet &Ignore) const; 240 InstSet &Ignore) const; 267 InstSet &ToRemove, InstSet &Ignore) const;
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | UninitializedValues.cpp | 272 Ignore enumerator 305 return Ignore; in get() 389 classify(BO->getLHS(), Ignore); in VisitBinaryOperator() 435 classify((*I), isTrivialBody ? Ignore : ConstRefUse); in VisitCallExpr() 441 classify(Ex, Ignore); in VisitCallExpr() 454 classify(CSE->getSubExpr(), Ignore); in VisitCastExpr() 747 case ClassifyRefs::Ignore: in VisitDeclRefExpr()
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/ARM/ |
| H A D | suppressions.txt | 1 # Ignore leaks in CoreFoundation.
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/X86/ |
| H A D | suppressions.txt | 1 # Ignore leaks in CoreFoundation.
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/MCParser/ |
| H A D | AsmCond.h | 32 bool Ignore = false; variable
|
| /llvm-project-15.0.7/libcxx/lib/abi/ |
| H A D | CMakeLists.txt | 14 # Ignore the major, minor, and patchlevel versions of darwin targets. 17 # Ignore the major and minor versions of freebsd targets.
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | NameMatches.h | 16 Ignore, enumerator
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFProperties.td | 7 Desc<"Ignore indexes present in the object files and always index DWARF manually.">;
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | NameMatches.cpp | 18 case NameMatch::Ignore: in NameMatches()
|
| H A D | ProcessInfo.cpp | 252 if (m_name_match_type == NameMatch::Ignore) in NameMatches() 300 if (m_name_match_type != NameMatch::Ignore) in MatchAllProcesses() 332 m_name_match_type = NameMatch::Ignore; in Clear()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Symbolize/ELF/ |
| H A D | symtab-ignored.s | 2 ## Ignore STT_SECTION and STT_TLS symbols for .symtab symbolization.
|
| H A D | riscv-empty-name-symbol.s | 2 ## Ignore empty name symbols.
|
| H A D | aarch64-mapping-symbol.s | 2 ## Ignore AArch64 mapping symbols (with a prefix of $d or $x).
|
| /llvm-project-15.0.7/lld/test/ELF/invalid/ |
| H A D | entsize.yaml | 1 ## Ignore invalid sh_entsize (sh_size%sh_entsize!=0) for non-SHF_MERGE sections.
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMLowOverheadLoops.cpp | 542 InstSet &ToRemove, InstSet &Ignore) { in INITIALIZE_PASS() 586 if (!RDA.isSafeToRemove(MI, Uses, Ignore)) in INITIALIZE_PASS() 769 SmallPtrSet<MachineInstr*, 2> Ignore; in ValidateTailPredicate() local 772 Ignore.insert(VCTPs.begin(), VCTPs.end()); in ValidateTailPredicate() 774 if (TryRemove(Def, RDA, ElementChain, Ignore)) { in ValidateTailPredicate() 807 SmallPtrSet<MachineInstr*, 2> Ignore; in ValidateTailPredicate() local 808 Ignore.insert(VCTPs.begin(), VCTPs.end()); in ValidateTailPredicate() 809 TryRemove(Def, RDA, ToRemove, Ignore); in ValidateTailPredicate() 1443 SmallPtrSet<MachineInstr*, 1> Ignore; in RevertLoopDec() local 1446 Ignore.insert(&*I); in RevertLoopDec() [all …]
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | Config.h | 21 enum class UnresolvedPolicy { ReportError, Warn, Ignore, ImportDynamic }; enumerator
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | Terminal.h | 36 Ignore, enumerator
|
| /llvm-project-15.0.7/libc/test/src/signal/ |
| H A D | sigaction_test.cpp | 59 TEST(LlvmLibcSigaction, Ignore) { in TEST() argument
|
| /llvm-project-15.0.7/lldb/test/API/api/multithreaded/ |
| H A D | driver.cpp.template | 24 // Ignore SIGPIPE. The lldb driver does this as well,
|