Searched defs:PathSize (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
H A DExprCXX.h188 CastKind kind, Expr *op, unsigned PathSize,
192 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
195 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
196 : ExplicitCastExpr(SC, Shell, PathSize) { }
239 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize) argument
240 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize) { }
250 unsigned PathSize);
1219 explicit CXXFunctionalCastExpr(EmptyShell Shell, unsigned PathSize)
1220 : ExplicitCastExpr(CXXFunctionalCastExprClass, Shell, PathSize) { }
1231 unsigned PathSize);
187 CXXNamedCastExpr(StmtClass SC, QualType ty, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy, SourceLocation l, SourceLocation RParenLoc, SourceRange AngleBrackets) argument
[all...]
H A DExpr.h2739 explicit ImplicitCastExpr(EmptyShell Shell, unsigned PathSize) argument
2740 : CastExpr(ImplicitCastExprClass, Shell, PathSize) { }
2754 static ImplicitCastExpr *CreateEmpty(ASTContext &Context, unsigned PathSize);
2798 CastKind kind, Expr *op, unsigned PathSize,
2800 : CastExpr(SC, exprTy, VK, kind, op, PathSize), TInfo(writtenTy) {}
2803 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
2804 : CastExpr(SC, Shell, PathSize) { }
2830 unsigned PathSize, TypeSourceInfo *writtenTy,
2832 : ExplicitCastExpr(CStyleCastExprClass, exprTy, vk, kind, op, PathSize,
2836 explicit CStyleCastExpr(EmptyShell Shell, unsigned PathSize) argument
2797 ExplicitCastExpr(StmtClass SC, QualType exprTy, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy) argument
2829 CStyleCastExpr(QualType exprTy, ExprValueKind vk, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy, SourceLocation l, SourceLocation r) argument
[all...]
/external/clang/lib/AST/
H A DExprCXX.cpp534 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
536 + PathSize * sizeof(CXXBaseSpecifier*));
538 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
540 if (PathSize) E->setCastPath(*BasePath);
545 unsigned PathSize) {
547 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
548 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
559 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
561 + PathSize * sizeof(CXXBaseSpecifier*));
563 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenT
544 CreateEmpty(ASTContext &C, unsigned PathSize) argument
569 CreateEmpty(ASTContext &C, unsigned PathSize) argument
616 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
627 CreateEmpty(ASTContext &C, unsigned PathSize) argument
651 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
661 CreateEmpty(ASTContext &C, unsigned PathSize) argument
[all...]
H A DExpr.cpp1644 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
1646 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1648 new (Buffer) ImplicitCastExpr(T, Kind, Operand, PathSize, VK);
1649 if (PathSize) E->setCastPath(*BasePath);
1654 unsigned PathSize) {
1656 C.Allocate(sizeof(ImplicitCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1657 return new (Buffer) ImplicitCastExpr(EmptyShell(), PathSize);
1666 unsigned PathSize = (BasePath ? BasePath->size() : 0); local
1668 C.Allocate(sizeof(CStyleCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
1670 new (Buffer) CStyleCastExpr(T, VK, K, Op, PathSize, WrittenT
1653 CreateEmpty(ASTContext &C, unsigned PathSize) argument
1675 CreateEmpty(ASTContext &C, unsigned PathSize) argument
[all...]

Completed in 171 milliseconds