HomeSort by relevance Sort by last modified time
    Searched full:void (Results 301 - 325 of 76704) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/memcheck/tests/
wrap7so.c 6 void actual ( void )
  /frameworks/compile/slang/tests/F_init_nonvoid/
stderr.txt.expect 1 init_nonvoid.rs:4:5: error: init(void) is required to have a void return type
  /frameworks/compile/slang/tests/P_overload/
overload.rs 4 void __attribute__((overloadable)) foo(int i) {
7 void __attribute__((overloadable)) foo(float f) {
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp 42 void values_data();
44 void ctorBool();
45 void ctorReal();
46 void ctorNumber();
47 void ctorQString();
48 void ctorCString();
49 void ctorSpecial();
50 void ctorQScriptValue();
52 void isValid_data();
53 void isValid()
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
ClientImpl.h 30 void qt_wk_didStartProvisionalLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo);
31 void qt_wk_didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo);
32 void qt_wk_didFailProvisionalLoadWithErrorForFrame(WKPageRef, WKFrameRef, WKErrorRef, WKTypeRef, const void* clientInfo);
33 void qt_wk_didCommitLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo);
34 void qt_wk_didFinishDocumentLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo)
    [all...]
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/basic.stc.dynamic.deallocation/
p1.cpp 4 void operator delete(void*);
8 void operator delete(void *); // expected-error {{'operator delete' cannot be declared inside a namespace}}
11 static void operator delete(void *); // expected-error {{'operator delete' cannot be declared static in global scope}}
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
p2-noexceptions.cpp 10 void* operator new(std::size_t);
11 void* operator new[](std::size_t);
12 void operator delete(void*);
13 void operator delete[](void*);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p3.cpp 3 void f0a(void) {
4 inline void f1(); // expected-error {{inline declaration of 'f1' not allowed in block scope}}
7 void f0b(void) {
8 void f1();
  /external/clang/test/CXX/special/class.free/
p6.cpp 5 void operator delete(void*) {
6 (void)this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
8 void operator delete[](void*) {
9 (void)this; // expected-error {{invalid use of 'this' outside of a non-static member function}}
  /external/clang/test/CodeGen/
2004-02-13-Memset.c 4 void *memset(void*, int, size_t);
5 void bzero(void*, size_t);
7 void test(int* X, char *Y) {
10 // CHECK: call void bzero
PR2743-reference-missing-static.c 9 static void e0();
10 void f0() { e0(); }
12 inline void e1();
13 void f1() { e1(); }
15 void e2() __attribute__((weak));
16 void f2() { e2(); }
  /external/clang/test/CodeGenCXX/
function-template-explicit-specialization.cpp 3 template<typename T> void a(T);
4 template<> void a(int) {}
6 // CHECK: define void @_Z1aIiEvT_
9 template<typename T> void b(T);
10 template<> void b(int) {}
13 // CHECK: define void @_ZN1X1bIiEEvT_
mangle-address-space.cpp 3 // CHECK: define void @_Z2f0Pc
4 void f0(char *p) { }
5 // CHECK: define void @_Z2f0PU3AS1c
6 void f0(char __attribute__((address_space(1))) *p) { }
11 // CHECK: define void @_Z2f0PU5AS10010OpaqueType
12 void f0(OpaqueTypePtr) { }
mangle-system-header.cpp 6 // CHECK: define void @_ZdlPvS_(
7 void operator delete (void*, void*) {}
10 // CHECK: define void @_Z3barv()
11 void bar() { }
no-exceptions.cpp 3 void g();
5 // CHECK: define void @_Z1fv() nounwind
6 void f() throw (int) {
8 // CHECK-NOT: invoke void @_Z1gv
10 // CHECK: call void @_Z1gv()
11 // CHECK: ret void
reinterpret-cast.cpp 2 void *f1(unsigned long l) {
3 return reinterpret_cast<void *>(l);
10 unsigned long f3(void *p) {
14 void f4(int*&);
15 void f5(void*& u) {
thunks-available-externally.cpp 9 virtual void f();
10 virtual void g(Incomplete);
11 virtual void h();
12 virtual void i();
17 virtual void f();
18 virtual void g(Incomplete);
19 virtual void h();
20 virtual void i();
27 virtual void f();
28 virtual void g(Incomplete)
    [all...]
  /external/clang/test/PCH/Inputs/
chain-selectors2.h 2 -(void)f;
4 -(void)e;
7 void foo2() {
9 //(void)@selector(y);
10 //(void)@selector(e);
14 - (void)blarg_method;
  /external/clang/test/Sema/
attr-returns-twice.c 5 __attribute__((returns_twice)) void t0(void) {
8 void t1() __attribute__((returns_twice));
10 void t2() __attribute__((returns_twice(2))); // expected-error {{attribute takes no arguments}}
12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}}
  /external/clang/test/SemaCXX/Inputs/
warn-new-overaligned-3.h 6 void* operator new(unsigned long) {
9 void* operator new[](unsigned long) {
13 void* operator new(unsigned long, void *) {
17 void* operator new[](unsigned long, void *) {
  /external/clang/test/SemaObjC/
no-warn-qual-mismatch.m 6 + (void)prototypeWithScalar:(int)aParameter;
7 + (void)prototypeWithPointer:(void *)aParameter;
13 + (void)prototypeWithScalar:(const int)aParameter {}
14 + (void)prototypeWithPointer:(void * const)aParameter {}
  /external/icu4c/test/cintltst/
calltest.c 19 void addUtility(TestNode** root);
20 void addBreakIter(TestNode** root);
21 void addStandardNamesTest(TestNode **root);
22 void addFormatTest(TestNode** root);
23 void addConvert(TestNode** root);
24 void addCollTest(TestNode** root);
25 void addComplexTest(TestNode** root);
26 void addUDataTest(TestNode** root);
27 void addUTF16Test(TestNode** root);
28 void addUTF8Test(TestNode** root)
    [all...]
cnmdptst.h 27 static void TestPatterns(void);
30 static void TestQuotes(void);
33 static void TestExponential(void);
36 static void TestCurrencySign(void);
39 static void TestRounding487(void);
    [all...]
  /external/linux-tools-perf/util/
pstack.h 8 void pstack__delete(struct pstack *self);
10 void pstack__remove(struct pstack *self, void *key);
11 void pstack__push(struct pstack *self, void *key);
12 void *pstack__pop(struct pstack *self);
  /external/llvm/test/CodeGen/ARM/
arm-asm.ll 3 define void @frame_dummy() {
5 %tmp1 = tail call void (i8*)* (void (i8*)*)* asm "", "=r,0,~{dirflag},~{fpsr},~{flags}"( void (i8*)* null ) ; <void (i8*)*> [#uses=0]
6 ret void

Completed in 2557 milliseconds

<<11121314151617181920>>