Searched defs:TypeQuals (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/AST/
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
/external/clang/lib/Sema/
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
/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/include/clang/AST/
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...]

Completed in 156 milliseconds