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
534
unsigned
PathSize
= (BasePath ? BasePath->size() : 0);
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);
561
+
PathSize
* sizeof(CXXBaseSpecifier*));
563
new (Buffer) CXXDynamicCastExpr(T, VK, K, Op,
PathSize
, WrittenTy, L
[
all
...]
Expr.cpp
[
all
...]
Completed in 506 milliseconds