HomeSort by relevance Sort by last modified time
    Searched defs:PathSize (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/AST/
ExprCXX.cpp 596 unsigned PathSize = (BasePath ? BasePath->size() : 0);
598 + PathSize * sizeof(CXXBaseSpecifier*));
600 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
602 if (PathSize) E->setCastPath(*BasePath);
607 unsigned PathSize) {
609 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
610 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
621 unsigned PathSize = (BasePath ? BasePath->size() : 0);
623 + PathSize * sizeof(CXXBaseSpecifier*));
625 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L
    [all...]
Expr.cpp     [all...]

Completed in 482 milliseconds