Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Sz

94     unsigned short Sz;     ///< Number of child nodes
100 Flags(static_cast<unsigned char>(F)), Sz(1), Data(D)
103 unsigned size() const { return Sz; }
104 void setSize(unsigned S) { Sz = S; }
319 unsigned Sz = buildSExpr(ME->getBase(), CallCtx, &ImplicitDeref);
321 NodeVec[Root].setSize(Sz + 1);
322 return Sz + 1;
348 unsigned Sz = buildSExpr(CMCE->getImplicitObjectArgument(), CallCtx);
351 Sz += buildSExpr(CallArgs[i], CallCtx);
353 NodeVec[Root].setSize(Sz + 1);
354 return Sz + 1;
379 unsigned Sz = buildSExpr(CE->getCallee(), CallCtx);
382 Sz += buildSExpr(CallArgs[i], CallCtx);
384 NodeVec[Root].setSize(Sz+1);
385 return Sz+1;
388 unsigned Sz = buildSExpr(BOE->getLHS(), CallCtx);
389 Sz += buildSExpr(BOE->getRHS(), CallCtx);
390 NodeVec[Root].setSize(Sz);
391 return Sz;
415 unsigned Sz = buildSExpr(UOE->getSubExpr(), CallCtx);
416 NodeVec[Root].setSize(Sz);
417 return Sz;
421 unsigned Sz = buildSExpr(ASE->getBase(), CallCtx);
422 Sz += buildSExpr(ASE->getIdx(), CallCtx);
423 NodeVec[Root].setSize(Sz);
424 return Sz;
428 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
429 Sz
430 Sz += buildSExpr(CE->getFalseExpr(), CallCtx);
431 NodeVec[Root].setSize(Sz);
432 return Sz;
435 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
436 Sz += buildSExpr(CE->getLHS(), CallCtx);
437 Sz += buildSExpr(CE->getRHS(), CallCtx);
438 NodeVec[Root].setSize(Sz);
439 return Sz;