HomeSort by relevance Sort by last modified time
    Searched refs:Iter0 (Results 1 - 3 of 3) sorted by null

  /external/clang/test/OpenMP/
for_loop_messages.cpp 355 class Iter0 {
357 Iter0() {}
358 Iter0(const Iter0 &) {}
359 Iter0 operator++() { return *this; }
360 Iter0 operator--() { return *this; }
361 bool operator<(Iter0 a) { return true; }
363 int operator-(Iter0 a, Iter0 b) { return 0; }
379 GoodIter &operator=(const Iter0 &that) { return *this;
    [all...]
parallel_for_loop_messages.cpp 304 class Iter0 {
306 Iter0() {}
307 Iter0(const Iter0 &) {}
308 Iter0 operator++() { return *this; }
309 Iter0 operator--() { return *this; }
310 bool operator<(Iter0 a) { return true; }
312 int operator-(Iter0 a, Iter0 b) { return 0; }
328 GoodIter &operator=(const Iter0 &that) { return *this;
    [all...]
simd_loop_messages.cpp 297 class Iter0 {
299 Iter0() { }
300 Iter0(const Iter0 &) { }
301 Iter0 operator ++() { return *this; }
302 Iter0 operator --() { return *this; }
303 bool operator <(Iter0 a) { return true; }
305 int operator -(Iter0 a, Iter0 b) { return 0; }
321 GoodIter &operator =(const Iter0 &that) { return *this;
    [all...]

Completed in 71 milliseconds