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

1 2

  /external/llvm/include/llvm/Option/
Option.h 68 const OptTable *Owner;
71 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);
  /libcore/luni/src/main/java/java/security/acl/
Owner.java 28 public interface Owner {
35 * @param owner
36 * the owner to added.
37 * @return {@code true} if the owner was added, {@code false} if it was already an owner.
39 * if the invoking principal is not an owner.
41 boolean addOwner(Principal caller, Principal owner)
49 * @param owner
50 * the owner to be removed.
51 * @return {@code true} if the owner was removed, {@code false} if it was not an owner
    [all...]
Acl.java 32 * An {@code Acl} has a list of owners ({@link Owner}) which are principals as
51 public interface Acl extends Owner {
61 * if the invoking {@code Principal} is not an owner of this
86 * if the invoking {@code Principal} is not an owner of this
101 * if the invoking {@code Principal} is not an owner of this
  /external/clang/include/clang/Driver/
Option.h 79 const OptTable *Owner;
82 Option(const OptTable::Info *Info, const OptTable *Owner);
107 assert(Owner && "Must have a valid owner!");
108 return Owner->getOption(Info->GroupID);
113 assert(Owner && "Must have a valid owner!");
114 return Owner->getOption(Info->AliasID);
  /external/elfutils/tests/
run-readelf-test3.sh 33 Owner Data size Type
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSOptionCode.java 30 * Owner Option [draft-cheshire-edns0-owner-option]
32 Owner("Owner", 4);
  /external/llvm/include/llvm/Support/
LockFileManager.h 48 Optional<std::pair<std::string, int> > Owner;
69 /// \brief For a shared lock, wait until the owner releases the lock.
  /external/llvm/lib/Support/
LockFileManager.cpp 73 if ((Owner = readLockFile(LockFileName)))
137 if ((Owner = readLockFile(LockFileName)))
147 if (Owner)
203 if (!processStillExecuting((*Owner).first, (*Owner).second))
  /external/webkit/Source/WebKit2/Shared/
UserMessageCoders.h 59 template<typename Owner>
77 encoder->encode(Owner(array->at(i)));
89 encoder->encode(Owner(it->second.get()));
185 template<typename Owner>
188 static bool baseDecode(CoreIPC::ArgumentDecoder* decoder, Owner& coder, APIObject::Type& type)
205 Owner messageCoder(coder, element);
226 Owner messageCoder(coder, element);
  /external/llvm/lib/IR/
SymbolTableListTraitsImpl.h 69 ItemParentClass *Owner = getListOwner();
70 V->setParent(Owner);
72 if (ValueSymbolTable *ST = TraitsClass::getSymTab(Owner))
  /external/llvm/include/llvm/Object/
ObjectFile.h 102 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
144 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
208 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
254 LibraryRef(DataRefImpl LibraryP, const ObjectFile *Owner);
403 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
405 , OwningObject(Owner) {}
462 const ObjectFile *Owner)
464 , OwningObject(Owner) {}
545 const ObjectFile *Owner)
547 , OwningObject(Owner) {}
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 160 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
162 Owner->addDecl(Inst);
174 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
181 Owner->addDecl(Inst);
220 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
223 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
262 Owner->addDecl(Typedef);
268 Owner->addDecl(Typedef);
287 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
299 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation()
    [all...]
SemaDecl.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
  /external/clang/include/clang/Sema/
Template.h 371 DeclContext *Owner;
384 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
388 Owner(Owner), TemplateArgs(TemplateArgs), LateAttrs(0), StartingScope(0)
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 222 const FilterChooser *Owner;// points to the FilterChooser who owns this filter
257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
495 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
502 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits,
504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
505 assert(StartBit + NumBits - 1 < Owner->BitWidth);
510 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) {
514 Owner->insnWithID(Insn, Owner->Opcodes[i])
    [all...]
  /external/clang/lib/Driver/
Option.cpp 20 Option::Option(const OptTable::Info *info, const OptTable *owner)
21 : Info(info), Owner(owner) {
  /external/llvm/lib/Option/
Option.cpp 22 Option::Option(const OptTable::Info *info, const OptTable *owner)
23 : Info(info), Owner(owner) {
  /external/clang/lib/AST/
DeclTemplate.cpp 116 DeclContext *Owner) {
120 (*P)->setDeclContext(Owner);
123 AdoptTemplateParameterList(TTP->getTemplateParameters(), Owner);
    [all...]
ASTImporter.cpp     [all...]
  /external/iproute2/doc/
api-ip6-flowlabels.tex 388 Label S Owner Users Linger Expires Dst Opt
395 \item \verb|Owner| is ID of creator, it is zero, pid or uid, depending on
  /external/jmdns/src/javax/jmdns/impl/
DNSIncoming.java 371 case Owner:
400 logger.warning("Malformed OPT answer. Option code: Owner data: " + this._hexString(optiondata));
403 logger.fine("Unhandled Owner OPT version: " + ownerVersion + " sequence: " + ownerSequence + " MAC address: " + this._hexString(ownerPrimaryMacAddress)
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
ASTReaderDecl.cpp 378 if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
379 if (Owner->NameVisibility != Module::AllVisible) {
385 Reader.HiddenNamesMap[Owner].push_back(D);
    [all...]
  /external/oprofile/events/x86-64/family10/
unit_masks 46 0x08 Owner-state line from L2

Completed in 969 milliseconds

1 2