| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/Refactoring/ |
| H A D | RecursiveSymbolVisitor.h | 74 const OffsetOfNode &Component = S->getComponent(I); in VisitOffsetOfExpr() local 75 if (Component.getKind() == OffsetOfNode::Field) { in VisitOffsetOfExpr() 76 if (!visit(Component.getField(), Component.getEndLoc())) in VisitOffsetOfExpr()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-cov/ |
| H A D | CoverageReport.cpp | 131 for (const auto &Component : in getNumRedundantPathComponents() local 135 if (Component.index() >= NumRedundant) in getNumRedundantPathComponents() 140 if (FirstPathComponents[Component.index()] != Component.value()) { in getNumRedundantPathComponents() 141 NumRedundant = Component.index(); in getNumRedundantPathComponents() 159 auto Component = sys::path::begin(Paths[0]); in getRedundantPrefixLen() local 161 auto LastComponent = Component; in getRedundantPrefixLen() 162 ++Component; in getRedundantPrefixLen() 163 PrefixLen += Component - LastComponent; in getRedundantPrefixLen()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
| H A D | template31.C | 8 class Component { 16 vector<Component> strvec;
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Path.cpp | 229 i.Component = find_first_component(path, style); in begin() 246 Position += Component.size(); in operator ++() 250 Component = StringRef(); in operator ++() 256 bool was_net = Component.size() > 2 && is_separator(Component[0], S) && in operator ++() 257 Component[1] == Component[0] && !is_separator(Component[2], S); in operator ++() 264 (is_style_windows(S) && Component.endswith(":"))) { in operator ++() 265 Component = Path.substr(Position, 1); in operator ++() 275 if (Position == Path.size() && Component != "/") { in operator ++() 277 Component = "."; in operator ++() 284 Component = Path.slice(Position, end_pos); in operator ++() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Path.h | 77 StringRef Component; ///< The current component. Not necessarily in Path. variable 86 reference operator*() const { return Component; } 103 StringRef Component; ///< The current component. Not necessarily in Path. variable 111 reference operator*() const { return Component; }
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Sys-Syslog/t/ |
| H A D | facilities-routing.t | 21 if POE::Component::Server::Syslog->VERSION < 1.14; 41 POE::Component::Server::Syslog->spawn(
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/ |
| H A D | MipsLinux.cpp | 122 StringRef Component, in getCompilerRT() argument 140 Path, Twine("libclang_rt." + Component + "-" + "mips" + Suffix)); in getCompilerRT()
|
| H A D | OpenBSD.cpp | 345 std::string OpenBSD::getCompilerRT(const ArgList &Args, StringRef Component, in getCompilerRT() argument 347 if (Component == "builtins") { in getCompilerRT() 354 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/false); in getCompilerRT() 359 return ToolChain::getCompilerRT(Args, Component, Type); in getCompilerRT()
|
| H A D | MipsLinux.h | 41 getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component,
|
| H A D | AVR.h | 36 std::string getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component,
|
| H A D | AVR.cpp | 420 AVRToolChain::getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component, in getCompilerRT() argument 426 File += Component.str(); in getCompilerRT()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | Diagnostic.td | 46 string Component = ""; 79 /// Component is specified by the file with a big let directive. 80 string Component = ?;
|
| H A D | DiagnosticAnalysisKinds.td | 9 let Component = "Analysis" in {
|
| H A D | DiagnosticCrossTUKinds.td | 9 let Component = "CrossTU" in {
|
| H A D | DiagnosticRefactoringKinds.td | 13 let Component = "Refactoring" in {
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | GCNVOPDUtils.cpp | 83 const MachineOperand &Src0 = MI.getOperand(VOPD::Component::SRC0); in checkVOPDRegConstraints() 90 if (!TII.isInlineConstant(MI, VOPD::Component::SRC0)) in checkVOPDRegConstraints()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 1163 const VTableComponent &Component = Components[TI.first]; in ComputeThisAdjustments() local 1167 switch (Component.getKind()) { in ComputeThisAdjustments() 1171 MD = Component.getFunctionDecl(); in ComputeThisAdjustments() 1174 MD = Component.getDestructorDecl(); in ComputeThisAdjustments() 1921 const VTableComponent &Component = Components[I]; in dumpLayout() local 1924 switch (Component.getKind()) { in dumpLayout() 1928 << Component.getVCallOffset().getQuantity() in dumpLayout() 1934 << Component.getVBaseOffset().getQuantity() in dumpLayout() 1940 << Component.getOffsetToTop().getQuantity() in dumpLayout() 1945 Component.getRTTIDecl()->printQualifiedName(Out); in dumpLayout() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUBaseInfo.h | 536 enum Component : unsigned { enum 586 assert(CompSrcIdx < Component::MAX_SRC_NUM); in hasRegSrcOperand() 595 assert(CompSrcIdx < Component::MAX_SRC_NUM); in hasMandatoryLiteralAt() 597 *MandatoryLiteralIdx == Component::DST_NUM + CompSrcIdx; in hasMandatoryLiteralAt() 679 assert(CompSrcIdx < Component::MAX_SRC_NUM); in getIndexOfSrcInMCOperands() 690 assert(CompSrcIdx < Component::MAX_SRC_NUM); in getIndexOfSrcInParsedOperands() 726 using RegIndices = std::array<unsigned, Component::MAX_OPR_NUM>;
|
| H A D | AMDGPUBaseInfo.cpp | 528 assert(OpDesc.getNumDefs() == Component::DST_NUM); in ComponentProps() 530 assert(OpDesc.getOperandConstraint(Component::SRC0, MCOI::TIED_TO) == -1); in ComponentProps() 531 assert(OpDesc.getOperandConstraint(Component::SRC1, MCOI::TIED_TO) == -1); in ComponentProps() 532 auto TiedIdx = OpDesc.getOperandConstraint(Component::SRC2, MCOI::TIED_TO); in ComponentProps() 533 assert(TiedIdx == -1 || TiedIdx == Component::DST); in ComponentProps() 537 assert(SrcOperandsNum <= Component::MAX_SRC_NUM); in ComponentProps() 541 for (CompOprIdx = Component::SRC1; CompOprIdx < OperandsNum; ++CompOprIdx) { in ComponentProps() 550 assert(CompOprIdx < Component::MAX_OPR_NUM); in getIndexInParsedOperands() 552 if (CompOprIdx == Component::DST) in getIndexInParsedOperands() 555 auto CompSrcIdx = CompOprIdx - Component::DST_NUM; in getIndexInParsedOperands() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ |
| H A D | ToolChain.cpp | 504 StringRef Component, in getCompilerRTBasename() argument 506 std::string CRTAbsolutePath = getCompilerRT(Args, Component, Type); in getCompilerRTBasename() 511 StringRef Component, in buildCompilerRTBasename() argument 541 return (Prefix + Twine("clang_rt.") + Component + ArchAndEnv + Suffix).str(); in buildCompilerRTBasename() 544 std::string ToolChain::getCompilerRT(const ArgList &Args, StringRef Component, in getCompilerRT() argument 548 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/false); in getCompilerRT() 559 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/true); in getCompilerRT() 566 StringRef Component, in getCompilerRTArgString() argument 568 return Args.MakeArgString(getCompilerRT(Args, Component, Type)); in getCompilerRTArgString()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | Sarif.cpp | 89 std::for_each(++Iter, End, [&Ret](StringRef Component) { in fileNameToURI() argument 93 if (Component == "\\") in fileNameToURI() 101 for (char C : Component) { in fileNameToURI()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-config/ |
| H A D | llvm-config.cpp | 92 for (const auto &Component : ComponentMap) { in VisitComponent() local 93 errs() << "'" << Component.first() << "' "; in VisitComponent() 683 for (auto &Component : DyLibComponents) { in main() local 684 FullDyLibComponents.insert(Component); in main()
|
| /openbsd-src/gnu/llvm/clang/lib/Index/ |
| H A D | IndexBody.cpp | 452 const OffsetOfNode &Component = S->getComponent(I); in VisitOffsetOfExpr() local 453 if (Component.getKind() == OffsetOfNode::Field) in VisitOffsetOfExpr() 454 IndexCtx.handleReference(Component.getField(), Component.getEndLoc(), in VisitOffsetOfExpr()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Driver/ |
| H A D | ToolChain.h | 207 StringRef Component, 478 StringRef Component, 482 getCompilerRTArgString(const llvm::opt::ArgList &Args, StringRef Component, 486 StringRef Component,
|
| /openbsd-src/gnu/llvm/llvm/lib/ |
| H A D | CMakeLists.txt | 66 # Component post-processing
|