Searched defs:Root (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFDFTrailerDictionary_autogen.cpp11 SkPdfDictionary* SkPdfFDFTrailerDictionary::Root(SkPdfNativeDoc* doc) { function in class:SkPdfFDFTrailerDictionary
12 SkPdfNativeObject* ret = get("Root", "");
20 return get("Root", "") != NULL;
H A DSkPdfFileTrailerDictionary_autogen.cpp35 SkPdfDictionary* SkPdfFileTrailerDictionary::Root(SkPdfNativeDoc* doc) { function in class:SkPdfFileTrailerDictionary
36 SkPdfNativeObject* ret = get("Root", "");
44 return get("Root", "") != NULL;
/external/clang/include/clang/Rewrite/Core/
H A DDeltaTree.h29 void *Root; // "DeltaTreeNode *" member in class:clang::DeltaTree
H A DRewriteRope.h162 void /*RopePieceBTreeNode*/ *Root; member in class:clang::RopePieceBTree
170 iterator begin() const { return iterator(Root); }
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFDFTrailerDictionary_autogen.cpp11 SkPdfDictionary* SkPdfFDFTrailerDictionary::Root(SkPdfNativeDoc* doc) { function in class:SkPdfFDFTrailerDictionary
12 SkPdfNativeObject* ret = get("Root", "");
20 return get("Root", "") != NULL;
H A DSkPdfFileTrailerDictionary_autogen.cpp35 SkPdfDictionary* SkPdfFileTrailerDictionary::Root(SkPdfNativeDoc* doc) { function in class:SkPdfFileTrailerDictionary
36 SkPdfNativeObject* ret = get("Root", "");
44 return get("Root", "") != NULL;
/external/clang/include/clang/Tooling/
H A DFileMatchTrie.h81 FileMatchTrieNode *Root; member in class:clang::tooling::FileMatchTrie
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
H A Dp3.cpp6 namespace Root { namespace
12 using namespace Root;
16 using namespace Root;
30 using Root::i;
31 using Root::f;
/external/chromium_org/net/quic/congestion_control/
H A Dcube_root.cc61 uint32 CubeRoot::Root(uint64 a) { function in class:net::CubeRoot
/external/clang/test/CodeGenCXX/
H A Dderived-to-base-conv.cpp46 struct Root { struct
52 struct Base : Root {
/external/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);
/external/chromium_org/build/android/pylib/device/
H A Dadb_wrapper.py377 def Root(self, timeout=_DEFAULT_TIMEOUT, retries=_DEFAULT_RETRIES): member in class:AdbWrapper
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h71 llvm::MDNode *Root; member in class:clang::CodeGen::CodeGenTBAA
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp32 Record Root; member in class:__anon19554::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...]
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp24 : M(M), Root(nullptr), ExternalCallingNode(getOrInsertFunction(nullptr)),
31 if (!Root)
32 Root = ExternalCallingNode;
61 if (Root) // Found multiple external mains? Don't pick one.
62 Root = ExternalCallingNode;
64 Root = Node; // Found a main, keep track of it!
94 OS << "CallGraph Root is: ";
95 if (Function *F = Root->getFunction())
98 OS << "<<null function: 0x" << Root << ">>\n"; local
/external/llvm/lib/IR/
H A DMDBuilder.cpp66 MDNode *Root = MDNode::get(Context, Dummy); local
71 Root->replaceOperandWith(0, Root);
75 return Root;
/external/clang/include/clang/Analysis/
H A DCallGraph.h43 CallGraphNode *Root; member in class:clang::CallGraph
81 CallGraphNode *getRoot() const { return Root; }
/external/clang/lib/Rewrite/Core/
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);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp219 const CXXRecordDecl *Root; member in class:__anon18198::ASTFieldVisitor
226 : Root(root), BR(br), Checker(checker) {}
265 os << "AST class '" << Root->getName() << "' has a field '"
291 BR.EmitBasicReport(Root, Checker, "AST node allocates heap memory",
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp236 llvm::yaml::Node *Root = I->getRoot(); local
237 if (!Root) {
241 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root);
/external/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...]
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h83 /// \brief Root is root of the call graph, or the external node if a 'main'
85 CallGraphNode *Root; member in class:llvm::CallGraph
H A DScalarEvolutionExpressions.h586 void visitAll(const SCEV *Root) { argument
587 push(Root);
629 void visitAll(const SCEV *Root, SV& Visitor) { argument
631 T.visitAll(Root);
/external/llvm/include/llvm/Support/
H A DYAMLParser.h464 /// \brief Root for parsing a node. Returns a single node.
475 if (Root)
476 return Root;
477 return Root = parseBlockNode();
495 Node *Root; member in class:llvm::yaml::Document
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp172 void walk(Value *Root) { argument
184 AddUsesToWorklist(Root);

Completed in 745 milliseconds

12