OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PathSize
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/AST/
ExprCXX.cpp
475
unsigned
PathSize
= (BasePath ? BasePath->size() : 0);
477
+
PathSize
* sizeof(CXXBaseSpecifier*));
479
new (Buffer) CXXStaticCastExpr(T, VK, K, Op,
PathSize
, WrittenTy, L,
481
if (
PathSize
) E->setCastPath(*BasePath);
486
unsigned
PathSize
) {
488
C.Allocate(sizeof(CXXStaticCastExpr) +
PathSize
* sizeof(CXXBaseSpecifier*));
489
return new (Buffer) CXXStaticCastExpr(EmptyShell(),
PathSize
);
499
unsigned
PathSize
= (BasePath ? BasePath->size() : 0);
501
+
PathSize
* sizeof(CXXBaseSpecifier*));
503
new (Buffer) CXXDynamicCastExpr(T, VK, K, Op,
PathSize
, WrittenTy, L
[
all
...]
Expr.cpp
[
all
...]
Completed in 252 milliseconds