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

1 2

  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
mock_confirm_infobar_delegate.h 16 class Owner {
21 virtual ~Owner() {}
24 explicit MockConfirmInfoBarDelegate(Owner* owner);
47 Owner* owner_;
mock_confirm_infobar_delegate.cc 11 MockConfirmInfoBarDelegate::MockConfirmInfoBarDelegate(Owner* owner)
13 owner_(owner),
  /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/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);
  /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 79 if ((Owner = readLockFile(LockFileName)))
142 if ((Owner = readLockFile(LockFileName)))
152 if (Owner)
234 !processStillExecuting((*Owner).first, (*Owner).second)) {
  /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/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 99 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
143 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
207 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
251 LibraryRef(DataRefImpl LibraryP, const ObjectFile *Owner);
398 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner)
400 , OwningObject(Owner) {}
461 const ObjectFile *Owner)
463 , OwningObject(Owner) {}
548 const ObjectFile *Owner)
550 , OwningObject(Owner) {}
    [all...]
MachO.h 38 DiceRef(DataRefImpl DiceP, const ObjectFile *Owner);
215 inline DiceRef::DiceRef(DataRefImpl DiceP, const ObjectFile *Owner)
216 : DicePimpl(DiceP) , OwningObject(Owner) {}
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 167 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
169 Owner->addDecl(Inst);
181 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
188 Owner->addDecl(Inst);
227 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
230 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
269 Owner->addDecl(Typedef);
275 Owner->addDecl(Typedef);
294 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
306 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation()
    [all...]
  /external/clang/include/clang/Sema/
Template.h 369 DeclContext *Owner;
390 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
394 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/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/chromium_org/chrome/browser/resources/file_manager/js/
file_grid.js 213 * @param {FileGrid} grid Owner.
file_table.js 898 * @param {cr.ui.List} list Owner list.
972 * @param {HTMLDocument} doc Owner document.
  /external/clang/lib/Serialization/
ASTReader.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/include/clang/Serialization/
ASTReader.h     [all...]

Completed in 1840 milliseconds

1 2