HomeSort by relevance Sort by last modified time
    Searched refs:Owner (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/llvm/include/llvm/IR/
MetadataTracking.h 50 /// 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) {
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) {
63 return track(Ref, MD, &Owner);
91 /// \brief Track a reference to metadata for an owner.
94 static bool track(void *Ref, Metadata &MD, OwnerTy Owner);
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
PairedTask.java 32 * @template Owner Activity type.
36 abstract class PairedTask<Owner extends Activity, Input, Output>
39 protected final Owner mOwner;
41 public PairedTask(Owner owner) {
42 mOwner = owner;
  /libcore/ojluni/src/main/java/java/security/acl/
Owner.java 33 * <code> java.security.acl </code> package extends this Owner
34 * interface.) The initial owner Principal should be specified as an
40 public interface Owner {
43 * Adds an owner. Only owners can modify ACL contents. The caller
44 * principal must be an owner of the ACL in order to invoke this method.
45 * That is, only an owner can add another owner. The initial owner is
48 * @param caller the principal invoking this method. It must be an owner
51 * @param owner the owner that should be added to the list of owners
    [all...]
Acl.java 78 * <code> java.security.acl.Owner </code> interface. The Owner
80 * owners are allowed to modify an ACL. For example, only an owner can
85 * @see java.security.acl.Owner
91 public interface Acl extends Owner {
97 * owner of this ACL.
102 * is not an owner of this ACL.
128 * owner of this ACL.
137 * is not an owner of this ACL.
146 * owner of this ACL
    [all...]
  /external/llvm/include/llvm/Option/
Option.h 69 const OptTable *Owner;
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/tests/
run-readelf-test3.sh 25 Owner Data size Type
run-readelf-A.sh 33 Owner Size
58 Owner Size
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 59 std::unique_ptr<Module> Owner = make_unique<Module>("test", Context);
60 Module *M = Owner.get();
117 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
  /external/llvm/lib/IR/
MetadataTracking.cpp 25 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) {
27 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) &&
28 "Reference without owner must be direct");
30 R->addRef(Ref, Owner);
SymbolTableListTraitsImpl.h 66 ItemParentClass *Owner = getListOwner();
67 V->setParent(Owner);
69 if (ValueSymbolTable *ST = getSymTab(Owner))
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 102 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf));
105 getLazyBitcodeModule(std::move(Owner), Ctx);
106 Owner.release();
125 std::unique_ptr<MemoryBuffer> Owner(unwrap(MemBuf));
128 getLazyBitcodeModule(std::move(Owner), Ctx);
129 Owner.release();
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSOptionCode.java 30 * Owner Option [draft-cheshire-edns0-owner-option]
32 Owner("Owner", 4);
  /external/llvm/lib/Support/
LockFileManager.cpp 59 auto Owner = std::make_pair(std::string(Hostname), PID);
60 if (processStillExecuting(Owner.first, Owner.second))
61 return Owner;
155 if ((Owner = readLockFile(LockFileName)))
214 if ((Owner = readLockFile(LockFileName))) {
221 // The previous owner released the lock file before we could read it.
236 if (Owner)
291 if (!processStillExecuting((*Owner).first, (*Owner).second)
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 47 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
77 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
128 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
302 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
303 : BasicSymbolRef(SymbolP, Owner) {}
341 const ObjectFile *Owner)
343 , OwningObject(Owner) {}
419 const ObjectFile *Owner)
421 , OwningObject(Owner) {}
SymbolicFile.h 108 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
173 const SymbolicFile *Owner)
174 : SymbolPimpl(SymbolP), OwningObject(Owner) {}
COFF.h 793 const COFFObjectFile *Owner)
794 : ImportTable(Table), Index(I), OwningObject(Owner) {}
823 uint32_t I, const COFFObjectFile *Owner)
824 : Table(T), Index(I), OwningObject(Owner) {}
849 const COFFObjectFile *Owner)
850 : ExportTable(Table), Index(I), OwningObject(Owner) {}
871 const COFFObjectFile *Owner)
872 : Entry32(Entry), Entry64(nullptr), Index(I), OwningObject(Owner) {}
874 const COFFObjectFile *Owner)
875 : Entry32(nullptr), Entry64(Entry), Index(I), OwningObject(Owner) {}
    [all...]
  /external/clang/test/Analysis/inlining/
path-notes.cpp 225 struct Owner {
233 void Owner::testGetDerefExprOnMemberExprWithADot() {
242 Owner::Wrapper *arr; // expected-note {{'arr' declared without an initial value}}
    [all...]
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 98 std::unique_ptr<Module> Owner(new Module("test", Context));
99 Module *M = Owner.get();
107 EngineBuilder(std::move(Owner))
  /external/llvm/include/llvm/Support/
LockFileManager.h 42 /// \brief Describes the result of waiting for the owner to release the lock.
46 /// \brief Owner died while holding the lock.
48 /// \brief Reached timeout while waiting for the owner to release the lock.
57 Optional<std::pair<std::string, int> > Owner;
78 /// \brief For a shared lock, wait until the owner releases the lock.
  /external/clang/include/clang/AST/
ExternalASTSource.h 382 /// \brief A lazy value (of type T) that is within an AST node of type Owner,
385 template<typename Owner, typename T, void (ExternalASTSource::*Update)(Owner)>
433 /// Get the value of this pointer, updating its owner if necessary.
434 T get(Owner O) {
462 template<typename Owner, typename T,
463 void (clang::ExternalASTSource::*Update)(Owner)>
465 clang::LazyGenerationalUpdatePtr<Owner, T, Update>> {
466 typedef clang::LazyGenerationalUpdatePtr<Owner, T, Update> Ptr;
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 330 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
332 Owner->addDecl(Inst);
344 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
351 Owner->addDecl(Inst);
390 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
393 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
433 Owner->addDecl(Typedef);
440 Owner->addDecl(Typedef);
459 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
471 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation()
    [all...]
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 73 std::unique_ptr<DiagnosticConsumer> Owner;
  /external/clang/include/clang/Sema/
Template.h 376 DeclContext *Owner;
397 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
401 Owner(Owner), TemplateArgs(TemplateArgs), LateAttrs(nullptr),
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfStandardAttributes.h 25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
132 // owner -- name of the owner of the image
135 IMF_STD_ATTRIBUTE_DEF (owner, Owner, std::string)
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 247 std::unique_ptr<Module> Owner = make_unique<Module>("test", Context);
248 Module *M = Owner.get();
254 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();

Completed in 414 milliseconds

1 2 3 4