Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/fuchsia/
H A DMultipleInheritanceCheck.cpp31 bool IsInterface) { in addNodeToInterfaceMap() argument
34 InterfaceMap.insert(std::make_pair(Name, IsInterface)); in addNodeToInterfaceMap()
41 bool &IsInterface) const { in getInterfaceStatus()
47 IsInterface = Pair->second; in getInterfaceStatus()
H A DMultipleInheritanceCheck.h35 void addNodeToInterfaceMap(const CXXRecordDecl *Node, bool IsInterface);
36 bool getInterfaceStatus(const CXXRecordDecl *Node, bool &IsInterface) const;
/llvm-project-15.0.7/mlir/include/mlir/Support/
H A DInterfaceSupport.h283 using IsInterface = llvm::is_detected<is_interface_t, T>;
291 struct DenseMapInfo<T, std::enable_if_t<mlir::detail::IsInterface<T>::value>> {
/llvm-project-15.0.7/clang/include/clang/Parse/
H A DParser.h1433 ParsingClass(Decl *TagOrTemplate, bool TopLevelClass, bool IsInterface) in ParsingClass()
1434 : TopLevelClass(TopLevelClass), IsInterface(IsInterface), in ParsingClass()
1442 bool IsInterface : 1; member
1471 bool IsInterface) in ParsingClassDefinition() argument
1473 State(P.PushParsingClass(TagOrTemplate, TopLevelClass, IsInterface)) { in ParsingClassDefinition()
1548 PushParsingClass(Decl *TagOrTemplate, bool TopLevelClass, bool IsInterface);
2922 void ParseOptionalCXX11VirtSpecifierSeq(VirtSpecifiers &VS, bool IsInterface,
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DTypes.h296 !mlir::detail::IsInterface<T>::value>>
H A DAttributes.h279 !mlir::detail::IsInterface<T>::value>>
H A DOpDefinition.h1978 !mlir::detail::IsInterface<T>::value>> {
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseDeclCXX.cpp2315 bool IsInterface, in ParseOptionalCXX11VirtSpecifierSeq() argument
2338 if (IsInterface && (Specifier == VirtSpecifiers::VS_Final || in ParseOptionalCXX11VirtSpecifierSeq()
2408 VS, getCurrentClass().IsInterface, in ParseCXXMemberDeclaratorBeforeInitializer()
2437 VS, getCurrentClass().IsInterface, in ParseCXXMemberDeclaratorBeforeInitializer()
3336 if (getCurrentClass().IsInterface) { in ParseCXXMemberSpecification()
4031 bool IsInterface) { in PushParsingClass() argument
4034 ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass, IsInterface)); in PushParsingClass()