Searched refs:TypeQuals (Results 1 - 17 of 17) sorted by relevance

/external/clang/include/clang/Sema/
H A DDeclSpec.h1062 unsigned TypeQuals : 4; member in struct:clang::DeclaratorChunk::PointerTypeInfo
1091 unsigned TypeQuals : 4; member in struct:clang::DeclaratorChunk::ArrayTypeInfo
1159 unsigned TypeQuals : 3; member in struct:clang::DeclaratorChunk::FunctionTypeInfo
1317 unsigned TypeQuals : 4; member in struct:clang::DeclaratorChunk::BlockPointerTypeInfo
1325 unsigned TypeQuals : 4; member in struct:clang::DeclaratorChunk::MemberPointerTypeInfo
1376 static DeclaratorChunk getPointer(unsigned TypeQuals, SourceLocation Loc, argument
1383 I.Ptr.TypeQuals = TypeQuals;
1392 static DeclaratorChunk getReference(unsigned TypeQuals, SourceLocation Loc, argument
1397 I.Ref.HasRestrict = (TypeQuals
1404 getArray(unsigned TypeQuals, bool isStatic, bool isStar, Expr *NumElts, SourceLocation LBLoc, SourceLocation RBLoc) argument
1446 getBlockPointer(unsigned TypeQuals, SourceLocation Loc) argument
1456 getMemberPointer(const CXXScopeSpec &SS, unsigned TypeQuals, SourceLocation Loc) argument
[all...]
/external/clang/lib/Sema/
H A DSemaType.cpp670 /*TypeQuals=*/0,
902 // TypeQuals handled by caller.
949 // TypeQuals handled by caller.
959 // TypeQuals handled by caller.
965 // TypeQuals handled by caller.
976 // TypeQuals handled by caller.
997 // TypeQuals handled by caller.
1100 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
1105 if (Result->isFunctionType() && TypeQuals) {
1106 if (TypeQuals
[all...]
H A DSemaLambda.cpp868 EPI.TypeQuals |= DeclSpec::TQ_const;
894 FTI.TypeQuals |= DeclSpec::TQ_const;
1174 InvokerExtInfo.TypeQuals = 0;
1188 ConvExtInfo.TypeQuals = Qualifiers::Const;
1343 ExtInfo.TypeQuals = 0;
1351 ExtInfo.TypeQuals = Qualifiers::Const;
H A DDeclSpec.cpp156 unsigned TypeQuals,
174 assert(!(TypeQuals & DeclSpec::TQ_atomic) &&
189 I.Fun.TypeQuals = TypeQuals;
149 getFunction(bool hasProto, bool isAmbiguous, SourceLocation LParenLoc, ParamInfo *Params, unsigned NumParams, SourceLocation EllipsisLoc, SourceLocation RParenLoc, unsigned TypeQuals, bool RefQualifierIsLvalueRef, SourceLocation RefQualifierLoc, SourceLocation ConstQualifierLoc, SourceLocation VolatileQualifierLoc, SourceLocation MutableLoc, ExceptionSpecificationType ESpecType, SourceLocation ESpecLoc, ParsedType *Exceptions, SourceRange *ExceptionRanges, unsigned NumExceptions, Expr *NoexceptExpr, SourceLocation LocalRangeBegin, SourceLocation LocalRangeEnd, Declarator &TheDeclarator, TypeResult TrailingReturnType) argument
H A DSemaDeclCXX.cpp6282 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
6284 diag::err_constructor_return_type, TypeQuals, SourceLocation(),
6292 if (FTI.TypeQuals != 0) {
6293 if (FTI.TypeQuals & Qualifiers::Const)
6296 if (FTI.TypeQuals & Qualifiers::Volatile)
6299 if (FTI.TypeQuals & Qualifiers::Restrict)
6322 EPI.TypeQuals = 0;
6451 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
6452 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals,
6463 if (FTI.TypeQuals !
[all...]
H A DSemaTemplateDeduction.cpp3734 EPI.TypeQuals = 0;
H A DSemaDecl.cpp3343 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
3346 if (TypeQuals & DeclSpec::TQ_restrict)
7745 EPI.TypeQuals |= Qualifiers::Const;
10334 /*TypeQuals=*/0,
H A DSemaTemplate.cpp6651 EPI.TypeQuals |= Qualifiers::Const;
H A DSemaExpr.cpp10462 EPI.TypeQuals |= DeclSpec::TQ_const;
10639 EPI.TypeQuals = 0; // FIXME: silently?
/external/clang/include/clang/AST/
H A DDeclCXX.h2246 /// \p TypeQuals will be set to the qualifiers on the
2247 /// argument type. For example, \p TypeQuals would be set to \c
2256 bool isCopyConstructor(unsigned &TypeQuals) const;
2262 unsigned TypeQuals = 0;
2263 return isCopyConstructor(TypeQuals);
2269 /// \param TypeQuals If this constructor is a move constructor, will be set
2271 bool isMoveConstructor(unsigned &TypeQuals) const;
2276 unsigned TypeQuals = 0;
2277 return isMoveConstructor(TypeQuals);
2282 /// \param TypeQuals Wil
[all...]
H A DType.h1255 /// TypeQuals - Used only by FunctionProtoType, put here to pack with the
1261 unsigned TypeQuals : 3;
2321 unsigned TypeQuals) {
2325 ID.AddInteger(TypeQuals);
2358 ArraySizeModifier SizeMod, unsigned TypeQuals) {
2361 ID.AddInteger(TypeQuals);
2478 unsigned TypeQuals, Expr *E);
2776 FunctionTypeBits.TypeQuals = typeQuals;
2778 unsigned getTypeQuals() const { return FunctionTypeBits.TypeQuals; }
2850 : Variadic(false), HasTrailingReturn(false), TypeQuals(
2319 Profile(llvm::FoldingSetNodeID &ID, QualType ET, const llvm::APInt &ArraySize, ArraySizeModifier SizeMod, unsigned TypeQuals) argument
2357 Profile(llvm::FoldingSetNodeID &ID, QualType ET, ArraySizeModifier SizeMod, unsigned TypeQuals) argument
2866 unsigned char TypeQuals; member in struct:clang::FunctionType::ExtInfo::FunctionProtoType::ExtProtoInfo
[all...]
/external/clang/lib/AST/
H A DDeclCXX.cpp1729 CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
1730 return isCopyOrMoveConstructor(TypeQuals) &&
1734 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
1735 return isCopyOrMoveConstructor(TypeQuals) &&
1740 bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
1777 TypeQuals = PointeeType.getCVRQualifiers();
H A DTypePrinter.cpp113 static void AppendTypeQualList(raw_ostream &OS, unsigned TypeQuals) { argument
115 if (TypeQuals & Qualifiers::Const) {
119 if (TypeQuals & Qualifiers::Volatile) {
124 if (TypeQuals & Qualifiers::Restrict) {
H A DType.cpp139 unsigned TypeQuals,
143 ID.AddInteger(TypeQuals);
1594 : FunctionType(FunctionProto, result, epi.TypeQuals, canonical,
1756 !(unsigned(epi.TypeQuals) & ~255) &&
1761 (epi.TypeQuals << 1) +
135 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, QualType ET, ArraySizeModifier SizeMod, unsigned TypeQuals, Expr *E) argument
H A DASTImporter.cpp1623 ToEPI.TypeQuals = FromEPI.TypeQuals;
/external/lldb/source/Symbol/
H A DClangASTContext.cpp1971 proto_info.TypeQuals = type_quals;
/external/clang/lib/Serialization/
H A DASTReader.cpp5239 EPI.TypeQuals = Record[Idx++];

Completed in 2234 milliseconds