Searched defs:nullPos (Results 1 - 2 of 2) sorted by path

/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2077 unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos; local
2088 nullPos = Idx.getZExtValue();
2090 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
2142 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
H A DSemaExpr.cpp375 // "nullPos" is the number of formal parameters at the end which
379 unsigned nullPos = attr->getNullPos(); local
380 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
381 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);

Completed in 310 milliseconds