| /minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | ImmutableMap.h | 72 TreeTy* Root; 79 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap() 80 if (Root) { Root->retain(); } in ImmutableMap() 82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap() 83 if (Root) { Root->retain(); } in ImmutableMap() 86 if (Root != X.Root) { 87 if (X.Root) { X.Root->retain(); } 88 if (Root) { Root->release(); } 89 Root = X.Root; 94 if (Root) { Root->release(); } in ~ImmutableMap() [all …]
|
| H A D | ImmutableSet.h | 660 inline ImutAVLTreeGenericIterator(const TreeTy* Root) { in ImutAVLTreeGenericIterator() argument 661 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root)); in ImutAVLTreeGenericIterator() 765 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { in ImutAVLTreeInOrderIterator() argument 766 if (Root) operator++(); // Advance to first element. in ImutAVLTreeInOrderIterator() 945 TreeTy *Root; 952 explicit ImmutableSet(TreeTy* R) : Root(R) { 953 if (Root) { Root->retain(); } 955 ImmutableSet(const ImmutableSet &X) : Root(X.Root) { 956 if (Root) { Root->retain(); } 959 if (Root != X.Root) { [all …]
|
| /minix3/external/bsd/libc++/dist/libcxxrt/test/ |
| H A D | test_typeinfo.cc | 12 struct Root struct 24 struct Sub1 : public Root argument 34 struct Virt1a : public virtual Root 40 struct Virt2a : public virtual Root 73 Root root; in test_type_info() 76 Root *b = &sub2; in test_type_info() 77 Root *f = &sub2; in test_type_info() 78 Root *s2 = &sub2; in test_type_info() 79 Root *b2 = &root; in test_type_info() 80 Root *v1 = &virt1; in test_type_info() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangASTNodesEmitter.cpp | 32 Record Root; member in __anonfc815db80111::ClangASTNodesEmitter 47 if (&R == &Root && !BaseSuffix.empty()) in baseName() 58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S) in ClangASTNodesEmitter() 97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "(" in EmitNode() 124 if (Base == &Root) in EmitNode() 125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE("; in EmitNode() 127 OS << macroName(Root.getName()) << "_RANGE("; in EmitNode() 139 OS << "#ifndef ABSTRACT_" << macroName(Root.getName()) << "\n"; in run() 140 OS << "# define ABSTRACT_" << macroName(Root.getName()) << "(Type) Type\n"; in run() 143 OS << "#ifndef " << macroName(Root.getName()) << "_RANGE\n"; in run() [all …]
|
| /minix3/external/public-domain/xz/dist/macosx/ |
| H A D | build.sh | 10 mkdir -p Root 41 make DESTDIR=`pwd`/Root install 53 make -C src/xzdec DESTDIR=`pwd`/Root install 55 cp -a ../extra Root/usr/local/share/doc/xz 64 mv Root/usr/local/include liblzma/usr/local 65 mv Root/usr/local/lib liblzma/usr/local 67 mkdir -p Root/usr/local/lib 68 cp -p liblzma/usr/local/lib/liblzma.5.dylib Root/usr/local/lib 70 mv Root/usr/local/share/doc/xz/examples* liblzma/usr/local/share/doc/xz 75 strip -S Root/usr/local/bin/$bin [all …]
|
| /minix3/external/bsd/llvm/dist/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/ |
| H A D | p3.cpp | 6 namespace Root { namespace 12 using namespace Root; 16 using namespace Root; 30 using Root::i; 31 using Root::f;
|
| /minix3/external/bsd/llvm/dist/clang/test/Rewriter/ |
| H A D | objc-modern-class-init.mm | 5 @interface Root @end interface 7 @interface Super : Root 15 @implementation Root @end implementation 17 @interface Root(Cat) @end interface in Cat 21 @implementation Root(Cat) @end implementation in Cat
|
| H A D | objc-modern-class-init-hooks.mm | 5 @interface Root @end interface 7 @interface Super : Root 15 @implementation Root @end implementation 17 @interface Root(Cat) @end interface in Cat 21 @implementation Root(Cat) @end implementation in Cat
|
| H A D | instancetype-test.mm | 8 @interface Root interface 14 @property (assign) Root *selfProp; 29 @interface Subclass1 : Root 35 @interface Subclass2 : Root 42 Root *r1 = [[Root alloc] init];
|
| /minix3/external/bsd/llvm/dist/llvm/test/YAMLParser/ |
| H A D | spec-07-10.data | 3 "Root flow 6 Root block 9 # Root collection:
|
| /minix3/external/bsd/llvm/dist/clang/lib/Rewrite/ |
| H A D | RewriteRope.cpp | 716 Root = new RopePieceBTreeLeaf(); in RopePieceBTree() 720 Root = new RopePieceBTreeLeaf(); in RopePieceBTree() 723 getRoot(Root)->Destroy(); in ~RopePieceBTree() 727 return getRoot(Root)->size(); in size() 731 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear() 734 getRoot(Root)->Destroy(); in clear() 735 Root = new RopePieceBTreeLeaf(); in clear() 741 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() 742 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 745 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() [all …]
|
| H A D | DeltaTree.cpp | 383 static DeltaTreeNode *getRoot(void *Root) { in getRoot() argument 384 return (DeltaTreeNode*)Root; in getRoot() 388 Root = new DeltaTreeNode(); in DeltaTree() 392 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 && in DeltaTree() 394 Root = new DeltaTreeNode(); in DeltaTree() 398 getRoot(Root)->Destroy(); in ~DeltaTree() 405 const DeltaTreeNode *Node = getRoot(Root); in getDeltaAt() 453 DeltaTreeNode *MyRoot = getRoot(Root); in AddDelta() 457 Root = MyRoot = new DeltaTreeInteriorNode(InsertRes); in AddDelta()
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/ |
| H A D | objc2-weak-import-attribute.m | 37 // Root is being implemented here. No extern_weak. 38 __attribute__((weak_import)) @interface Root @end interface 40 @interface Super : Root @end 46 @implementation Root @end implementation
|
| H A D | dot-syntax-1.m | 5 @interface Root interface 12 @interface Top0 : Root 43 @interface Top1 : Root 74 @interface Top2 : Root 105 @interface Top3 : Root 136 @interface Top4 : Root 167 @interface Top5 : Root 198 @interface Top6 : Root 221 @interface Top7 : Root
|
| H A D | attr-exception.m | 5 @interface Root { interface 11 @interface A : Root 21 @interface B : Root
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Analysis/IPA/ |
| H A D | CallGraph.cpp | 24 : M(M), Root(nullptr), ExternalCallingNode(getOrInsertFunction(nullptr)), in CallGraph() 31 if (!Root) in CallGraph() 32 Root = ExternalCallingNode; in CallGraph() 61 if (Root) // Found multiple external mains? Don't pick one. in addToCallGraph() 62 Root = ExternalCallingNode; in addToCallGraph() 64 Root = Node; // Found a main, keep track of it! in addToCallGraph() 95 if (Function *F = Root->getFunction()) in print() 98 OS << "<<null function: 0x" << Root << ">>\n"; in print()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Tooling/ |
| H A D | FileMatchTrie.cpp | 161 : Root(new FileMatchTrieNode), Comparator(new DefaultPathComparator()) {} in FileMatchTrie() 164 : Root(new FileMatchTrieNode), Comparator(Comparator) {} in FileMatchTrie() 167 delete Root; in ~FileMatchTrie() 171 Root->insert(NewPath); in insert() 181 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous); in findEquivalent()
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/ |
| H A D | duplicate-ivar-in-class-extension.m | 3 @interface Root @end interface 5 @interface SuperClass : Root 23 @interface Root () { interface in int
|
| H A D | warn-implicit-self-in-block.m | 4 @interface Root @end interface 6 @interface I : Root
|
| H A D | instancetype.m | 7 @interface Root interface 13 @property (assign) Root *selfProp; 28 @interface Subclass1 : Root // expected-note 4 {{receiver is instance of class declared here}} 34 @interface Subclass2 : Root 41 Root *r1 = [[Root alloc] init]; 130 @interface Subclass4 : Root 178 @interface MyClass : Root 195 @interface A4 : Root <P4> 199 @interface B4 : Root @end
|
| /minix3/external/bsd/tcpdump/dist/tests/ |
| H A D | mstp-v.out | 2 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 11 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 21 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 28 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 37 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 47 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 54 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 63 MSTI 2, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 73 MSTI 1, Flags [Learn, Forward, Agreement, Topology change ACK], port-role Root 80 port-role Root, CIST root-id 0000.00:1f:27:b4:7d:80, CIST ext-pathcost 200000 [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineCombiner.cpp | 67 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot, 70 preservesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root, 182 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, in getLatency() argument 202 if (UseMO && BlockTrace.isDepInTrace(Root, UseMO)) { in getLatency() 223 MachineBasicBlock *MBB, MachineInstr *Root, in preservesCriticalPathLen() argument 234 unsigned NewRootLatency = getLatency(Root, NewRoot, BlockTrace); in preservesCriticalPathLen() 237 unsigned RootDepth = BlockTrace.getInstrCycles(Root).Depth; in preservesCriticalPathLen() 238 unsigned RootLatency = TSchedModel.computeInstrLatency(Root); in preservesCriticalPathLen() 239 unsigned RootSlack = BlockTrace.getInstrSlack(Root); in preservesCriticalPathLen() 241 DEBUG(dbgs() << "DEPENDENCE DATA FOR " << Root << "\n"; in preservesCriticalPathLen()
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/GC/ |
| H A D | lower_gcroot.ll | 6 %Root = alloca %Env 7 call void @llvm.gcroot( %Env* %Root, %Env null )
|
| /minix3/external/bsd/llvm/dist/clang/test/FixIt/ |
| H A D | fixit-missing-self-in-block.m | 6 @interface Root @end interface 8 @interface I : Root
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/ |
| H A D | instancetype.mm | 7 @interface Root interface 13 @property (assign) Root *selfProp; 28 @interface Subclass1 : Root // expected-note 4 {{receiver is instance of class declared here}} 34 @interface Subclass2 : Root 41 Root *r1 = [[Root alloc] init]; 130 @interface Subclass4 : Root 178 @interface MyClass : Root 195 @interface A4 : Root <P4> 199 @interface B4 : Root @end
|