OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Iter1
(Results
1 - 7
of
7
) sorted by null
/external/clang/test/OpenMP/
for_loop_messages.cpp
397
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
399
class
Iter1
{
401
Iter1
(float f = 0.0f, double d = 0.0) {}
402
Iter1
(const
Iter1
&) {}
403
Iter1
operator++() { return *this; }
404
Iter1
operator--() { return *this; }
405
bool operator<(
Iter1
a) { return true; }
406
bool operator>=(
Iter1
a) { return false; }
428
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
for_simd_loop_messages.cpp
380
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
382
class
Iter1
{
384
Iter1
(float f = 0.0f, double d = 0.0) {}
385
Iter1
(const
Iter1
&) {}
386
Iter1
operator++() { return *this; }
387
Iter1
operator--() { return *this; }
388
bool operator<(
Iter1
a) { return true; }
389
bool operator>=(
Iter1
a) { return false; }
410
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
parallel_for_loop_messages.cpp
325
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
327
class
Iter1
{
329
Iter1
(float f = 0.0f, double d = 0.0) {}
330
Iter1
(const
Iter1
&) {}
331
Iter1
operator++() { return *this; }
332
Iter1
operator--() { return *this; }
333
bool operator<(
Iter1
a) { return true; }
334
bool operator>=(
Iter1
a) { return false; }
356
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
parallel_for_simd_loop_messages.cpp
327
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
329
class
Iter1
{
331
Iter1
(float f = 0.0f, double d = 0.0) {}
332
Iter1
(const
Iter1
&) {}
333
Iter1
operator++() { return *this; }
334
Iter1
operator--() { return *this; }
335
bool operator<(
Iter1
a) { return true; }
336
bool operator>=(
Iter1
a) { return false; }
357
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
simd_loop_messages.cpp
321
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
323
class
Iter1
{
325
Iter1
(float f=0.0f, double d=0.0) { }
326
Iter1
(const
Iter1
&) { }
327
Iter1
operator ++() { return *this; }
328
Iter1
operator --() { return *this; }
329
bool operator <(
Iter1
a) { return true; }
330
bool operator >=(
Iter1
a) { return false; }
350
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
taskloop_loop_messages.cpp
398
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
400
class
Iter1
{
402
Iter1
(float f = 0.0f, double d = 0.0) {}
403
Iter1
(const
Iter1
&) {}
404
Iter1
operator++() { return *this; }
405
Iter1
operator--() { return *this; }
406
bool operator<(
Iter1
a) { return true; }
407
bool operator>=(
Iter1
a) { return false; }
429
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
taskloop_simd_loop_messages.cpp
399
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'Iter0' for 1st argument}}
401
class
Iter1
{
403
Iter1
(float f = 0.0f, double d = 0.0) {}
404
Iter1
(const
Iter1
&) {}
405
Iter1
operator++() { return *this; }
406
Iter1
operator--() { return *this; }
407
bool operator<(
Iter1
a) { return true; }
408
bool operator>=(
Iter1
a) { return false; }
430
// expected-note@+1 2 {{candidate function not viable: no known conversion from '
Iter1
' to 'GoodIter' for 1st argument}
[
all
...]
Completed in 2906 milliseconds