/external/clang/lib/Tooling/ |
FileMatchTrie.cpp | 37 /// child nodes. The trie starts with an empty root node. 45 /// 'p'starts at the root node and does the following: 165 : Root(new FileMatchTrieNode), Comparator(new DefaultPathComparator()) {} 168 : Root(new FileMatchTrieNode), Comparator(Comparator) {} 171 delete Root; 175 Root->insert(NewPath); 185 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
|
/external/llvm/lib/Target/WebAssembly/ |
Relooper.cpp | 74 Shape *Root; 186 : Root(nullptr), MinSize(false), BlockIdCounter(1), 213 void FindLive(Block *Root) { 215 ToInvestigate.push_back(Root); 728 Root = Analyzer(this).Process(AllBlocks, Entries, nullptr); 729 assert(Root); 775 void FindNaturals(Shape *Root, Shape *Otherwise = nullptr) { 776 if (Root->Next) { 777 Root->Natural = Root->Next [all...] |
/frameworks/base/packages/DocumentsUI/perf-tests/src/com/android/documentsui/ |
StressProvider.java | 30 import android.provider.DocumentsContract.Root; 51 // Empty root. 54 // Root with thousands of directories. 57 // Root with hundreds of files. 71 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID, 72 Root.COLUMN_AVAILABLE_BYTES 81 // Map from a root document id to children document ids [all...] |
/external/clang/lib/Rewrite/ |
DeltaTree.cpp | 65 /// WidthFactor-1 K/V pairs (except the root) and may have at most 383 static DeltaTreeNode *getRoot(void *Root) { 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) [all...] |
RewriteRope.cpp | 79 /// the root, which may have less) and may have at most 2*WidthFactor 716 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), RHS) [all...] |
/frameworks/base/tools/preload/ |
WritePreloadedClassFile.java | 49 Root root = Root.fromFile(rootFile); local 52 for (LoadedClass loadedClass : root.loadedClasses.values()) { 80 for (LoadedClass loadedClass : root.loadedClasses.values()) { 98 for (Proc proc : root.processes.values()) { 118 addAllClassesFrom("zygote", root, toPreload); 130 root.toFile(rootFile); 133 private static void addAllClassesFrom(String processName, Root root, [all...] |
Root.java | 36 * Root of our data model. 38 public class Root implements Serializable { 149 * Reads Root from a file. 151 static Root fromFile(String fileName) 157 Root root = (Root) oin.readObject(); local 161 return root;
|
PrintCsv.java | 40 Root root = Root.fromFile(args[0]); local 46 for (LoadedClass loadedClass : root.loadedClasses.values()) {
|
/development/samples/Vault/src/com/example/android/vault/ |
VaultProvider.java | 36 import android.provider.DocumentsContract.Root; 97 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE, 98 Root.COLUMN_DOCUMENT_ID, Root.COLUMN_AVAILABLE_BYTES, Root.COLUMN_SUMMARY 140 // Load secret key and ensure our root document is ready. 207 row.add(Root.COLUMN_ROOT_ID, DEFAULT_ROOT_ID) [all...] |
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
ExternalStorageProvider.java | 42 import android.provider.DocumentsContract.Root; 75 // docId format: root:path/to/file 78 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE, 79 Root.COLUMN_DOCUMENT_ID, Root.COLUMN_AVAILABLE_BYTES, 181 final RootInfo root = new RootInfo(); local 182 mRoots.put(rootId, root); 226 final RootInfo root = new RootInfo(); local 326 RootInfo root; local [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaDocumentsProvider.java | 36 import android.provider.DocumentsContract.Root; 69 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, 70 Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID, Root.COLUMN_MIME_TYPES 122 * refresh to clear a previously reported {@link Root#FLAG_EMPTY}. 238 // single root 259 // single root [all...] |
/external/llvm/lib/CodeGen/ |
MachineCombiner.cpp | 68 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot, 71 improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root, 175 /// \param Root is a machine instruction that could be replaced by NewRoot. 182 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, 201 if (UseMO && BlockTrace.isDepInTrace(Root, UseMO)) { 234 /// The DAGCombine code sequence ends in MI (Machine Instruction) Root. 240 MachineBasicBlock *MBB, MachineInstr *Root, 251 // Get depth and latency of NewRoot and Root. 253 unsigned RootDepth = BlockTrace.getInstrCycles(Root).Depth; 255 DEBUG(dbgs() << "DEPENDENCE DATA FOR " << Root << "\n" [all...] |
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/ |
MtpDatabase.java | 38 import android.provider.DocumentsContract.Root; 64 * documents to the database. (All explanations are same for root documents) 112 * @param columnNames Column names defined in {@link android.provider.DocumentsContract.Root}. 169 storageCursor.getColumnIndex(Root.COLUMN_CAPACITY_BYTES); 171 storageCursor.getColumnIndex(Root.COLUMN_AVAILABLE_BYTES); 182 values.put(Root.COLUMN_CAPACITY_BYTES, capacityBytes); 183 values.put(Root.COLUMN_AVAILABLE_BYTES, availableBytes); 185 values.putNull(Root.COLUMN_CAPACITY_BYTES); 186 values.putNull(Root.COLUMN_AVAILABLE_BYTES); 188 if (storageCursor.getCount() == 1 && values.containsKey(Root.COLUMN_TITLE)) [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadStorageProvider.java | 36 import android.provider.DocumentsContract.Root; 58 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, 59 Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID, 101 row.add(Root.COLUMN_ROOT_ID, DOC_ID_ROOT); 102 row.add(Root.COLUMN_FLAGS, 103 Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_RECENTS | Root.FLAG_SUPPORTS_CREATE) [all...] |
/external/clang/include/clang/Rewrite/Core/ |
RewriteRope.h | 138 void /*RopePieceBTreeNode*/ *Root; 146 iterator begin() const { return iterator(Root); }
|
/system/core/libmemunreachable/ |
HeapWalker.h | 66 void Root(uintptr_t begin, uintptr_t end); 67 void Root(const allocator::vector<uintptr_t>& vals); 88 void RecurseRoot(const Range& root);
|
/prebuilts/android-emulator/darwin-x86_64/lib/ |
ca-bundle.pem | 2 ## Bundle of CA Root Certificates 7 ## (CA). These were automatically extracted from Mozilla's root certificates 41 GlobalSign Root CA 62 GlobalSign Root CA - R2 156 Baltimore CyberTrust Root 177 AddTrust Low-Value Services Root 201 AddTrust External Root 225 AddTrust Public Services Root 249 AddTrust Qualified Certificates Root 273 Entrust Root Certification Authorit [all...] |
/prebuilts/android-emulator/linux-x86_64/lib/ |
ca-bundle.pem | 2 ## Bundle of CA Root Certificates 7 ## (CA). These were automatically extracted from Mozilla's root certificates 41 GlobalSign Root CA 62 GlobalSign Root CA - R2 156 Baltimore CyberTrust Root 177 AddTrust Low-Value Services Root 201 AddTrust External Root 225 AddTrust Public Services Root 249 AddTrust Qualified Certificates Root 273 Entrust Root Certification Authorit [all...] |
/prebuilts/android-emulator/windows/lib/ |
ca-bundle.pem | 2 ## Bundle of CA Root Certificates 7 ## (CA). These were automatically extracted from Mozilla's root certificates 41 GlobalSign Root CA 62 GlobalSign Root CA - R2 156 Baltimore CyberTrust Root 177 AddTrust Low-Value Services Root 201 AddTrust External Root 225 AddTrust Public Services Root 249 AddTrust Qualified Certificates Root 273 Entrust Root Certification Authorit [all...] |
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/ |
lxmletree.py | 21 class Root(object): 30 root = et.getroot() 31 node = root 66 class FragmentRoot(Root): 121 tree = Root(tree) 133 elif isinstance(node, Root):
|
/external/clang/lib/Analysis/ |
CallGraph.cpp | 104 Root = getOrInsertNode(nullptr); 133 // Allocate a new node, mark it as root, and process it's calls. 157 // Make Root node a parent of all functions to make sure all are reachable. 159 Root->addCallee(Node, this); 174 if (N == Root) 175 OS << "< root >"; 182 assert(*CI != Root && "No one can call the root node."); 219 return "< root >";
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
LLVMConventionsChecker.cpp | 218 const CXXRecordDecl *Root; 223 ASTFieldVisitor(const CXXRecordDecl *root, BugReporter &br, 225 : Root(root), BR(br), Checker(checker) {} 264 os << "AST class '" << Root->getName() << "' has a field '" 289 BR.EmitBasicReport(Root, Checker, "AST node allocates heap memory",
|
/external/llvm/lib/IR/ |
MDBuilder.cpp | 83 // To ensure uniqueness the root node is self-referential. 91 MDNode *Root = MDNode::get(Context, Args); 95 // !1 = metadata !{metadata !0} <- root 96 // Replace the dummy operand with the root node itself and delete the dummy. 97 Root->replaceOperandWith(0, Root); 100 // !1 = metadata !{metadata !1} <- self-referential root 101 return Root; 108 /// \brief Return metadata for a non-root TBAA node with the given name,
|
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/ |
StubProvider.java | 34 import android.provider.DocumentsContract.Root; 64 public static final String EXTRA_ROOT = "com.android.documentsui.stubprovider.ROOT"; 79 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_TITLE, Root.COLUMN_DOCUMENT_ID, 80 Root.COLUMN_AVAILABLE_BYTES 123 // Make a subdir in the cache dir for each root. 126 Log.i(TAG, "Created new root directory @ " + file.getPath()); 155 row.add(Root.COLUMN_ROOT_ID, id) 628 RootInfo root = mRoots.get(rootId); local 678 StubDocument root = mRoots.get(rootId).document; local 695 StubDocument root = mRoots.get(rootId).document; local [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
RootsCache.java | 38 import android.provider.DocumentsContract.Root; 95 // Special root for recents 98 flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_IS_CHILD 99 | Root.FLAG_SUPPORTS_CREATE; 131 // Nothing else about the root should ever change. 136 assert(mRecentsRoot.flags == (Root.FLAG_LOCAL_ONLY 137 | Root.FLAG_SUPPORTS_IS_CHILD 138 | Root.FLAG_SUPPORTS_CREATE)); 327 final RootInfo root = RootInfo.fromRootsCursor(authority, cursor) local 354 RootInfo root = getRootLocked(authority, rootId); local [all...] |