Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DParsedAttr.cpp174 unsigned IsType : 1; member
232 bool ParsedAttr::isTypeAttr() const { return getInfo(*this).IsType; } in isTypeAttr()
H A DSemaCodeComplete.cpp340 bool IsType(const NamedDecl *ND) const;
1188 bool ResultBuilder::IsType(const NamedDecl *ND) const { in IsType() function in ResultBuilder
5150 &ResultBuilder::IsType); in CodeCompleteOperatorName()
H A DSemaDecl.cpp85 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); in ValidateCandidate() local
86 if (!IsType) in ValidateCandidate()
H A DSemaExpr.cpp4119 UnaryExprOrTypeTrait ExprKind, bool IsType, in ActOnUnaryExprOrTypeTraitExpr() argument
4124 if (IsType) { in ActOnUnaryExprOrTypeTraitExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTWriter.h177 DeclOrType(Decl *D) : Stored(D), IsType(false) {} in DeclOrType()
178 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {} in DeclOrType()
180 bool isType() const { return IsType; } in isType()
181 bool isDecl() const { return !IsType; } in isDecl()
195 bool IsType; variable
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.h50 std::string typeOrIdIndex(codeview::TypeIndex TI, bool IsType) const;
H A DMinimalSymbolDumper.cpp349 bool IsType) const { in typeOrIdIndex()
352 auto &Container = IsType ? Types : Ids; in typeOrIdIndex()
722 bool IsType = true; in visitKnownRecord() local
727 IsType = false; in visitKnownRecord()
733 typeOrIdIndex(Proc.FunctionType, IsType), Proc.DbgStart, in visitKnownRecord()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h2241 UnaryExprOrTypeTraitExprBits.IsType = true; in UnaryExprOrTypeTraitExpr()
2258 bool isArgumentType() const { return UnaryExprOrTypeTraitExprBits.IsType; } in isArgumentType()
2276 UnaryExprOrTypeTraitExprBits.IsType = false; in setArgument()
2280 UnaryExprOrTypeTraitExprBits.IsType = true; in setArgument()
H A DStmt.h416 unsigned IsType : 1; // true if operand is a type, false if an expression. in alignas() local
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp1511 UnaryExprOrTypeTraitExprBits.IsType = false; in UnaryExprOrTypeTraitExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h4296 bool IsType, void *TyOrEx,