| /src/external/apache2/llvm/dist/llvm/include/llvm/Option/ |
| Option.h | 78 const OptTable *Owner; 81 Option(const OptTable::Info *Info, const OptTable *Owner); 105 assert(Owner && "Must have a valid owner!"); 106 return Owner->getOption(Info->GroupID); 111 assert(Owner && "Must have a valid owner!"); 112 return Owner->getOption(Info->AliasID);
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| BitReader.cpp | 82 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf)); 84 getOwningLazyBitcodeModule(std::move(Owner), Ctx); 87 (void)Owner.release(); 109 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf)); 112 Ctx, getOwningLazyBitcodeModule(std::move(Owner), Ctx)); 113 Owner.release();
|
| /src/external/apache2/llvm/dist/llvm/examples/HowToUseJIT/ |
| HowToUseJIT.cpp | 68 std::unique_ptr<Module> Owner = std::make_unique<Module>("test", Context); 69 Module *M = Owner.get(); 125 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| SymbolTableListTraitsImpl.h | 70 ItemParentClass *Owner = getListOwner(); 71 V->setParent(Owner); 72 invalidateParentIListOrdering(Owner); 74 if (ValueSymbolTable *ST = getSymTab(Owner))
|
| Metadata.cpp | 154 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) { 156 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) && 157 "Reference without owner must be direct"); 159 R->addRef(Ref, Owner); 164 assert(!Owner && "Unexpected callback to owner"); 201 OwnerTy Owner = Pair.second.first; 202 if (!Owner.is<Metadata *>()) 204 Metadata *OwnerMD = Owner.get<Metadata *>(); 211 void ReplaceableMetadataImpl::addRef(void *Ref, OwnerTy Owner) { [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| LockFileManager.cpp | 73 auto Owner = std::make_pair(std::string(Hostname), PID); 74 if (processStillExecuting(Owner.first, Owner.second)) 75 return Owner; 175 if ((Owner = readLockFile(LockFileName))) 236 if ((Owner = readLockFile(LockFileName))) { 243 // The previous owner released the lock file before we could read it. 260 if (Owner) 331 if (!processStillExecuting((*Owner).first, (*Owner).second) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Fibonacci/ |
| fibonacci.cpp | 110 std::unique_ptr<Module> Owner(new Module("test", Context)); 111 Module *M = Owner.get(); 119 EngineBuilder(std::move(Owner))
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| SymbolicFile.h | 125 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner); 183 const SymbolicFile *Owner) 184 : SymbolPimpl(SymbolP), OwningObject(Owner) {}
|
| ObjectFile.h | 57 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner); 88 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner); 178 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner); 383 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner) 384 : BasicSymbolRef(SymbolP, Owner) {} 421 const ObjectFile *Owner) 423 , OwningObject(Owner) {} 533 const ObjectFile *Owner) 535 , OwningObject(Owner) {}
|
| WindowsResource.h | 118 ResourceEntryRef(BinaryStreamRef Ref, const WindowsResource *Owner); 122 const WindowsResource *Owner); 125 const WindowsResource *Owner;
|
| COFF.h | 1118 uint32_t I, const COFFObjectFile *Owner) 1119 : ImportTable(Table), Index(I), OwningObject(Owner) {} 1149 uint32_t I, const COFFObjectFile *Owner) 1150 : Table(T), Index(I), OwningObject(Owner) {} 1175 const COFFObjectFile *Owner) 1176 : ExportTable(Table), Index(I), OwningObject(Owner) {} 1200 const COFFObjectFile *Owner) 1201 : Entry32(Entry), Entry64(nullptr), Index(I), OwningObject(Owner) {} 1203 const COFFObjectFile *Owner) 1204 : Entry32(nullptr), Entry64(Entry), Index(I), OwningObject(Owner) {} [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Frontend/ |
| FixItRewriter.h | 75 std::unique_ptr<DiagnosticConsumer> Owner;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| LockFileManager.h | 42 /// Describes the result of waiting for the owner to release the lock. 46 /// Owner died while holding the lock. 48 /// Reached timeout while waiting for the owner to release the lock. 57 Optional<std::pair<std::string, int> > Owner; 79 /// For a shared lock, wait until the owner releases the lock.
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| ExternalASTSource.h | 386 /// A lazy value (of type T) that is within an AST node of type Owner, 389 template<typename Owner, typename T, void (ExternalASTSource::*Update)(Owner)> 438 /// Get the value of this pointer, updating its owner if necessary. 439 T get(Owner O) { 469 template<typename Owner, typename T, 470 void (clang::ExternalASTSource::*Update)(Owner)> 472 clang::LazyGenerationalUpdatePtr<Owner, T, Update>> { 473 using Ptr = clang::LazyGenerationalUpdatePtr<Owner, T, Update>;
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaTemplateInstantiateDecl.cpp | 818 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(), 820 Owner->addDecl(Inst); 832 = NamespaceAliasDecl::Create(SemaRef.Context, Owner, 839 Owner->addDecl(Inst); 879 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(), 882 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(), 925 Owner->addDecl(Typedef); 932 Owner->addDecl(Typedef); 951 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); 963 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| RDFRegisters.h | 211 const RegisterAggr *Owner; 227 assert(Owner == I.Owner); 228 (void)Owner;
|
| RDFGraph.h | 52 // memory: for each member node it should be possible to obtain its owner, 820 NodeAddr<UseNode*> newUse(NodeAddr<InstrNode*> Owner, 822 NodeAddr<PhiUseNode*> newPhiUse(NodeAddr<PhiNode*> Owner, 825 NodeAddr<DefNode*> newDef(NodeAddr<InstrNode*> Owner, 827 NodeAddr<DefNode*> newDef(NodeAddr<InstrNode*> Owner, 829 NodeAddr<PhiNode*> newPhi(NodeAddr<BlockNode*> Owner); 830 NodeAddr<StmtNode*> newStmt(NodeAddr<BlockNode*> Owner, 832 NodeAddr<BlockNode*> newBlock(NodeAddr<FuncNode*> Owner,
|
| /src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/ |
| ParallelJIT.cpp | 264 std::unique_ptr<Module> Owner = std::make_unique<Module>("test", Context); 265 Module *M = Owner.get(); 271 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Template.h | 468 DeclContext *Owner; 489 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner, 493 Owner(Owner), TemplateArgs(TemplateArgs) {}
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/ |
| postblit.d | 141 static struct Owner 147 Owner o;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Metadata.h | 229 /// As \a track(Metadata*&), but with support for calling back to \c Owner to 230 /// tell it that its operand changed. This could trigger \c Owner being 232 static bool track(void *Ref, Metadata &MD, Metadata &Owner) { 233 return track(Ref, MD, &Owner); 238 /// As \a track(Metadata*&), but with support for calling back to \c Owner to 239 /// tell it that its operand changed. This could trigger \c Owner being 241 static bool track(void *Ref, Metadata &MD, MetadataAsValue &Owner) { 242 return track(Ref, MD, &Owner); 270 /// Track a reference to metadata for an owner. 273 static bool track(void *Ref, Metadata &MD, OwnerTy Owner); [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| ob.d | 170 Owner mutable pointer 186 T* p = initializer; // p is owner 189 T* p = initialize; // p is owner 190 T* q = p; // transfer: q is owner, p is undefined 195 Initial, Undefined, Owner, Borrowed, Readonly 207 return ["Initial", "Undefined", "Owner", "Borrowed", "Readonly"][state]; 241 case X(Initial, Owner ): 249 case X(Owner, Initial): 256 case X(Undefined, Owner ): 261 case X(Owner , Owner ) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| FixItRewriter.cpp | 42 Owner = Diags.takeClient(); 48 Diags.setClient(Client, Owner.release() != nullptr);
|
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| FixedLenDecoderEmitter.cpp | 271 const FilterChooser *Owner;// points to the FilterChooser who owns this filter 294 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed); 548 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed), 555 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, 557 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { 558 assert(StartBit + NumBits - 1 < Owner->BitWidth); 563 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) { 567 Owner->insnWithID(Insn, Owner->Opcodes[i].EncodingID) [all...] |
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CIndexDiagnostic.cpp | 102 auto Owner = std::make_unique<CXStoredDiagnostic>(*SD, LangOpts); 103 CXStoredDiagnostic &CD = *Owner; 104 CurrentSet->appendDiagnostic(std::move(Owner));
|