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 589 unsigned PathSize = (BasePath ? BasePath->size() : 0);
591 + PathSize * sizeof(CXXBaseSpecifier*));
593 new (Buffer) CXXStaticCastExpr(T, VK, K, Op, PathSize, WrittenTy, L,
595 if (PathSize) E->setCastPath(*BasePath);
600 unsigned PathSize) {
602 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
603 return new (Buffer) CXXStaticCastExpr(EmptyShell(), PathSize);
614 unsigned PathSize = (BasePath ? BasePath->size() : 0);
616 + PathSize * sizeof(CXXBaseSpecifier*));
618 new (Buffer) CXXDynamicCastExpr(T, VK, K, Op, PathSize, WrittenTy, L
    [all...]
Expr.cpp     [all...]

Completed in 53 milliseconds