Home
last modified time | relevance | path

Searched refs:IsInterface (Results 1 – 8 of 8) sorted by relevance

/llvm-project/clang-tools-extra/clang-tidy/fuchsia/
H A DMultipleInheritanceCheck.cpp29 bool IsInterface) { in addNodeToInterfaceMap() argument
32 InterfaceMap.insert(std::make_pair(Name, IsInterface)); in addNodeToInterfaceMap()
39 bool &IsInterface) const { in getInterfaceStatus()
45 IsInterface = Pair->second; in getInterfaceStatus()
H A DMultipleInheritanceCheck.h33 void addNodeToInterfaceMap(const CXXRecordDecl *Node, bool IsInterface);
34 bool getInterfaceStatus(const CXXRecordDecl *Node, bool &IsInterface) const;
/llvm-project/mlir/include/mlir/Support/
H A DInterfaceSupport.h277 using IsInterface = llvm::is_detected<is_interface_t, T>;
285 struct DenseMapInfo<T, std::enable_if_t<mlir::detail::IsInterface<T>::value>> {
/llvm-project/clang/include/clang/Parse/
H A DParser.h1520 ParsingClass(Decl *TagOrTemplate, bool TopLevelClass, bool IsInterface)
1521 : TopLevelClass(TopLevelClass), IsInterface(IsInterface),
1529 bool IsInterface : 1;
1558 bool IsInterface)
1560 State(P.PushParsingClass(TagOrTemplate, TopLevelClass, IsInterface)) { in Pop()
1635 PushParsingClass(Decl *TagOrTemplate, bool TopLevelClass, bool IsInterface);
3168 void ParseOptionalCXX11VirtSpecifierSeq(VirtSpecifiers &VS, bool IsInterface, in DeclaratorScopeObj()
1525 bool IsInterface : 1; global() member
1554 ParsingClassDefinition(Parser & P,Decl * TagOrTemplate,bool TopLevelClass,bool IsInterface) ParsingClassDefinition() argument
/llvm-project/mlir/include/mlir/IR/
H A DTypes.h364 !mlir::detail::IsInterface<T>::value>>
H A DAttributes.h366 !mlir::detail::IsInterface<T>::value>>
H A DOpDefinition.h2132 !mlir::detail::IsInterface<T>::value>> {
/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp2643 bool IsInterface, in ParseOptionalCXX11VirtSpecifierSeq()
2666 if (IsInterface && (Specifier == VirtSpecifiers::VS_Final || in isClassCompatibleKeyword()
2740 VS, getCurrentClass().IsInterface, in ParseCXXMemberDeclaratorBeforeInitializer()
2769 VS, getCurrentClass().IsInterface, in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
3781 if (getCurrentClass().IsInterface) { in ParseCXXMemberSpecification()
4502 bool IsInterface) { in TryParseCXX11AttributeIdentifier()
4505 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass, IsInterface)); in TryParseCXX11AttributeIdentifier()
2609 ParseOptionalCXX11VirtSpecifierSeq(VirtSpecifiers & VS,bool IsInterface,SourceLocation FriendLoc) ParseOptionalCXX11VirtSpecifierSeq() argument
4391 PushParsingClass(Decl * ClassDecl,bool NonNestedClass,bool IsInterface) PushParsingClass() argument