Searched refs:Interface (Results 26 - 50 of 54) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp112 MDK = ModuleDeclKind::Interface;
183 case ModuleDeclKind::Interface: {
H A DSemaDeclObjC.cpp4237 if (const ObjCInterfaceDecl *Interface = Category->getClassInterface())
4238 searchFromContainer(Interface);
4287 if (ObjCInterfaceDecl *Interface = category->getClassInterface())
4288 search(Interface);
4291 } else if (const auto *Interface = impl->getClassInterface()) {
4292 search(Interface);
4316 if (const auto *Interface = impl->getClassInterface())
4317 search(Interface);
H A DSemaExprMember.cpp1384 else if (auto *Interface = dyn_cast<ObjCInterfaceDecl>(D))
1385 ClassDeclared = Interface;
H A DSemaCodeComplete.cpp213 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
214 ObjCImplementation = Interface->getImplementation();
4449 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
4450 if (Interface->hasDefinition())
4451 return Interface->getDefinition();
4453 return Interface;
6768 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
6769 CDecl = Interface->getInterface();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.h1 //===----- CGObjCRuntime.h - Interface to ObjC Runtimes ---------*- C++ -*-===//
290 const ObjCInterfaceDecl *Interface,
H A DCGObjCMac.cpp1 //===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===//
1403 const ObjCInterfaceDecl *Interface,
1715 const ObjCInterfaceDecl *Interface,
1887 /* *** CGObjCMac Public Interface *** */
3389 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); local
3391 Interface->FindCategoryDeclaration(OCD->getIdentifier());
3394 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
3412 Values.add(GetClassName(Interface->getObjCRuntimeNameAsString()));
3413 LazySymbols.insert(Interface->getIdentifier());
3559 ObjCInterfaceDecl *Interface local
5054 EmitIvarOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
6686 const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); local
7200 EmitIvarOffset(CodeGen::CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
[all...]
H A DCGObjCGNU.cpp655 const ObjCInterfaceDecl *Interface,
1236 // The first Interface we find may be a @class,
1679 const ObjCInterfaceDecl *Interface,
4076 const ObjCInterfaceDecl *Interface,
4079 Interface = FindIvarInterface(CGM.getContext(), Interface, Ivar);
4089 ObjCIvarOffsetVariable(Interface, Ivar),
4094 Interface->getNameAsString() +"." + Ivar->getNameAsString();
4109 uint64_t Offset = ComputeIvarBaseOffset(CGF.CGM, Interface, Ivar);
4075 EmitIvarOffset(CodeGenFunction &CGF, const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp550 const ObjCInterfaceDecl *Interface = IvarDecl->getContainingInterface(); local
555 if (classHasSeparateTeardown(Interface))
558 ObjCImplDecl *ImplDecl = Interface->getImplementation();
H A DNullabilityChecker.cpp828 auto Interface = Decl->getClassInterface();
829 auto Name = Interface ? Interface->getName() : "";
H A DDynamicTypePropagation.cpp746 const ObjCInterfaceDecl *Interface = Method->getClassInterface(); local
747 if (!Interface)
750 ObjCTypeParamList *TypeParams = Interface->getTypeParamList();
H A DBasicObjCFoundationChecks.cpp1198 if (const ObjCInterfaceDecl *Interface = M.getReceiverInterface()) {
1214 FoundationClass Cl = findKnownClass(Interface);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h397 Interface = 0x03 member in class:llvm::codeview::CallingConvention::ClassOptions::FrameProcedureOptions::FunctionOptions::HfaKind::MemberAccess::MethodKind::MethodOptions::ModifierOptions::PointerKind::PointerMode::PointerOptions::PointerToMemberRepresentation::VFTableSlotKind::WindowsRTClassKind
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h308 enum class PDB_UdtType { Struct, Class, Union, Interface };
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dsol2-c1.asm37 ! in section 3 of the System V Application Binary Interface, Intel386
H A Dsol2-gc1.asm37 ! in section 3 of the System V Application Binary Interface, Intel386
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp288 CASE_OUTPUT_ENUM_CLASS_STR(PDB_UdtType, Interface, "interface", OS)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp965 // the class Interface, or in any of its extension.
1235 if (const auto *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
1236 for (const auto *P : Interface->protocols())
1239 for (const auto *Cat : Interface->known_categories())
1242 if (const ObjCInterfaceDecl *Super = Interface->getSuperClass())
H A DType.cpp2176 ObjCInterfaceDecl *Interface local
2179 *Def = Interface;
2180 return !Interface->hasDefinition();
/freebsd-11-stable/sys/conf/
H A Dkern.pre.mk177 # Linux Kernel Programming Interface C-flags
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp54 case PDB_UdtType::Interface:
227 case PDB_UdtType::Interface:
H A DSymbolFilePDB.cpp1596 can_parse = (udt->getUdtKind() != PDB_UdtType::Interface &&
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp4232 ObjCInterfaceDecl *Interface; member in class:__anon712::ObjCCategoriesVisitor
4262 << Interface->getDeclName() << Cat->getDeclName();
4274 Interface->setCategoryListRaw(Cat);
4280 ObjCInterfaceDecl *Interface,
4284 : Reader(Reader), Interface(Interface), Deserialized(Deserialized),
4287 for (auto *Cat : Interface->known_categories()) {
4279 ObjCCategoriesVisitor(ASTReader &Reader, ObjCInterfaceDecl *Interface, llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized, serialization::GlobalDeclID InterfaceID, unsigned PreviousGeneration) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2242 ? Sema::ModuleDeclKind::Interface
2263 if (MDK == Sema::ModuleDeclKind::Interface) {
2273 if (MDK == Sema::ModuleDeclKind::Interface) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp319 IO.enumCase(Value, "Interface", WindowsRTClassKind::Interface);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp98 case TypeRecordKind::Interface:

Completed in 607 milliseconds

123