HomeSort by relevance Sort by last modified time
    Searched full:pathsize (Results 1 - 7 of 7) sorted by null

  /device/samsung/manta/power/
power_manta.c 71 int pathsize; local
81 pathsize = strlen(dir) + strlen(de->d_name) + sizeof(filename) + 2;
82 path = malloc(pathsize);
88 snprintf(path, pathsize, "%s/%s/%s", dir, de->d_name, filename);
  /system/core/toolbox/
mv.c 34 /* assume we build "dest/source", and let rename() fail on pathsize */
  /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...]
  /external/clang/include/clang/AST/
ExprCXX.h 188 CastKind kind, Expr *op, unsigned PathSize,
192 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
195 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize)
196 : ExplicitCastExpr(SC, Shell, PathSize) { }
233 unsigned pathSize, TypeSourceInfo *writtenTy,
236 : CXXNamedCastExpr(CXXStaticCastExprClass, ty, vk, kind, op, pathSize,
239 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize)
240 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize) { }
250 unsigned PathSize);
264 Expr *op, unsigned pathSize, TypeSourceInfo *writtenTy
    [all...]
Expr.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]

Completed in 196 milliseconds