Home
last modified time | relevance | path

Searched refs:IsType (Results 1 – 18 of 18) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DParsedAttrInfo.h55 unsigned IsType : 1;
78 HasCustomParsing(0), AcceptsExprPack(0), IsTargetSpecific(0), IsType(0), in AttrKind()
84 unsigned IsTargetSpecific, unsigned IsType, in ParsedAttrInfo()
92 IsType(IsType), IsStmt(IsStmt), IsKnownToGCC(IsKnownToGCC), in ParsedAttrInfo()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h176 DeclOrType(Decl *D) : Stored(D), IsType(false) {} in DeclOrType()
177 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {} in DeclOrType()
179 bool isType() const { return IsType; } in isType()
180 bool isDecl() const { return !IsType; } in isDecl()
194 bool IsType; variable
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.h49 std::string typeOrIdIndex(codeview::TypeIndex TI, bool IsType) const;
H A DMinimalSymbolDumper.cpp404 bool IsType) const { in typeOrIdIndex()
407 auto &Container = IsType ? Types : Ids; in typeOrIdIndex()
855 bool IsType = true; in visitKnownRecord() local
860 IsType = false; in visitKnownRecord()
866 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, in visitKnownRecord()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h72 IsType, // A logical type. enumerator
145 PROPERTY(Property, IsType);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVELFReader.h123 bool IsType);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp191 bool ParsedAttr::isTypeAttr() const { return getInfo().IsType; } in isTypeAttr()
H A DSemaCodeComplete.cpp398 bool IsType(const NamedDecl *ND) const;
1610 bool ResultBuilder::IsType(const NamedDecl *ND) const { in IsType() function in ResultBuilder
6858 &ResultBuilder::IsType); in CodeCompleteOperatorName()
H A DSemaDecl.cpp93 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); in ValidateCandidate() local
94 if (!IsType) in ValidateCandidate()
H A DSemaExpr.cpp4912 UnaryExprOrTypeTrait ExprKind, bool IsType, in ActOnUnaryExprOrTypeTraitExpr() argument
4917 if (IsType) { in ActOnUnaryExprOrTypeTraitExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVELFReader.cpp1120 bool IsType) { in getElementForOffset() argument
1125 if (IsType) in getElementForOffset()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp212 raw_string_ostream &OS, bool IsType, bool IsID) { in printStringOrID() argument
218 } else if (IsType) in printStringOrID()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp3095 SourceLocation &EllipsisLoc, bool &IsType, in ParseAlignArgument() argument
3105 IsType = true; in ParseAlignArgument()
3108 IsType = false; in ParseAlignArgument()
3138 bool IsType; in ParseAlignmentSpecifier() local
3143 EllipsisLoc, IsType, TypeResult); in ParseAlignmentSpecifier()
3153 if (IsType) { in ParseAlignmentSpecifier()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2563 UnaryExprOrTypeTraitExprBits.IsType = true; in UnaryExprOrTypeTraitExpr()
2586 bool isArgumentType() const { return UnaryExprOrTypeTraitExprBits.IsType; } in isArgumentType()
2604 UnaryExprOrTypeTraitExprBits.IsType = false; in setArgument()
2608 UnaryExprOrTypeTraitExprBits.IsType = true; in setArgument()
H A DStmt.h535 unsigned IsType : 1; // true if operand is a type, false if an expression. in alignas()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3065 SourceLocation &EllipsisLoc, bool &IsType,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1679 UnaryExprOrTypeTraitExprBits.IsType = false; in UnaryExprOrTypeTraitExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5862 bool IsType, void *TyOrEx,