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

/external/chromium_org/chrome/browser/ui/cocoa/infobars/
H A Dmock_confirm_infobar_delegate.h16 class Owner { class in class:MockConfirmInfoBarDelegate
21 virtual ~Owner() {}
24 explicit MockConfirmInfoBarDelegate(Owner* owner);
47 Owner* owner_;
/external/chromium_org/pdf/
H A Dcontrol.h26 class Owner { class in class:chrome_pdf::Control
28 virtual ~Owner() {}
41 bool visible, Owner* owner);
62 Owner* owner() { return owner_; }
69 Owner* owner_;
73 typedef Control::Owner ControlOwner;
/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/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/lib/IR/
H A DSymbolTableListTraitsImpl.h69 ItemParentClass *Owner = getListOwner(); local
70 V->setParent(Owner);
72 if (ValueSymbolTable *ST = TraitsClass::getSymTab(Owner))
/external/llvm/lib/Support/
H A DLockFileManager.cpp50 auto Owner = std::make_pair(std::string(Hostname), PID); local
51 if (processStillExecuting(Owner.first, Owner.second))
52 return Owner;
86 if ((Owner = readLockFile(LockFileName)))
138 if ((Owner = readLockFile(LockFileName))) {
160 if (Owner)
240 !processStillExecuting((*Owner).first, (*Owner).second)) {
/external/llvm/include/llvm/Object/
H A DMachO.h36 DiceRef(DataRefImpl DiceP, const ObjectFile *Owner);
251 inline DiceRef::DiceRef(DataRefImpl DiceP, const ObjectFile *Owner) argument
252 : DicePimpl(DiceP) , OwningObject(Owner) {}
H A DSymbolicFile.h95 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner);
161 const SymbolicFile *Owner)
162 : SymbolPimpl(SymbolP), OwningObject(Owner) {}
160 BasicSymbolRef(DataRefImpl SymbolP, const SymbolicFile *Owner) argument
H A DObjectFile.h43 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
87 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
142 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
188 LibraryRef(DataRefImpl LibraryP, const ObjectFile *Owner);
359 inline SymbolRef::SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner) argument
360 : BasicSymbolRef(SymbolP, Owner) {}
394 const ObjectFile *Owner)
396 , OwningObject(Owner) {}
486 const ObjectFile *Owner)
488 , OwningObject(Owner) {}
393 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner) argument
485 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner) argument
537 LibraryRef(DataRefImpl LibraryP, const ObjectFile *Owner) argument
[all...]
H A DCOFF.h481 const COFFObjectFile *Owner)
482 : ImportTable(Table), Index(I), OwningObject(Owner) {}
505 const COFFObjectFile *Owner)
506 : ExportTable(Table), Index(I), OwningObject(Owner) {}
480 ImportDirectoryEntryRef(const import_directory_table_entry *Table, uint32_t I, const COFFObjectFile *Owner) argument
504 ExportDirectoryEntryRef(const export_directory_table_entry *Table, uint32_t I, const COFFObjectFile *Owner) argument
/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);
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/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/lib/AST/
H A DDeclTemplate.cpp116 DeclContext *Owner) {
120 (*P)->setDeclContext(Owner);
123 AdoptTemplateParameterList(TTP->getTemplateParameters(), Owner);
115 AdoptTemplateParameterList(TemplateParameterList *Params, DeclContext *Owner) argument
H A DASTImporter.cpp928 RecordDecl *Owner = dyn_cast<RecordDecl>(Anon->getDeclContext()); local
929 if (!Owner)
933 for (const auto *D : Owner->noload_decls()) {
2835 RecordDecl *Owner = dyn_cast<RecordDecl>(F->getDeclContext()); local
2836 if (!Owner)
2840 for (const auto *D : Owner->noload_decls()) {
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp221 const FilterChooser *Owner;// points to the FilterChooser who owns this filter member in class:__anon26596::Filter
494 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
503 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
504 assert(StartBit + NumBits - 1 < Owner->BitWidth);
509 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) {
513 Owner->insnWithID(Insn, Owner->Opcodes[i]);
517 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
522 LastOpcFiltered = Owner
[all...]
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_encoder.cc235 int ViEEncoder::Owner() const { function in class:webrtc::ViEEncoder
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp853 DeclContext *Owner = OrigTPL->getParam(0)->getDeclContext();
855 /* DeclContext *Owner */ Owner, TemplateArgs); local
H A DSemaTemplateDeduction.cpp2941 DeclContext *Owner = FunctionTemplate->getDeclContext(); local
2943 Owner = FunctionTemplate->getLexicalDeclContext();
2945 SubstDecl(FunctionTemplate->getTemplatedDecl(), Owner,
H A DSemaTemplateInstantiateDecl.cpp217 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
219 Owner->addDecl(Inst);
231 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
238 Owner->addDecl(Inst);
277 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
280 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
319 Owner->addDecl(Typedef);
325 Owner->addDecl(Typedef);
344 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
356 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner,
2579 SubstDecl(Decl *D, DeclContext *Owner, const MultiLevelTemplateArgumentList &TemplateArgs) argument
3556 BuildVariableInstantiation( VarDecl *NewVar, VarDecl *OldVar, const MultiLevelTemplateArgumentList &TemplateArgs, LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner, LocalInstantiationScope *StartingScope, bool InstantiatingVarTemplate) argument
[all...]
H A DSemaType.cpp5214 Module *Owner = SuggestedDef->getOwningModule(); local
5216 << T << Owner->getFullModuleName();
5220 createImplicitModuleImportForErrorRecovery(Loc, Owner);
H A DSemaChecking.cpp7512 RetainCycleOwner Owner; local
7513 if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner))
7518 Owner.Loc = Var->getLocation();
7519 Owner.Range = Var->getSourceRange();
7521 if (Expr *Capturer = findCapturingExpr(*this, Init, Owner))
7522 diagnoseRetainCycle(*this, Capturer, Owner);
H A DSemaDecl.cpp3542 DeclContext *Owner,
3557 if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
3567 /// anonymous struct or union AnonRecord into the owning context Owner
3583 DeclContext *Owner,
3599 if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
3626 IndirectFieldDecl::Create(SemaRef.Context, Owner, VD->getLocation(),
3709 DeclContext *Owner = Record->getDeclContext(); local
3730 (isa<TranslationUnitDecl>(Owner) ||
3731 (isa<NamespaceDecl>(Owner) &&
3732 cast<NamespaceDecl>(Owner)
3540 CheckAnonMemberRedeclaration(Sema &SemaRef, Scope *S, DeclContext *Owner, DeclarationName Name, SourceLocation NameLoc, unsigned diagnostic) argument
3582 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner, RecordDecl *AnonRecord, AccessSpecifier AS, SmallVectorImpl<NamedDecl *> &Chaining, bool MSAnonStruct) argument
[all...]
/external/clang/lib/Serialization/
H A DASTReader.cpp1787 Module *Owner = getSubmodule(MMI->getSubmoduleID());
1788 if (Owner && Owner->NameVisibility == Module::Hidden) {
1791 HiddenNamesMap[Owner].HiddenMacros.insert(std::make_pair(II, MMI));
1793 installImportedMacro(II, MMI, Owner);
1886 Module *Owner = getSubmodule(OwnerID); local
1887 HiddenNames &Hidden = HiddenNamesMap[Owner];
1944 Module *Owner) {
1945 assert(II && Owner);
1947 SourceLocation ImportLoc = Owner
1943 installImportedMacro(IdentifierInfo *II, ModuleMacroInfo *MMI, Module *Owner) argument
3323 makeNamesVisible(const HiddenNames &Names, Module *Owner) argument
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 9128 milliseconds