OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:viable
(Results
51 - 75
of
551
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/smali/smalidea/testData/
InvalidLocal.txt
31
PsiErrorElement:no
viable
alternative at input '.end method'
63
PsiErrorElement:no
viable
alternative at input '.end method'
InvalidParameter.txt
36
PsiErrorElement:no
viable
alternative at input '.a'
82
PsiErrorElement:no
viable
alternative at input '.'
InvalidMethod2.txt
45
PsiErrorElement:no
viable
alternative at input '<EOF>'
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p1.cpp
9
class foo {}; // expected-note {{candidate constructor (the implicit copy constructor) not
viable
}}
11
// expected-note@-2 {{candidate constructor (the implicit move constructor) not
viable
}}
47
test<2> _2 = (foo)(b); // expected-error {{no
viable
conversion from 'class Test0::foo' to 'class ::foo'}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp
25
X3(X3&); // expected-note{{candidate constructor not
viable
: expects an l-value for 1st argument}}
46
X5(const X5&, const X5& = X5()); // expected-warning{{no
viable
constructor copying parameter of type 'X5'}}
58
g3(X3()); // expected-warning{{no
viable
constructor copying parameter of type 'X3'}}
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSyntaxErrors.java
43
String expecting = "line 1:1 no
viable
alternative at input 'e'\n";
57
String expecting = "line 1:2 no
viable
alternative at input 'e'\n";
70
String expecting = "line 1:3 no
viable
alternative at input 'e'\n";
87
String expecting = "line 1:0 no
viable
alternative at input '('\n";
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p2.cpp
36
struct Number { // expected-note 2 {{candidate constructor (the implicit copy constructor) not
viable
}}
38
// expected-note@-2 2 {{candidate constructor (the implicit move constructor) not
viable
}}
66
Numbers2::g(i); // expected-error {{no
viable
conversion from 'int' to 'Numbers::Number'}}
70
Numbers2::g(f); // expected-error {{no
viable
conversion from 'float' to 'Numbers::Number'}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
p2.cpp
13
void recurse_until_fail(const Head &, const Tail &...tail) { // expected-note{{candidate function template not
viable
: requires at least 1 argument, but 0 were provided}}
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp
18
template<short s> void h(int (&)[s]); // expected-note{{candidate function template not
viable
: requires 1 argument, but 2 were provided}}
/external/clang/test/FixIt/
fixit-function-call.cpp
101
// CHECK: error: no
viable
overloaded '='
112
// CHECK: candidate function not
viable
: no known conversion from 'C' to 'const C *' for 1st argument; take the address of the argument with &
113
// CHECK: candidate function not
viable
114
// CHECK: candidate function not
viable
/external/clang/test/PCH/
ms-if-exists.cpp
28
// expected-error@14{{no
viable
conversion from 'HasFoo' to 'int *'}}
/external/clang/test/SemaCXX/
overload-0x.cpp
5
struct A { // expected-note {{candidate function (the implicit copy assignment operator) not
viable
: 'this' argument has type 'const test0::A', but method is not marked const}}
7
// expected-note@-2 {{candidate function (the implicit move assignment operator) not
viable
: 'this' argument has type 'const test0::A', but method is not marked const}}
9
A &operator=(void*); // expected-note {{candidate function not
viable
: 'this' argument has type 'const test0::A', but method is not marked const}}
13
a = "help"; // expected-error {{no
viable
overloaded '='}}
attr-noreturn.cpp
247
// expected-note@+5 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not
viable
: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
248
// expected-note@+4 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not
viable
: no overload of 'qux' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
249
// expected-note@+3 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not
viable
: no overload of 'bar' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
250
// expected-note@+2 {{candidate function [with T = void (*)(int)] not
viable
: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
251
// expected-note@+1 {{candidate function [with T = void (int)] not
viable
: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
254
// expected-note@+1 {{candidate function not
viable
: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
259
// expected-note@+2 {{candidate function not
viable
: no overload of 'baz' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
260
// expected-note@+1 {{candidate function not
viable
: no overload of 'qux' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
268
// expected-note@+1 {{candidate function not
viable
: no overload of 'bar' matching 'fptr_t' (aka 'void (*)(int)') for 1st argument}}
273
// expected-note@+2 {{candidate function not
viable
: no overload of 'baz' matching 'fptr_noreturn_t' (aka 'void (*)(int) __attribute__((noreturn))') f (…)
[
all
...]
cxx0x-initializer-constructor.cpp
125
B(C, int, C); // expected-note {{candidate constructor not
viable
: cannot convert initializer list argument to 'objects::C'}}
134
one ov1(B); // expected-note {{not
viable
: cannot convert initializer list}}
135
two ov1(C); // expected-note {{not
viable
: cannot convert initializer list}}
147
static_assert(sizeof(ov2({1, 2, 3})) == sizeof(two), "bad overload"); // list -> F only
viable
150
struct G { // expected-note 6 {{not
viable
}}
153
G(std::initializer_list<int>, T ...); // expected-note 3 {{not
viable
}}
156
struct H { // expected-note 6 {{not
viable
}}
157
explicit H(int, int); // expected-note 3 {{not
viable
}} expected-note {{declared here}}
158
H(int, void*); // expected-note 3 {{not
viable
}}
163
// (for the second phase, no constructor is
viable
)
[
all
...]
vector.cpp
31
// expected-note{{candidate function not
viable
: no known conversion from 'convertible_to<longlong16_e>' to 'char16_e' (vector of 16 'char' values) for 1st argument}}
107
struct convertible_to { // expected-note 3 {{candidate function (the implicit copy assignment operator) not
viable
}}
109
// expected-note@-2 3 {{candidate function (the implicit move assignment operator) not
viable
}}
146
(void)(rto_c16 = to_c16); // expected-error{{no
viable
overloaded '='}}
165
(void)(rto_c16e = to_c16); // expected-error{{no
viable
overloaded '='}}
184
(void)(rto_c16 = c16e); // expected-error{{no
viable
overloaded '='}}
203
void accept_fltx2(fltx2); // expected-note{{candidate function not
viable
: no known conversion from 'double' to 'fltx2' (vector of 2 'float' values) for 1st argument}}
207
void accept_bool(bool); // expected-note{{candidate function not
viable
: no known conversion from 'fltx2' (vector of 2 'float' values) to 'bool' for 1st argument}}
dcl_init_aggr.cpp
15
// expected-note@-2 3 {{candidate constructor (the implicit copy constructor) not
viable
}}
16
// expected-note@-3 3 {{candidate constructor (the implicit move constructor) not
viable
}}
20
// expected-note@-2 3 {{candidate constructor not
viable
: requires 0 arguments, but 2 were provided}}
76
// expected-note@-2 3 {{candidate constructor not
viable
: requires 1 argument, but 0 were provided}}
78
// expected-note@-4 4 {{candidate constructor not
viable
: requires 1 argument, but 0 were provided}}
177
u u3 = 1; // expected-error{{no
viable
conversion}}
/external/clang/test/SemaTemplate/
instantiate-subscript.cpp
19
Result &result = t[u]; // expected-error{{no
viable
overloaded operator[] for type}}
/external/pdfium/fpdfsdk/pwl/
cpwl_caret.cpp
64
// Note, |this| may no longer be
viable
at this point. If more work needs
85
// Note, |this| may no longer be
viable
at this point. If more work needs
101
// Note, |this| may no longer be
viable
at this point. If more work needs
113
// Note, |this| may no longer be
viable
at this point. If more work
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
errsupport.c
82
"parse error: in rule %s, no
viable
alternative for NULL tree\n",
86
"parse error: in rule %s, no
viable
alternative for tree\n",
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
default-arguments.cpp
30
// expected-note{{candidate constructor not
viable
: requires 1 argument, but 0 were provided}}
46
// expected-note{{candidate function not
viable
: requires single argument 'value', but no arguments were provided}} \
/external/clang/test/CXX/special/class.copy/
implicit-move.cpp
109
ContainsConst & operator =(ContainsConst &); // expected-note {{not
viable
}}
115
ContainsRef & operator =(ContainsRef &); // expected-note {{not
viable
}}
121
struct DirectVirtualBase : virtual Base {}; // expected-note {{copy assignment operator) not
viable
}}
122
struct IndirectVirtualBase : DirectVirtualBase {}; // expected-note {{copy assignment operator) not
viable
}}
145
cc = ContainsConst(); // expected-error {{no
viable
}}
148
cr = ContainsRef(); // expected-error {{no
viable
}}
151
dvb = DirectVirtualBase(); // expected-error {{no
viable
}}
154
ivb = IndirectVirtualBase(); // expected-error {{no
viable
}}
/external/clang/test/Misc/
include-stack-for-note-flag.cpp
18
// STACK: note: candidate function not
viable
25
// STACKLESS: note: candidate function not
viable
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp
8
for (int& it : x) { // expected-error {{invalid range expression of type 'int'; no
viable
'begin' function available}}
91
for (A NS:A()) { // expected-error {{no
viable
conversion from 'int' to 'X::A'}}
142
for (auto u : X::NoBeginADL()) { // expected-error {{invalid range expression of type 'X::NoBeginADL'; no
viable
'begin' function available}}
144
for (auto u : X::NoEndADL()) { // expected-error {{invalid range expression of type 'X::NoEndADL'; no
viable
'end' function available}}
195
for (int n : 42) { // expected-error {{invalid range expression of type 'int'; no
viable
'begin' function available}}
204
for (U u : t) { // expected-error {{no
viable
conversion from 'X::A' to 'int'}}
217
for (auto u : t) { // expected-error {{invalid range expression of type 'X::A *'; no
viable
'begin' function available}} \
218
expected-error {{member function 'begin' not
viable
}} \
232
for (auto a : StdBeginEnd()) {} // expected-error {{invalid range expression of type 'StdBeginEnd'; no
viable
'begin'}}
252
for (auto u : NS::NoADL()) { // expected-error {{invalid range expression of type 'NS::NoADL'; no
viable
'begin' function available}
[
all
...]
/external/clang/test/SemaCUDA/
function-overload.cu
79
// expected-note@-2 1+ {{candidate function not
viable
: call to __device__ function from __host__ function}}
80
// expected-note@-3 0+ {{candidate function not
viable
: call to __device__ function from __host__ __device__ function}}
84
// expected-note@-2 1+ {{candidate function not
viable
: call to __host__ function from __device__ function}}
85
// expected-note@-3 0+ {{candidate function not
viable
: call to __host__ function from __host__ __device__ function}}
86
// expected-note@-4 1+ {{candidate function not
viable
: call to __host__ function from __global__ function}}
90
// expected-note@-2 1+ {{candidate function not
viable
: call to __global__ function from __device__ function}}
91
// expected-note@-3 0+ {{candidate function not
viable
: call to __global__ function from __host__ __device__ function}}
92
// expected-note@-4 1+ {{candidate function not
viable
: call to __global__ function from __global__ function}}
96
// expected-note@-2 1+ {{candidate function not
viable
: call to __device__ function from __host__ function}}
97
// expected-note@-3 0+ {{candidate function not
viable
: call to __device__ function from __host__ __device__ function}
[
all
...]
/external/clang/test/CXX/special/class.inhctor/
p2.cpp
110
constexpr UsingTemplateCtors(X<0>, X<0>) {} // expected-note {{not
viable
}}
111
constexpr UsingTemplateCtors(X<1>, X<1>) {} // expected-note {{not
viable
}}
112
constexpr UsingTemplateCtors(X<2>, X<2>) {} // expected-note {{not
viable
}}
114
template<int = 0> constexpr UsingTemplateCtors(int) {} // expected-note {{not
viable
}}
115
template<typename T = void> constexpr UsingTemplateCtors(int, int) {} // expected-note {{not
viable
}}
Completed in 386 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>