Searched refs:firstdtor (Results 1 – 2 of 2) sorted by relevance
1813 ptrdiff_t firstdtor = -1; in functionParameters() local1819 if (firstdtor == -1 && arg->type->needsDestruction()) in functionParameters()1823 firstdtor = i; in functionParameters()1829 const bool needsPrefix = (firstdtor >= 0 && lastthrow >= 0 in functionParameters()1830 && (lastthrow - firstdtor) * step > 0); in functionParameters()
2249 ptrdiff_t firstdtor = -1; // first argument that needs destruction in functionParameters() local2261 if (firstdtor == -1) in functionParameters()2262 firstdtor = i; in functionParameters()2271 ? firstdtor >= 0 // true if any argument needs destruction in functionParameters()2272 : firstdtor >= 0 && lastthrow >= 0 && in functionParameters()2273 (lastthrow - firstdtor) * step > 0; // last throw after first destruction in functionParameters()