Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Sz

98     unsigned short Sz;     ///< Number of child nodes
104 Flags(static_cast<unsigned char>(F)), Sz(1), Data(D)
107 unsigned size() const { return Sz; }
108 void setSize(unsigned S) { Sz = S; }
317 unsigned Sz = buildSExpr(ME->getBase(), CallCtx, &ImplicitDeref);
319 NodeVec[Root].setSize(Sz + 1);
320 return Sz + 1;
344 unsigned Sz = buildSExpr(CMCE->getImplicitObjectArgument(), CallCtx);
347 Sz += buildSExpr(CallArgs[i], CallCtx);
349 NodeVec[Root].setSize(Sz + 1);
350 return Sz + 1;
374 unsigned Sz = buildSExpr(CE->getCallee(), CallCtx);
377 Sz += buildSExpr(CallArgs[i], CallCtx);
379 NodeVec[Root].setSize(Sz+1);
380 return Sz+1;
383 unsigned Sz = buildSExpr(BOE->getLHS(), CallCtx);
384 Sz += buildSExpr(BOE->getRHS(), CallCtx);
385 NodeVec[Root].setSize(Sz);
386 return Sz;
410 unsigned Sz = buildSExpr(UOE->getSubExpr(), CallCtx);
411 NodeVec[Root].setSize(Sz);
412 return Sz;
416 unsigned Sz = buildSExpr(ASE->getBase(), CallCtx);
417 Sz += buildSExpr(ASE->getIdx(), CallCtx);
418 NodeVec[Root].setSize(Sz);
419 return Sz;
423 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
424 Sz += buildSExpr(CE->getTrueExpr(), CallCtx);
425 Sz += buildSExpr(CE->getFalseExpr(), CallCtx);
426 NodeVec[Root].setSize(Sz);
427 return Sz;
430 unsigned Sz = buildSExpr(CE->getCond(), CallCtx);
431 Sz += buildSExpr(CE->getLHS(), CallCtx);
432 Sz
433 NodeVec[Root].setSize(Sz);
434 return Sz;