Searched refs:Root (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DImmutableMap.h72 TreeTy* Root; member in class:llvm::ImmutableMap
79 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
80 if (Root) { Root->retain(); }
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
83 if (Root) { Root->retain(); }
86 if (Root != X.Root) {
284 TreeTy *Root; member in class:llvm::ImmutableMapRef
[all...]
H A DImmutableSet.h660 inline ImutAVLTreeGenericIterator(const TreeTy* Root) { argument
661 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
770 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { argument
771 if (Root) operator++(); // Advance to first element.
950 TreeTy *Root; member in class:llvm::ImmutableSet
957 explicit ImmutableSet(TreeTy* R) : Root(R) {
958 if (Root) { Root
1127 TreeTy *Root; member in class:llvm::ImmutableSetRef
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp32 Record Root; member in class:__anon3529::ClangASTNodesEmitter
47 if (&R == &Root && !BaseSuffix.empty())
58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S)
97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "("
124 if (Base == &Root)
125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE(";
127 OS << macroName(Root.getName()) << "_RANGE(";
139 OS << "#ifndef ABSTRACT_" << macroName(Root.getName()) << "\n";
140 OS << "# define ABSTRACT_" << macroName(Root.getName()) << "(Type) Type\n";
143 OS << "#ifndef " << macroName(Root
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
H A DDeltaTree.h29 void *Root; // "DeltaTreeNode *" member in class:clang::DeltaTree
H A DRewriteRope.h156 void /*RopePieceBTreeNode*/ *Root; member in class:clang::RopePieceBTree
164 iterator begin() const { return iterator(Root); }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Rewrite/Core/
H A DRewriteRope.cpp716 Root = new RopePieceBTreeLeaf();
720 Root = new RopePieceBTreeLeaf();
723 getRoot(Root)->Destroy();
727 return getRoot(Root)->size();
731 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root)))
734 getRoot(Root)->Destroy();
735 Root = new RopePieceBTreeLeaf();
741 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset))
742 Root = new RopePieceBTreeInterior(getRoot(Root), RH
[all...]
H A DDeltaTree.cpp383 static DeltaTreeNode *getRoot(void *Root) { argument
384 return (DeltaTreeNode*)Root;
388 Root = new DeltaTreeNode();
392 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 &&
394 Root = new DeltaTreeNode();
398 getRoot(Root)->Destroy();
405 const DeltaTreeNode *Node = getRoot(Root);
453 DeltaTreeNode *MyRoot = getRoot(Root);
457 Root = MyRoot = new DeltaTreeInteriorNode(InsertRes);
/freebsd-9.3-release/contrib/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp20 : ModulePass(ID), Root(0), ExternalCallingNode(0), CallsExternalNode(0) {
33 if (Root) // Found multiple external mains? Don't pick one.
34 Root = ExternalCallingNode;
36 Root = Node; // Found a main, keep track of it!
75 Root = 0;
82 if (Root == 0)
83 Root = ExternalCallingNode;
118 OS << "CallGraph Root is: ";
119 if (Function *F = Root->getFunction())
122 OS << "<<null function: 0x" << Root << ">>\ local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DFileMatchTrie.h81 FileMatchTrieNode *Root; member in class:clang::tooling::FileMatchTrie
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DFileMatchTrie.cpp161 : Root(new FileMatchTrieNode), Comparator(new DefaultPathComparator()) {}
164 : Root(new FileMatchTrieNode), Comparator(Comparator) {}
167 delete Root;
171 Root->insert(NewPath);
181 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
H A DJSONCompilationDatabase.cpp237 llvm::yaml::Node *Root = I->getRoot(); local
238 if (Root == NULL) {
242 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root);
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DMDBuilder.h105 MDNode *Root = MDNode::get(Context, Dummy); local
110 Root->replaceOperandWith(0, Root);
114 return Root;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCallGraph.cpp105 Root = getOrInsertNode(0);
166 // Make Root node a parent of all functions to make sure all are reachable.
168 Root->addCallee(Node, this);
183 if (N == Root)
191 assert(*CI != Root && "No one can call the root node.");
/freebsd-9.3-release/sys/contrib/dev/acpica/debugger/
H A Ddbutils.c62 ACPI_PARSE_OBJECT *Root);
409 * PARAMETERS: Root - Root of the parse tree
420 ACPI_PARSE_OBJECT *Root)
422 ACPI_PARSE_OBJECT *Op = Root;
492 Op = AcpiPsGetDepthNext (Root, Op);
419 AcpiDbSecondPassParse( ACPI_PARSE_OBJECT *Root) argument
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DDominatorInternals.h231 typename GraphT::NodeType* Root = DT.Vertex[1];
234 DT.IDoms[V] = Root;
252 typename GraphT::NodeType* Root = !MultipleRoots ? DT.Roots[0] : 0;
254 DT.DomTreeNodes[Root] = DT.RootNode =
255 new DomTreeNodeBase<typename GraphT::NodeType>(Root, 0);
H A DCallGraph.h78 // Root is root of the call graph, or the external node if a 'main' function
81 CallGraphNode *Root; member in class:llvm::CallGraph
139 CallGraphNode *getRoot() { return Root; }
140 const CallGraphNode *getRoot() const { return Root; }
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DIntervalMap.cpp19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) { argument
21 path.front() = Entry(Root, Size, Offsets.first);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp36 MDHelper(VMContext), Root(0), Char(0) {
47 if (!Root)
48 Root = MDHelper.createTBAARoot("Simple C/C++ TBAA");
50 return Root;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp217 const CXXRecordDecl *Root; member in class:__anon3429::ASTFieldVisitor
221 : Root(root), BR(br) {}
261 os << "AST class '" << Root->getName() << "' has a field '"
287 BR.EmitBasicReport(Root, "AST node allocates heap memory", "LLVM Conventions",
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h94 /// operand node N of U during instruction selection that starts at Root.
95 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
98 /// U can be folded during instruction selection that starts at Root.
101 static bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
227 virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N, argument
/freebsd-9.3-release/contrib/cvs/contrib/
H A Drcs2log.sh269 test ! -f CVS/Root || CVSROOT=`cat <CVS/Root` || exit
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DYAMLParser.h475 /// @brief Root for parsing a node. Returns a single node.
486 if (Root)
487 return Root;
488 return Root = parseBlockNode();
508 Node *Root; member in class:llvm::yaml::Document
/freebsd-9.3-release/sys/contrib/dev/acpica/include/
H A Dacdebug.h373 ACPI_PARSE_OBJECT *Root,
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCallGraph.h43 CallGraphNode *Root; member in class:clang::CallGraph
81 CallGraphNode *getRoot() const { return Root; }
/freebsd-9.3-release/sys/contrib/dev/acpica/common/
H A Dadisasm.c91 ACPI_PARSE_OBJECT *Root);
701 * PARAMETERS: Op - Root Op of the deferred opcode
827 * PARAMETERS: Root - Root of the parse tree
837 ACPI_PARSE_OBJECT *Root)
839 ACPI_PARSE_OBJECT *Op = Root;
852 Op = AcpiPsGetDepthNext (Root, Op);
889 Op = AcpiPsGetDepthNext (Root, Op);
836 AdParseDeferredOps( ACPI_PARSE_OBJECT *Root) argument

Completed in 170 milliseconds

123