OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:void
(Results
626 - 650
of
76729
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/clang/test/Analysis/
cxx-crashes.cpp
17
void
*f4(int* w) {
18
return reinterpret_cast<
void
*&>(w);
38
void
*p;
41
void
*f(S* w) {
42
return &reinterpret_cast<
void
*&>(*w);
50
void
*p;
51
static
void
f();
54
void
C::f() { }
/external/clang/test/CXX/class/class.mem/
p8-0x.cpp
4
virtual
void
g();
8
virtual
void
g() override override; // expected-error {{class member already marked 'override'}}
9
virtual
void
h() final final; // expected-error {{class member already marked 'final'}}
13
virtual
void
e1(), e2();
14
virtual
void
f();
18
virtual
void
e1() override, e2(int); // No error.
19
virtual
void
f() override;
20
void
g() override; // expected-error {{only virtual member functions can be marked 'override'}}
25
virtual
void
f() final;
26
void
g() final; // expected-error {{only virtual member functions can be marked 'final'}
[
all
...]
/external/clang/test/CXX/conv/conv.ptr/
p2.cpp
4
extern
void
* x[];
5
void
* dummy[] = { &x };
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p4.cpp
4
void
f0() {
7
inline
void
f0(); // expected-error {{function definition cannot precede inline declaration}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p2.cpp
3
void
point(int = 3, int = 4);
5
void
test_point() {
/external/clang/test/CXX/special/class.copy/
p3.cpp
11
void
f(X<int>) { }
18
// CHECK: call
void
@_ZN1YC1Ev
19
// CHECK: call
void
@_ZN1XIiEC1ERKS0_
20
// CHECK: call
void
@_Z1f1XIiE
22
// CHECK: call
void
@_ZN1ZC1Ev
23
// CHECK: call
void
@_ZN1XIfEC1ERKS0_
24
// CHECK: call
void
@_ZN1XIiEC1IfEES_IT_E
25
// CHECK: call
void
@_Z1f1XIiE
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
p9-linkage.cpp
5
void
f(T &t) {
9
void
g(T &t);
11
void
h(T &t);
17
inline
void
X0<T>::g(T & t) {
22
void
X0<T>::h(T & t) {
32
// CHECK: define available_externally
void
@_ZN2X0IPiE1fERS0_
34
// CHECK: define available_externally
void
@_ZN2X0IPiE1gERS0_
36
// CHECK: declare
void
@_ZN2X0IPiE1hERS0_
42
void
f0(T& t) {
47
inline
void
f1(T& t)
[
all
...]
/external/clang/test/CodeGen/
2002-10-12-TooManyArguments.c
4
void
foo() {}
6
void
bar() {
2004-06-08-OpaqueStructArg.c
4
void
foo(struct fu);
5
void
bar() {
2006-03-17-KnRMismatch.c
3
void
regnode(int op);
5
void
regnode(op)
2007-01-06-KNR-Proto.c
4
int svc_register (
void
(*dispatch) (int));
7
void
(*dispatch) ();
2007-02-07-AddrLabel.c
4
void
foo() {
5
void
*ptr;
2007-08-21-ComplexCst.c
2
void
f(_Complex float z);
3
void
g() { f(1.0i); }
2007-10-15-VoidPtr.c
2
void
bork(
void
**data) {
2008-08-04-void-pointer-arithmetic.c
4
int f0(
void
*a,
void
*b) {
2009-03-01-MallocNoAlias.c
3
void
* __attribute__ ((malloc)) foo (
void
) { return 0; }
2009-07-14-VoidPtr.c
4
extern
void
foo;
5
void
*bar = &foo;
attr-noinline.c
4
void
t1() __attribute__((noinline));
6
void
t1()
attribute_constructor.c
3
void
foo() __attribute__((constructor));
4
void
foo() {
func-decl-cleanup.c
5
typedef
void
fn_t();
9
void
b()
func-ptr-cast-decl.c
4
int q_sk_num(
void
*a);
6
void
a() { ((fptr)q_sk_num)(0); }
int-to-pointer.c
3
void
*test(int i)
5
return (
void
*)i;
kr-style-block.c
3
void
foo (
void
(^)());
weak-incomplete.c
4
void
__attribute__((weak)) foo1(struct S);
5
void
(*foo2)(struct S) = foo1;
/external/clang/test/CodeGenCXX/
2004-03-09-UnmangledBuiltinMethods.cpp
5
void
strlen();
8
void
AccessFlags::strlen() { }
Completed in 757 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>