Searched refs:Owner (Results 1 - 25 of 59) sorted by relevance

123

/external/llvm/include/llvm/IR/
H A DMetadataTracking.h50 /// As \a track(Metadata*&), but with support for calling back to \c Owner to
51 /// tell it that its operand changed. This could trigger \c Owner being
53 static bool track(void *Ref, Metadata &MD, Metadata &Owner) { argument
54 return track(Ref, MD, &Owner);
59 /// As \a track(Metadata*&), but with support for calling back to \c Owner to
60 /// tell it that its operand changed. This could trigger \c Owner being
62 static bool track(void *Ref, Metadata &MD, MetadataAsValue &Owner) { argument
63 return track(Ref, MD, &Owner);
94 static bool track(void *Ref, Metadata &MD, OwnerTy Owner);
/external/llvm/lib/Support/
H A DLockFileManager.cpp48 auto Owner = std::make_pair(std::string(Hostname), PID); local
49 if (processStillExecuting(Owner.first, Owner.second))
50 return Owner;
84 if ((Owner = readLockFile(LockFileName)))
136 if ((Owner = readLockFile(LockFileName))) {
158 if (Owner)
210 if (!processStillExecuting((*Owner).first, (*Owner).second))
/external/llvm/include/llvm/Option/
H A DOption.h69 const OptTable *Owner; member in class:llvm::opt::Option
72 Option(const OptTable::Info *Info, const OptTable *Owner);
96 assert(Owner && "Must have a valid owner!");
97 return Owner->getOption(Info->GroupID);
102 assert(Owner && "Must have a valid owner!");
103 return Owner->getOption(Info->AliasID);
/external/elfutils/src/tests/
H A Drun-readelf-test3.sh25 Owner Data size Type
H A Drun-readelf-A.sh33 Owner Size
58 Owner Size
/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp59 std::unique_ptr<Module> Owner = make_unique<Module>("test", Context); local
60 Module *M = Owner.get();
118 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
/external/llvm/lib/IR/
H A DMetadataTracking.cpp25 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) { argument
27 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) &&
30 R->addRef(Ref, Owner);
H A DSymbolTableListTraitsImpl.h69 ItemParentClass *Owner = getListOwner(); local
70 V->setParent(Owner);
72 if (ValueSymbolTable *ST = TraitsClass::getSymTab(Owner))
H A DMetadata.cpp123 void ReplaceableMetadataImpl::addRef(void *Ref, OwnerTy Owner) { argument
125 UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex)))
177 OwnerTy Owner = Pair.second.first; local
178 if (!Owner) {
189 if (Owner.is<MetadataAsValue *>()) {
190 Owner.get<MetadataAsValue *>()->handleChangedMetadata(MD);
195 Metadata *OwnerMD = Owner.get<Metadata *>();
226 auto Owner = Pair.second.first; local
227 if (!Owner)
229 if (Owner
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp65 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf));
68 getLazyBitcodeModule(std::move(Owner), *unwrap(ContextRef));
69 Owner.release();
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSOptionCode.java30 * Owner Option [draft-cheshire-edns0-owner-option]
32 Owner("Owner", 4); enum constant in enum:DNSOptionCode
/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp225 struct Owner { struct
233 void Owner::testGetDerefExprOnMemberExprWithADot() {
242 Owner::Wrapper *arr; // expected-note {{'arr' declared without an initial value}}
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp98 std::unique_ptr<Module> Owner(new Module("test", Context));
99 Module *M = Owner.get();
107 EngineBuilder(std::move(Owner))
/external/llvm/include/llvm/Support/
H A DLockFileManager.h46 /// \brief Owner died while holding the lock.
57 Optional<std::pair<std::string, int> > Owner; member in class:llvm::LockFileManager
/external/llvm/include/llvm/Object/
H A DObjectFile.h45 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
89 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
141 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
324 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner) argument
325 : BasicSymbolRef(SymbolP, Owner) {}
363 const ObjectFile *Owner)
365 , OwningObject(Owner) {}
446 const ObjectFile *Owner)
448 , OwningObject(Owner) {}
362 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner) argument
445 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner) argument
H A DSymbolicFile.h99 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
166 const SymbolicFile *Owner)
167 : SymbolPimpl(SymbolP), OwningObject(Owner) {}
165 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner) argument
H A DCOFF.h730 const COFFObjectFile *Owner)
731 : ImportTable(Table), Index(I), OwningObject(Owner) {}
760 uint32_t I, const COFFObjectFile *Owner)
761 : Table(T), Index(I), OwningObject(Owner) {}
786 const COFFObjectFile *Owner)
787 : ExportTable(Table), Index(I), OwningObject(Owner) {}
808 const COFFObjectFile *Owner)
809 : Entry32(Entry), Entry64(nullptr), Index(I), OwningObject(Owner) {}
811 const COFFObjectFile *Owner)
812 : Entry32(nullptr), Entry64(Entry), Index(I), OwningObject(Owner) {}
729 ImportDirectoryEntryRef(const import_directory_table_entry *Table, uint32_t I, const COFFObjectFile *Owner) argument
759 DelayImportDirectoryEntryRef(const delay_import_directory_table_entry *T, uint32_t I, const COFFObjectFile *Owner) argument
785 ExportDirectoryEntryRef(const export_directory_table_entry *Table, uint32_t I, const COFFObjectFile *Owner) argument
807 ImportedSymbolRef(const import_lookup_table_entry32 *Entry, uint32_t I, const COFFObjectFile *Owner) argument
810 ImportedSymbolRef(const import_lookup_table_entry64 *Entry, uint32_t I, const COFFObjectFile *Owner) argument
830 BaseRelocRef(const coff_base_reloc_block_header *Header, const COFFObjectFile *Owner) argument
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp298 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
300 Owner->addDecl(Inst);
312 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
319 Owner->addDecl(Inst);
358 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
361 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
401 Owner->addDecl(Typedef);
408 Owner->addDecl(Typedef);
427 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
439 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner,
2670 SubstDecl(Decl *D, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs) argument
3544 BuildVariableInstantiation( VarDecl *NewVar, VarDecl *OldVar, const MultiLevelTemplateArgumentList &TemplateArgs, LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner, LocalInstantiationScope *StartingScope, bool InstantiatingVarTemplate) argument
[all...]
/external/clang/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h69 std::unique_ptr<DiagnosticConsumer> Owner; member in class:clang::FixItRewriter
/external/clang/include/clang/AST/
H A DExternalASTSource.h379 /// \brief A lazy value (of type T) that is within an AST node of type Owner,
382 template<typename Owner, typename T, void (ExternalASTSource::*Update)(Owner)>
431 T get(Owner O) {
459 template<typename Owner, typename T,
460 void (clang::ExternalASTSource::*Update)(Owner)>
462 clang::LazyGenerationalUpdatePtr<Owner, T, Update>> {
463 typedef clang::LazyGenerationalUpdatePtr<Owner, T, Update> Ptr;
/external/clang/include/clang/Sema/
H A DTemplate.h376 DeclContext *Owner;
397 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
401 Owner(Owner), TemplateArgs(TemplateArgs), LateAttrs(nullptr),
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp246 std::unique_ptr<Module> Owner = make_unique<Module>("test", Context); local
247 Module *M = Owner.get();
253 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp31 auto Owner = make_unique<Module>("<main>", getGlobalContext()); local
32 M = Owner.get();
33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create());
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp221 const FilterChooser *Owner;// points to the FilterChooser who owns this filter member in class:__anon11373::Filter
488 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
497 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
498 assert(StartBit + NumBits - 1 < Owner->BitWidth);
503 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) {
507 Owner->insnWithID(Insn, Owner->Opcodes[i]);
511 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
516 LastOpcFiltered = Owner
[all...]
/external/clang/include/clang/Frontend/
H A DASTUnit.h429 std::unique_ptr<llvm::MemoryBuffer> Owner; member in struct:clang::ASTUnit::ComputedPreamble
433 std::unique_ptr<llvm::MemoryBuffer> Owner, unsigned Size,
435 : Buffer(Buffer), Owner(std::move(Owner)), Size(Size),
438 : Buffer(C.Buffer), Owner(std::move(C.Owner)), Size(C.Size),
432 ComputedPreamble(llvm::MemoryBuffer *Buffer, std::unique_ptr<llvm::MemoryBuffer> Owner, unsigned Size, bool PreambleEndsAtStartOfLine) argument

Completed in 703 milliseconds

123