HomeSort by relevance Sort by last modified time
    Searched full:void (Results 601 - 625 of 76729) sorted by null

<<21222324252627282930>>

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p2-template-id.cpp 5 int& f(void*);
13 void test() {
18 int g(void *);
22 void h(int (*)(void *));
25 void test() {
  /external/clang/test/CodeGen/
compound.c 6 void test1() {
15 void test2(char c) { x += c; }
17 void foo(char *strbuf) {
23 // Aggregate cast to void
24 union uu { int a;}; void f(union uu p) { (void) p;}
  /external/clang/test/CodeGenCXX/
2004-03-08-ReinterpretCastCopy.cpp 4 virtual void Method() = 0;
8 virtual void Method() { }
11 typedef void (A::*fn_type_a)(void);
12 typedef void (B::*fn_type_b)(void);
default-arg-temps.cpp 8 void f(const T& t = T());
16 // CHECK: define void @_Z1gv()
17 void g() {
18 // CHECK: call void @_ZN1TC1Ev([[T:%.*]]* [[AGG1:%.*]])
19 // CHECK-NEXT: call void @_Z1fRK1T([[T]]* [[AGG1]])
20 // CHECK-NEXT: call void @_ZN1TD1Ev([[T]]* [[AGG1]])
23 // CHECK-NEXT: call void @_ZN1TC1Ev([[T:%.*]]* [[AGG2:%.*]])
24 // CHECK-NEXT: call void @_Z1fRK1T([[T]]* [[AGG2]])
25 // CHECK-NEXT: call void @_ZN1TD1Ev([[T]]* [[AGG2]])
28 // CHECK-NEXT: call void @_ZN1XC1Ev
    [all...]
mangle-98.cpp 5 // CHECK: define void @_Z1f2S3ILb1EE
6 void f(S3<true>) {}
8 // CHECK: define void @_Z1f2S3ILb0EE
9 void f(S3<false>) {}
11 // CHECK: define void @_Z2f22S3ILb1EE
12 void f2(S3<100>) {}
  /external/clang/test/Parser/
c1x-generic-selection.c 3 void foo(void) {
5 (void) _Generic(0); // expected-error {{expected ','}}
6 (void) _Generic(0, void); // expected-error {{expected ':'}}
7 (void) _Generic(0,
  /external/clang/test/Sema/
conditional.c 5 void _efree(void *ptr);
6 void free(void *ptr);
9 return (1 ? free(0) : _efree(0)); // expected-error {{returning 'void' from a function with incompatible result type 'int'}}
13 return (1 ? _efree(0) : free(0)); // expected-error {{returning 'void' from a function with incompatible result type 'int'}}
illegal-types.c 3 void a (void []()); // expected-error{{'type name' declared as array of functions}}
4 void b (void p[]()); // expected-error{{'p' declared as array of functions}}
5 void c (int &[]); // expected-error{{'type name' declared as array of references}}
6 void d (int &p[]); // expected-error{{'p' declared as array of references}}
  /external/clang/test/SemaObjCXX/
nullptr.mm 6 void comparisons(A *a) {
7 (void)(a == nullptr);
8 (void)(nullptr == a);
11 void assignment(A *a) {
15 int PR10145a = (void(^)())0 == nullptr;
16 int PR10145b = nullptr == (void(^)())0;
overload-gc.mm 3 void f0(__weak id *);
5 void test_f0(id *x) {
12 void f1(__weak id*);
13 void test_f1(__weak A** a) {
20 void f2(__weak A**);
21 void test_f2(__weak B** b) {
  /external/icu4c/samples/layout/
FontTableCache.h 23 const void *find(LETag tableTag) const;
26 virtual const void *readFontTable(LETag tableTag) const = 0;
27 virtual void freeFontTable(const void *table) const;
31 void add(LETag tableTag, const void *table);
  /external/icu4c/test/cintltst/
ccapitst.h 21 static void TestConvert(void);
22 static void TestAlias(void);
23 static void TestConvertSafeClone(void);
  /external/icu4c/test/intltest/
rbbiapts.h 30 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
34 // void TestConstruction(void);
38 void TestCloneEquals();
42 void TestgetRules();
46 void TestHashCode();
50 void TestGetSetAdoptText();
54 void TestIteration(void);
60 void TestBuilder(void)
    [all...]
  /external/icu4c/test/letest/
FontTableCache.h 25 const void *find(LETag tableTag) const;
28 virtual const void *readFontTable(LETag tableTag) const = 0;
29 virtual void freeFontTable(const void *table) const;
33 void add(LETag tableTag, const void *table);
  /external/kernel-headers/original/linux/raid/
xor.h 8 extern void xor_block(unsigned int count, unsigned int bytes, void **ptr);
14 void (*do_2)(unsigned long, unsigned long *, unsigned long *);
15 void (*do_3)(unsigned long, unsigned long *, unsigned long *,
17 void (*do_4)(unsigned long, unsigned long *, unsigned long *,
19 void (*do_5)(unsigned long, unsigned long *, unsigned long *,
  /external/llvm/test/CodeGen/X86/
fold-call.ll 4 declare void @bar()
6 define void @foo(i32 %i0, i32 %i1, i32 %i2, i32 %i3, i32 %i4, i32 %i5, void()* %arg) nounwind {
7 call void @bar()
8 call void %arg()
9 ret void
  /external/valgrind/main/helgrind/tests/
hg06_readshared.c 8 static void *t1(void *v)
10 return (void *)(long)(shared + 44);
13 static void *t2(void *v)
15 return (void *)(long)(shared + 55);
  /external/wpa_supplicant_8/src/drivers/
rfkill.h 15 void *ctx;
17 void (*blocked_cb)(void *ctx);
18 void (*unblocked_cb)(void *ctx);
22 void rfkill_deinit(struct rfkill_data *rfkill);
  /system/extras/tests/bionic/libc/bionic/
test_pthread_create.c 5 static void *
6 thread1_func(void* arg)
12 static void *
13 thread2_func(void* arg)
20 int main( void )
24 pthread_create( &t1, NULL, thread1_func, (void *)1 );
  /external/qemu/distrib/sdl-1.2.12/src/hermes/
HeadX86.h 24 void STACKCALL ConvertX86(HermesConverterInterface *);
25 void STACKCALL ClearX86_32(HermesClearInterface *);
26 void STACKCALL ClearX86_24(HermesClearInterface *);
27 void STACKCALL ClearX86_16(HermesClearInterface *);
28 void STACKCALL ClearX86_8(HermesClearInterface *);
32 void ConvertX86p32_32BGR888();
33 void ConvertX86p32_32RGBA888();
34 void ConvertX86p32_32BGRA888();
35 void ConvertX86p32_24RGB888();
36 void ConvertX86p32_24BGR888()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 49 virtual void setName(const String&);
55 virtual void addChild(GraphicsLayer*);
56 virtual void addChildAtIndex(GraphicsLayer*, int index);
57 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
58 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
60 virtual void setReplicatedLayer(GraphicsLayer* layer);
62 virtual void removeFromParent();
64 virtual void setPosition(const FloatPoint&);
65 virtual void setPreserves3D(bool b);
66 virtual void setAnchorPoint(const FloatPoint3D&)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
ClientImpl.cpp 34 static QWKPage* toQWKPage(const void* clientInfo)
37 return reinterpret_cast<QWKPage*>(const_cast<void*>(clientInfo));
41 static void loadFinished(WKFrameRef frame, const void* clientInfo, bool ok)
49 void qt_wk_didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
57 void qt_wk_didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
61 void qt_wk_didFailProvisionalLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void* clientInfo
    [all...]
  /gdk/samples/PhotoEditor/jni/
_jni.h 3 void Backlight(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jfloat backlight);
4 void Blur(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jfloat scale);
5 void ColorTemp(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jfloat scale);
6 void Copy(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap);
7 void CrossProcess(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap);
8 void Duotone(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jint color1, jint color2);
9 void Fisheye(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jfloat focus_x, jfloat focus_y, jfloat scale);
10 void FlipHorizontal(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap);
11 void FlipVertical(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap);
12 void FlipBoth(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMMultiplier.java 5 void init(byte[] H);
6 void multiplyH(byte[] x);
  /external/clang/test/Analysis/
chroot.c 6 void foo(void) {
9 void f1(void) {
14 void f2(void) {
20 void f3(void) {

Completed in 767 milliseconds

<<21222324252627282930>>