| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
| H A D | Tree.h | 70 class Tree; variable 116 const Tree *getParent() const { return Parent; } in getParent() 117 Tree *getParent() { return Parent; } in getParent() 137 friend class Tree; 147 Tree *Parent; 169 class Tree : public Node { 237 return const_cast<Node *>(const_cast<const Tree *>(this)->findChild(R)); in findChild() 275 inline bool operator==(const Tree::ConstChildIterator &A, 276 const Tree::ConstChildIterator &B) { 284 class List : public Tree { [all …]
|
| H A D | Nodes.h | 132 class UnqualifiedId final : public Tree { 134 UnqualifiedId() : Tree(NodeKind::UnqualifiedId) {} in UnqualifiedId() 214 class Statement : public Tree { 216 Statement(NodeKind K) : Tree(K) {} in Statement() 359 class Declaration : public Tree { 361 Declaration(NodeKind K) : Tree(K) {} in Declaration() 491 class Declarator : public Tree { 493 Declarator(NodeKind K) : Tree(K) {} in Declarator() 520 class ArraySubscript final : public Tree { 532 class TrailingReturnType final : public Tree { [all …]
|
| H A D | Nodes.td | 1 //===- Nodes.td - Node types in the Syntax Tree grammar -------------------===// 26 def UnqualifiedId : External<Tree> {} 29 def List : External<Tree> {} 42 def UnaryOperatorExpression : External<Tree> {} 221 def Statement : External<Tree> {} 239 def Declaration : External<Tree> {} 254 def Declarator : External<Tree> {} 258 def ArraySubscript : External<Tree> {} 259 def TrailingReturnType : External<Tree> {} 260 def ParametersAndQualifiers : External<Tree> {} [all …]
|
| H A D | Syntax.td | 53 def Tree : External<Node> {} 60 class Alternatives<NodeType base_ = Tree> : NodeType { let base = base_; } 64 class Unconstrained<NodeType base_ = Tree> : NodeType { let base = base_; } 79 class Sequence<NodeType base_ = Tree> : NodeType {
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ |
| H A D | ASTDiff.cpp | 73 if (&*Tree == &T1) in getMapped() 193 SyntaxTree::Impl &Tree; member 195 PreorderVisitor(SyntaxTree::Impl &Tree) : Tree(Tree) {} in PreorderVisitor() 199 Tree.Nodes.emplace_back(); in PreTraverse() 489 const SyntaxTree::Impl &Tree; member in clang::diff::Subtree 498 Subtree(const SyntaxTree::Impl &Tree, NodeId SubtreeRoot) : Tree(Tree) { in Subtree() argument 710 const SyntaxTree::Impl &Tree; member 711 HeightLess(const SyntaxTree::Impl &Tree) : Tree(Tree) {} in HeightLess() 713 return Tree.getNode(Id1).Height < Tree.getNode(Id2).Height; in operator ()() 721 const SyntaxTree::Impl &Tree; member in clang::diff::__anonc66ce18a0611::PriorityList [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTDiagnostic.cpp | 920 DiffTree Tree; member in __anon1ae89fb20111::TemplateDiff 1325 Tree.AddNode(); in DiffTemplate() 1355 Tree.Up(); in DiffTemplate() 1474 PrintTypeNames(FromType, ToType, Tree.FromDefault(), Tree.ToDefault(), in TreeToString() 1481 PrintExpr(FromExpr, ToExpr, Tree.FromDefault(), Tree.ToDefault(), in TreeToString() 1489 Tree.ToDefault(), Tree.NodeIsSame()); in TreeToString() 1501 Tree.ToDefault(), Tree.NodeIsSame()); in TreeToString() 1514 Tree.FromDefault(), Tree.ToDefault(), Tree.NodeIsSame()); in TreeToString() 1596 Tree.Parent(); in TreeToString() 2067 Tree.StartTraverse(); in Emit() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | Tree.cpp | 21 if (auto *T = dyn_cast<syntax::Tree>(N)) { in traverse() 70 void syntax::Tree::appendChildLowLevel(Node *Child, NodeRole Role) { in appendChildLowLevel() 78 void syntax::Tree::appendChildLowLevel(Node *Child) { in appendChildLowLevel() 102 void syntax::Tree::prependChildLowLevel(Node *Child) { in prependChildLowLevel() 225 const auto *T = cast<syntax::Tree>(N); in dumpNode() 276 const auto *T = dyn_cast<Tree>(this); in assertInvariants() 312 const syntax::Leaf *syntax::Tree::findFirstLeaf() const { in findFirstLeaf() 316 if (const auto *L = cast<syntax::Tree>(C).findFirstLeaf()) in findFirstLeaf() 322 const syntax::Leaf *syntax::Tree::findLastLeaf() const { in findLastLeaf() 326 if (const auto *L = cast<syntax::Tree>(C)->findLastLeaf()) in findLastLeaf() [all …]
|
| H A D | ComputeReplacements.cpp | 19 void enumerateTokenSpans(const syntax::Tree *Root, ProcessTokensFn Callback) { in enumerateTokenSpans() 25 void run(const syntax::Tree *Root) { in enumerateTokenSpans() 34 if (auto *T = dyn_cast<syntax::Tree>(N)) { in enumerateTokenSpans()
|
| H A D | Synthesis.cpp | 20 static void prependChildLowLevel(syntax::Tree *T, syntax::Node *Child, in prependChildLowLevel() 24 static void appendChildLowLevel(syntax::Tree *T, syntax::Node *Child, in appendChildLowLevel() 63 syntax::Tree *allocateTree(syntax::Arena &A, syntax::NodeKind Kind) { in allocateTree() 197 syntax::Tree *clang::syntax::createTree( in createTree() 218 const auto *T = cast<syntax::Tree>(N); in deepCopyExpandingMacros()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | GICombinerEmitter.cpp | 72 const GIMatchTree &Tree; member in __anon5fed5ee80111::format_partition_name 76 format_partition_name(const GIMatchTree &Tree, unsigned Idx) in format_partition_name() argument 77 : Tree(Tree), Idx(Idx) {} in format_partition_name() 79 Tree.getPartitioner()->emitPartitionName(OS, Idx); in print() 723 if (Tree.getPartitioner() != nullptr) { in generateCodeForTree() 725 for (const auto &EnumChildren : enumerate(Tree.children())) { in generateCodeForTree() 735 for (const auto &Leaf : Tree.possible_leaves()) { in generateCodeForTree() 860 std::unique_ptr<GIMatchTree> Tree; in run() local 875 Tree = TreeBuilder.run(); in run() 878 Tree->writeDOTGraph(outs()); in run() [all …]
|
| /freebsd-13.1/usr.sbin/bsnmpd/modules/snmp_bridge/ |
| H A D | RSTP-MIB.txt | 22 -- MIB for IEEE 802.1w Rapid Spanning Tree Protocol 42 that support the Rapid Spanning Tree Protocol defined 75 "The version of Spanning Tree Protocol the bridge is 77 indicates the Spanning Tree Protocol specified in 79 Spanning Tree Protocol specified in IEEE 802.1w and 118 "A table that contains port-specific Rapid Spanning Tree 127 "A list of Rapid Spanning Tree information maintained by 292 "Rapid Spanning Tree information for the bridge." 306 "Rapid Spanning Tree information for individual ports." 317 Spanning Tree Protocol (RSTP) bridging services."
|
| H A D | BRIDGE-MIB.txt | 80 Spanning Tree Protocol (RSTP)." 97 "The Bridge-Identifier, as used in the Spanning Tree 112 values of timers used by the Spanning Tree Protocol. 193 which is used in the Spanning Tree Protocol." 403 tree, as determined by the Spanning Tree Protocol, 551 -- The Spanning Tree Port Table 560 for the Spanning Tree Protocol." 569 the Spanning Tree Protocol state for that port." 1141 -- Notifications for the Spanning Tree Protocol 1369 that support the Spanning Tree Protocol." [all …]
|
| H A D | BEGEMOT-BRIDGE-MIB.txt | 312 "A list of information about the Spanning Tree Protocol 345 "The Spanning Tree Protocol version being run on the 388 calculated by the Spanning Tree Protocol." 416 "The maximum age of Spanning Tree Protocol information 504 "The version of Spanning Tree Protocol the bridge is 506 indicates the Spanning Tree Protocol specified in 508 Spanning Tree Protocol specified in IEEE 802.1w and 549 "A list of Spanning Tree Protocol information about 574 Tree Protocol information." 600 of the Spanning Tree Protocol. If the Spanning Tree Protocol [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangASTNodesEmitter.cpp | 41 ChildMap Tree; member in __anon955178b90111::ClangASTNodesEmitter 91 ChildIterator i = Tree.lower_bound(Base), e = Tree.upper_bound(Base); in EmitNode() 155 Tree.insert(std::make_pair(B, R)); in deriveChildTree()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | mvebu-sdram-controller.txt | 1 Device Tree bindings for MVEBU SDRAM controllers 7 For now, this Device Tree binding documentation only documents the
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/sound/ |
| H A D | armada-370db-audio.txt | 1 Device Tree bindings for the Armada 370 DB audio 4 These Device Tree bindings are used to describe the audio complex
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/fpga/ |
| H A D | fpga-region.txt | 1 FPGA Region Device Tree Binding 11 - Device Tree Examples 19 the Device Tree. FPGA Regions provide a way to program FPGAs under device tree 114 4. The Device Tree overlay is accepted into the live tree. 136 An FPGA Region that exists in the live Device Tree reflects the current state. 311 Device Tree Examples 336 The Device Tree Overlay will contain: 351 Device Tree Example: Full Reconfiguration without Bridges 354 Live Device Tree contains: 396 Device Tree Example: Full Reconfiguration to add PRR's [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | armada-xp-db-xc3-24g4xg.dts | 3 * Device Tree file for DB-XC3-24G4XG board 9 * Note: this Device Tree assumes that the bootloader has remapped the 16 * solution) or the below Device Tree should be adjusted.
|
| H A D | armada-xp-db-dxbc2.dts | 3 * Device Tree file for DB-DXBC2 board 9 * Note: this Device Tree assumes that the bootloader has remapped the 16 * solution) or the below Device Tree should be adjusted.
|
| H A D | armada-370-rd.dts | 3 * Device Tree file for Marvell Armada 370 Reference Design board 10 * Note: this Device Tree assumes that the bootloader has remapped the 17 * solution) or the below Device Tree should be adjusted.
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/arm/marvell/ |
| H A D | armada-37xx.txt | 1 Marvell Armada 37xx Platforms Device Tree Bindings 53 CZ.NIC's Turris Mox SOHO router Device Tree Bindings
|
| /freebsd-13.1/sys/contrib/device-tree/src/powerpc/fsl/ |
| H A D | gef_sbc610.dts | 3 * GE SBC610 Device Tree Source 7 * Based on: SBS CM6 Device Tree Source 9 * And: mpc8641_hpcn.dts (MPC8641 HPCN Device Tree Source)
|
| H A D | gef_ppc9a.dts | 3 * GE PPC9A Device Tree Source 7 * Based on: SBS CM6 Device Tree Source 9 * And: mpc8641_hpcn.dts (MPC8641 HPCN Device Tree Source)
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ImmutableMap.h | 195 explicit iterator(TreeTy *Tree) : iterator::ImutAVLValueIterator(Tree) {} in iterator() argument 325 explicit iterator(TreeTy *Tree) : iterator::ImutAVLValueIterator(Tree) {} in iterator() argument
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/input/ |
| H A D | st-keyscan.txt | 1 * ST Keyscan controller Device Tree bindings 3 The ST keyscan controller Device Tree binding is based on the
|