Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h183 DeclOrType(Decl *D) : Stored(D), IsType(false) {} in DeclOrType()
184 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {} in DeclOrType()
186 bool isType() const { return IsType; } in isType()
187 bool isDecl() const { return !IsType; } in isDecl()
201 bool IsType; variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.h49 std::string typeOrIdIndex(codeview::TypeIndex TI, bool IsType) const;
H A DMinimalSymbolDumper.cpp408 bool IsType) const { in typeOrIdIndex()
411 auto &Container = IsType ? Types : Ids; in typeOrIdIndex()
859 bool IsType = true; in visitKnownRecord() local
864 IsType = false; in visitKnownRecord()
870 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h72 IsType, // A logical type. enumerator
145 PROPERTY(Property, IsType);
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.h123 bool IsType);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp197 bool ParsedAttr::isTypeAttr() const { return getInfo().IsType; } in isTypeAttr()
H A DSemaCodeComplete.cpp401 bool IsType(const NamedDecl *ND) const;
1617 bool ResultBuilder::IsType(const NamedDecl *ND) const { in IsType() function in ResultBuilder
6914 &ResultBuilder::IsType); in CodeCompleteOperatorName()
H A DSemaDecl.cpp102 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); in ValidateCandidate() local
103 if (!IsType) in ValidateCandidate()
H A DSemaExpr.cpp4658 UnaryExprOrTypeTrait ExprKind, bool IsType, in ActOnUnaryExprOrTypeTraitExpr() argument
4663 if (IsType) { in ActOnUnaryExprOrTypeTraitExpr()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVDWARFReader.cpp1141 LVElement *Element, bool IsType) { in getElementForOffset() argument
1146 if (IsType) in getElementForOffset()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp213 raw_string_ostream &OS, bool IsType, bool IsID) { in printStringOrID() argument
219 } else if (IsType) in printStringOrID()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp3287 SourceLocation &EllipsisLoc, bool &IsType, in ParseAlignArgument() argument
3297 IsType = true; in ParseAlignArgument()
3300 IsType = false; in ParseAlignArgument()
3330 bool IsType; in ParseAlignmentSpecifier() local
3335 EllipsisLoc, IsType, TypeResult); in ParseAlignmentSpecifier()
3345 if (IsType) { in ParseAlignmentSpecifier()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2597 UnaryExprOrTypeTraitExprBits.IsType = true; in UnaryExprOrTypeTraitExpr()
2620 bool isArgumentType() const { return UnaryExprOrTypeTraitExprBits.IsType; } in isArgumentType()
2638 UnaryExprOrTypeTraitExprBits.IsType = false; in setArgument()
2642 UnaryExprOrTypeTraitExprBits.IsType = true; in setArgument()
H A DStmt.h535 unsigned IsType : 1; // true if operand is a type, false if an expression.
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3147 SourceLocation &EllipsisLoc, bool &IsType,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1709 UnaryExprOrTypeTraitExprBits.IsType = false; in UnaryExprOrTypeTraitExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6895 bool IsType, void *TyOrEx,