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 500 unsigned PathSize = (BasePath ? BasePath->size() : 0);
502 + PathSize * sizeof(CXXBaseSpecifier*));
504 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
506 if (PathSize) E->setCastPath(*BasePath);
511 unsigned PathSize) {
513 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
514 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
524 unsigned PathSize = (BasePath ? BasePath->size() : 0);
526 + PathSize * sizeof(CXXBaseSpecifier*));
528 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L
    [all...]
Expr.cpp     [all...]

Completed in 39 milliseconds