Searched defs:Owner (Results 1 - 25 of 51) sorted by relevance

123

/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp67 std::unique_ptr<Module> Owner = make_unique<Module>("test", Context); local
68 Module *M = Owner.get();
125 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
/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/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h66 ItemParentClass *Owner = getListOwner(); local
67 V->setParent(Owner);
69 if (ValueSymbolTable *ST = getSymTab(Owner))
H A DMetadata.cpp121 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) { argument
123 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) &&
126 R->addRef(Ref, Owner);
131 assert(!Owner && "Unexpected callback to owner");
165 void ReplaceableMetadataImpl::addRef(void *Ref, OwnerTy Owner) { argument
167 UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex)))
216 OwnerTy Owner = Pair.second.first; local
217 if (!Owner) {
228 if (Owner.is<MetadataAsValue *>()) {
229 Owner
265 auto Owner = Pair.second.first; local
[all...]
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp31 auto Owner = make_unique<Module>("<main>", Context); local
32 M = Owner.get();
33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create());
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DSymbolTableListTraitsImpl.h69 ItemParentClass *Owner = getListOwner(); local
70 V->setParent(Owner);
72 if (ValueSymbolTable *ST = TraitsClass::getSymTab(Owner))
/external/clang/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h73 std::unique_ptr<DiagnosticConsumer> Owner; member in class:clang::FixItRewriter
/external/llvm/include/llvm/Support/
H A DLockFileManager.h47 /// \brief Owner died while holding the lock.
58 Optional<std::pair<std::string, int> > Owner; member in class:llvm::LockFileManager
/external/llvm/lib/Support/
H A DLockFileManager.cpp59 auto Owner = std::make_pair(std::string(Hostname), PID); local
60 if (processStillExecuting(Owner.first, Owner.second))
61 return Owner;
157 if ((Owner = readLockFile(LockFileName)))
224 if ((Owner = readLockFile(LockFileName))) {
248 if (Owner)
316 if (!processStillExecuting((*Owner).first, (*Owner).second))
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp263 std::unique_ptr<Module> Owner = make_unique<Module>("test", Context); local
264 Module *M = Owner.get();
270 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
/external/llvm/include/llvm/Object/
H A DSymbolicFile.h109 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
174 const SymbolicFile *Owner)
175 : SymbolPimpl(SymbolP), OwningObject(Owner) {}
173 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner) argument
H A DObjectFile.h47 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
77 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
130 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
308 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner) argument
309 : BasicSymbolRef(SymbolP, Owner) {}
347 const ObjectFile *Owner)
349 , OwningObject(Owner) {}
433 const ObjectFile *Owner)
435 , OwningObject(Owner) {}
346 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner) argument
432 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner) argument
H A DMachO.h36 DiceRef(DataRefImpl DiceP, const ObjectFile *Owner);
471 inline DiceRef::DiceRef(DataRefImpl DiceP, const ObjectFile *Owner) argument
472 : DicePimpl(DiceP) , OwningObject(Owner) {}
/external/llvm/include/llvm/Option/
H A DOption.h70 const OptTable *Owner; member in class:llvm::opt::Option
73 Option(const OptTable::Info *Info, const OptTable *Owner);
97 assert(Owner && "Must have a valid owner!");
98 return Owner->getOption(Info->GroupID);
103 assert(Owner && "Must have a valid owner!");
104 return Owner->getOption(Info->AliasID);
/external/llvm/tools/lli/
H A Dlli.cpp393 std::unique_ptr<Module> Owner = parseIRFile(InputFile, Err, Context); local
394 Module *Mod = Owner.get();
401 return runOrcLazyJIT(std::move(Owner), argc, argv);
419 EngineBuilder builder(std::move(Owner));
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVDecorate.h75 return Owner;
79 Owner = owner;
105 SPIRVDecorationGroup *Owner; // Owning decorate group member in class:SPIRV::SPIRVDecorateGeneric
/external/swiftshader/third_party/subzero/src/
H A DIceStringPool.h82 /// unique integral ID from the Owner.
83 static StringID createWithoutString(const typename Traits::OwnerType *Owner) { argument
84 return StringID(Owner);
87 /// adding the string from the Owner's pool.
88 static StringID createWithString(const typename Traits::OwnerType *Owner, argument
90 return StringID(Owner, Value);
133 explicit StringID(const typename Traits::OwnerType *Owner) argument
134 : ID(Traits::getStrings(Owner)->getNewID()) {}
135 StringID(const typename Traits::OwnerType *Owner, const std::string &Value) argument
136 : ID(Traits::getStrings(Owner)
[all...]
/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/clang/tools/libclang/
H A DCIndexDiagnostic.cpp107 auto Owner = llvm::make_unique<CXStoredDiagnostic>(*SD, LangOpts); variable
108 CXStoredDiagnostic &CD = *Owner;
109 CurrentSet->appendDiagnostic(std::move(Owner));
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DObjectFile.h100 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
139 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
175 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
306 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner) argument
308 , OwningObject(Owner) {}
357 const ObjectFile *Owner)
359 , OwningObject(Owner) {}
417 const ObjectFile *Owner)
419 , OwningObject(Owner) {}
356 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner) argument
416 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner) argument
/external/guava/guava-tests/test/com/google/common/reflect/
H A DTypeTokenResolutionTest.java160 private static class Owner<T> { class in class:TypeTokenResolutionTest
175 assertEquals(String.class, new Owner.Nested<String>() {}.getTypeArgument());
180 new Owner<Integer>().new Inner<String>() {}.getTypeArgument());
185 new Owner<Integer>().new Inner<String>() {}.getOwnerType());
/external/syslinux/gpxe/src/include/gpxe/efi/Pi/
H A DPiHob.h215 EFI_GUID Owner; member in struct:__anon22159
/external/clang/include/clang/Frontend/
H A DASTUnit.h432 std::unique_ptr<llvm::MemoryBuffer> Owner; member in struct:clang::ASTUnit::ComputedPreamble
436 std::unique_ptr<llvm::MemoryBuffer> Owner, unsigned Size,
438 : Buffer(Buffer), Owner(std::move(Owner)), Size(Size),
441 : Buffer(C.Buffer), Owner(std::move(C.Owner)), Size(C.Size),
435 ComputedPreamble(llvm::MemoryBuffer *Buffer, std::unique_ptr<llvm::MemoryBuffer> Owner, unsigned Size, bool PreambleEndsAtStartOfLine) argument
/external/clang/lib/AST/
H A DDeclTemplate.cpp110 DeclContext *Owner) {
112 P->setDeclContext(Owner);
115 AdoptTemplateParameterList(TTP->getTemplateParameters(), Owner);
109 AdoptTemplateParameterList(TemplateParameterList *Params, DeclContext *Owner) argument
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp697 for (auto &Owner : Left) {
698 Directive &D = *Owner;
810 std::unique_ptr<DiagnosticConsumer> Owner = Diags.takeClient(); local
880 Diags.setClient(CurClient, Owner.release() != nullptr);

Completed in 710 milliseconds

123