Lines Matching refs:ParallelForIndex

168 struct ParallelForIndex {  struct
169 ParallelForIndex(int) requires EnableIntCtor {} in ParallelForIndex() argument
170 ParallelForIndex( const ParallelForIndex& ) requires EnableCopyCtor = default;
171 ParallelForIndex& operator=( const ParallelForIndex& ) requires EnableCopyAssign = default; argument
173 ~ParallelForIndex() requires EnableDtor = default;
174 ~ParallelForIndex() = delete;
176 …bool operator<( const ParallelForIndex& ) const requires (EnableLess == State::correct) { return t…
177 …bool operator<( const ParallelForIndex& ) requires (EnableLess == State::incorrect_constness) { re…
179 …Dummy operator<( const ParallelForIndex& ) const requires (EnableLess == State::incorrect_return_t…
181 …std::size_t operator-( const ParallelForIndex& ) const requires (EnableMinus == State::correct) { …
182 …std::size_t operator-( const ParallelForIndex& ) requires (EnableMinus == State::incorrect_constne…
184 …Dummy operator-( const ParallelForIndex& ) const requires (EnableMinus == State::incorrect_return_…
186ParallelForIndex operator+( std::size_t ) const requires (EnablePlus == State::correct) { return *…
187ParallelForIndex operator+( std::size_t ) requires (EnablePlus == State::incorrect_constness) { re…
188ParallelForIndex operator+( Dummy ) const requires (EnablePlus == State::incorrect_first_input) { …
192 using Correct = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign = */true, /*…
193 using NoIntCtor = ParallelForIndex</*IntCtor = */false, /*CopyCtor = */true, /*CopyAssign = */true,…
194 using NonCopyable = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */false, /*CopyAssign = */tru…
195 using NonCopyAssignable = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign = …
196 using NonDestructible = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign = */…
197 using NoOperatorLess = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign = */t…
198 using OperatorLessNonConst = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign…
199 using WrongInputOperatorLess = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssi…
200 using WrongReturnOperatorLess = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAss…
201 using NoOperatorMinus = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign = */…
202 using OperatorMinusNonConst = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssig…
203 using WrongInputOperatorMinus = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAss…
204 using WrongReturnOperatorMinus = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAs…
205 using NoOperatorPlus = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign = */t…
206 using OperatorPlusNonConst = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssign…
207 using WrongInputOperatorPlus = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAssi…
208 using WrongReturnOperatorPlus = ParallelForIndex</*IntCtor = */true, /*CopyCtor = */true, /*CopyAss…