HomeSort by: relevance | last modified time | path
    Searched defs:TypeQuals (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h 2570 /// \p TypeQuals will be set to the qualifiers on the
2571 /// argument type. For example, \p TypeQuals would be set to \c
2580 bool isCopyConstructor(unsigned &TypeQuals) const;
2586 unsigned TypeQuals = 0;
2587 return isCopyConstructor(TypeQuals);
2593 /// \param TypeQuals If this constructor is a move constructor, will be set
2595 bool isMoveConstructor(unsigned &TypeQuals) const;
2600 unsigned TypeQuals = 0;
2601 return isMoveConstructor(TypeQuals);
2606 /// \param TypeQuals Will be set to the type qualifiers on the referenc
    [all...]
Type.h 2973 unsigned TypeQuals);
3006 ArraySizeModifier SizeMod, unsigned TypeQuals) {
3009 ID.AddInteger(TypeQuals);
3127 unsigned TypeQuals, Expr *E);
3974 Qualifiers TypeQuals;
4115 EPI.TypeQuals = getMethodQuals();
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 1195 unsigned TypeQuals : 5;
1228 unsigned TypeQuals : 5;
1516 unsigned TypeQuals : 5;
1524 unsigned TypeQuals : 5;
1577 static DeclaratorChunk getPointer(unsigned TypeQuals, SourceLocation Loc,
1587 I.Ptr.TypeQuals = TypeQuals;
1597 static DeclaratorChunk getReference(unsigned TypeQuals, SourceLocation Loc,
1602 I.Ref.HasRestrict = (TypeQuals & DeclSpec::TQ_restrict) != 0;
1608 static DeclaratorChunk getArray(unsigned TypeQuals,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 780 unsigned &TypeQuals,
795 if (TypeQuals & Qual.first)
801 TypeQuals &= ~Qual.first;
828 unsigned TypeQuals = DS.getTypeQualifiers();
829 diagnoseAndRemoveTypeQualifiers(S, DS, TypeQuals, Result, (unsigned)-1,
1579 // TypeQuals handled by caller.
1599 // TypeQuals handled by caller.
1609 // TypeQuals handled by caller.
1615 // TypeQuals handled by caller.
1626 // TypeQuals handled by caller
    [all...]

Completed in 79 milliseconds