Searched refs:nullPos (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2374 unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos; local
2385 nullPos = Idx.getZExtValue();
2387 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
2439 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
H A DSemaExpr.cpp438 // "nullPos" is the number of formal parameters at the end which
442 unsigned nullPos = attr->getNullPos(); local
443 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
444 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);

Completed in 102 milliseconds