OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:throw
(Results
1 - 25
of
2100
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Parser/
cxx-throw.cpp
6
(
throw
,
throw
);
7
(1 ?
throw
1 :
throw
2);
8
throw
int(1);
9
throw
;
10
throw
1;
11
throw
;
12
1 ?
throw
: (void)42;
13
__extension__
throw
1; // expected-error {{expected expression}
[
all
...]
/external/clang/test/SemaCXX/
ms-exception-spec.cpp
4
void f()
throw
(...) { }
exception-spec-no-exceptions.cpp
10
void foo()
throw
(int);
11
void foo()
throw
();
17
virtual void foo()
throw
();
21
virtual void foo()
throw
(int);
29
void foo()
throw
(int);
30
void bar()
throw
() {
/ndk/tests/device/test-stlport_shared-exception/jni/
eh21.cpp
7
throw
1;
eh7.cpp
6
throw
1 | 2;
eh9.cpp
4
int main()
throw
() { }
loop2.cpp
8
try {
throw
1; }
eh35.cpp
6
throw
'a';
9
throw
'a';
elide1.cpp
4
// object, we extended the
throw
prohibition to the constructor for the
5
// temporary. This is wrong; the
throw
from A() should propagate normally
12
A() {
throw
0; }
19
throw
A();
tmpl1.cpp
3
void f()
throw
(T)
5
throw
7;
eh33.cpp
7
throw
42;
10
void foo()
throw
(int) {
throw
"Hi"; }
/ndk/tests/device/test-stlport_static-exception/jni/
eh21.cpp
7
throw
1;
eh7.cpp
6
throw
1 | 2;
eh9.cpp
4
int main()
throw
() { }
loop2.cpp
8
try {
throw
1; }
eh35.cpp
6
throw
'a';
9
throw
'a';
elide1.cpp
4
// object, we extended the
throw
prohibition to the constructor for the
5
// temporary. This is wrong; the
throw
from A() should propagate normally
12
A() {
throw
0; }
19
throw
A();
tmpl1.cpp
3
void f()
throw
(T)
5
throw
7;
eh33.cpp
7
throw
42;
10
void foo()
throw
(int) {
throw
"Hi"; }
/external/clang/test/CXX/except/except.spec/
p11.cpp
6
throw
0; // no-error
8
void g()
throw
() {
9
throw
0; // no-error
11
void h()
throw
(int) {
12
throw
0.0; // no-error
p2-dynamic-types.cpp
9
void ic1()
throw
(void); // expected-error {{incomplete type 'void' is not allowed in exception specification}}
10
void ic2()
throw
(Incomplete); // expected-error {{incomplete type 'Incomplete' is not allowed in exception specification}}
11
void ic3()
throw
(void*);
12
void ic4()
throw
(Incomplete*); // expected-error {{pointer to incomplete type 'Incomplete' is not allowed in exception specification}}
13
void ic5()
throw
(Incomplete&); // expected-error {{reference to incomplete type 'Incomplete' is not allowed in exception specification}}
18
void tf()
throw
(TEx<int>); // expected-error {{implicit instantiation of undefined template}}
22
void f()
throw
(DR437);
23
void g()
throw
(DR437*);
24
void h()
throw
(DR437&);
30
void f()
throw
(DR437_out)
[
all
...]
p5-virtual.cpp
27
virtual void f1()
throw
();
28
virtual void f2()
throw
(int, float);
30
virtual void f3()
throw
(int, float);
31
virtual void f4()
throw
(A);
32
virtual void f5()
throw
(A, int, float);
40
virtual void f11()
throw
();
43
virtual void f14()
throw
(int);
48
virtual void g1()
throw
(); // expected-note {{overridden virtual function is here}}
49
virtual void g2()
throw
(int); // expected-note {{overridden virtual function is here}}
50
virtual void g3()
throw
(A); // expected-note {{overridden virtual function is here}
[
all
...]
p9-dynamic.cpp
5
void target()
throw
(int)
/external/clang/test/PCH/
cxx-functions.h
1
void foo()
throw
( int, short, char, float, double );
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
ser.h
7
return noexcept(
throw
0);
Completed in 276 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>