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

<<41424344454647484950>>

  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 8 static void* operator new(size_t);
9 static void operator delete(void*, size_t) {
14 void test_X0() {
23 static void* operator new(size_t);
24 static void operator delete(void*) {
29 void test_X1() {
38 static void* operator new(size_t, double, double);
39 static void* operator new(size_t, int, int)
    [all...]
  /external/clang/test/CodeGen/
exprs.c 5 int zxcv(void);
10 void *test(int *i) {
26 // PR2080 - sizeof void
27 int t1 = sizeof(void);
28 int t2 = __alignof__(void);
29 void test4() {
30 t1 = sizeof(void);
31 t2 = __alignof__(void);
50 void eMaisUma() {
57 void f0(void (*fp)(void), void (*fp2)(void))
    [all...]
byval-memcpy-elim.c 14 void test1a(struct Test1S, struct Test2S);
15 // CHECK: define void @test1(
17 // CHECK: call void @test1a
18 void test1(struct Test1S *A, struct Test2S *B) {
30 void test2a(struct Test3S q);
31 // CHECK: define void @test2(
34 // CHECK: call void @test2a
35 void test2(struct Test3S *q) {
40 void fooey(void);
    [all...]
  /external/clang/test/CodeGenCXX/
delete.cpp 3 void t1(int *a) {
12 void t3(S *s) {
22 // CHECK: define void @_Z2t4P1T
23 void t4(T *t) {
24 // CHECK: call void @_ZN1TD1Ev
26 // CHECK-NEXT: call void @_ZdlPv
36 void f() {
44 void *operator new(__SIZE_TYPE__ sz);
45 void operator delete(void *p) { ::operator delete(p);
    [all...]
key-function-vtable.cpp 4 struct testa { virtual void a(); };
5 void testa::a() {}
8 struct testb { virtual void a() {} };
12 struct testc { virtual void a(); };
13 inline void testc::a() {}
16 struct testd { inline virtual void a(); };
17 void testd::a() {}
20 struct teste { inline virtual void a(); };
25 struct testf { virtual void a(); };
27 void testf::a() {
    [all...]
new-array-init-exceptions.cpp 10 // CHECK: define void @_Z7cleanupi
11 void cleanup(int n) {
12 // CHECK: invoke void @_ZN6ThrowsC1Ei
14 // CHECK: invoke void @_ZN6ThrowsC1Ei
16 // CHECK: invoke void @_ZN6ThrowsC1Ei
18 // CHECK: invoke void @_ZN6ThrowsC1Ev
23 // CHECK: call void @_ZN6ThrowsD1Ev
24 // CHECK: call void @_ZdaPv
28 // CHECK: define void @_Z7cleanupv
29 void cleanup()
    [all...]
  /external/e2fsprogs/e2fsck/
dict.h 52 const void *dict_key;
53 void *dict_data;
59 typedef int (*dict_comp_t)(const void *, const void *);
60 typedef dnode_t *(*dnode_alloc_t)(void *);
61 typedef void (*dnode_free_t)(dnode_t *, void *);
71 void *dict_context;
78 typedef void (*dnode_process_t)(dict_t *, dnode_t *, void *);
    [all...]
  /frameworks/base/media/java/android/media/
IAudioService.aidl 37 void adjustVolume(int direction, int flags);
39 oneway void adjustLocalOrRemoteStreamVolume(int streamType, int direction);
41 void adjustSuggestedStreamVolume(int direction, int suggestedStreamType, int flags);
43 void adjustStreamVolume(int streamType, int direction, int flags);
45 void adjustMasterVolume(int direction, int flags);
47 void setStreamVolume(int streamType, int index, int flags);
49 oneway void setRemoteStreamVolume(int index);
51 void setMasterVolume(int index, int flags);
53 void setStreamSolo(int streamType, boolean state, IBinder cb);
55 void setStreamMute(int streamType, boolean state, IBinder cb)
    [all...]
  /external/bluetooth/glib/gio/
gvfs.h 78 void (*_g_reserved1) (void);
79 void (*_g_reserved2) (void);
80 void (*_g_reserved3) (void);
81 void (*_g_reserved4) (void);
82 void (*_g_reserved5) (void);
    [all...]
  /external/clang/test/SemaCXX/
using-decl-1.cpp 3 extern "C" { void f(bool); }
7 inline void f() { return f(true); }
11 void f(float);
16 void f(int) { } // expected-note{{previous}}
18 void f(int) { } // expected-error{{redefinition}}
22 void f(double);
23 void f(long);
27 void operator()(int);
28 void operator()(long);
34 void operator()()
    [all...]
address-space-newdelete.cpp 3 void* operator new (__SIZE_TYPE__ size, void* ptr);
4 void* operator new[](__SIZE_TYPE__ size, void* ptr);
8 void test_new(void *p) {
9 (void)new int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
10 (void)new __attribute__((address_space(1))) int; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
11 (void)new int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
12 (void)new __attribute__((address_space(1))) int [5]; // expected-error{{'new' cannot allocate objects of (…)
    [all...]
attr-deprecated.cpp 3 void f() __attribute__((deprecated));
4 void g(A* a);
5 void h(A* a) __attribute__((deprecated));
10 void A::g(A* a)
15 (void)b; // expected-warning{{'b' is deprecated}}
16 (void)a->b; // expected-warning{{'b' is deprecated}}
19 void A::h(A* a)
24 (void)b;
25 (void)a->b;
29 virtual void f() __attribute__((deprecated))
    [all...]
  /external/mesa3d/src/glsl/
ir_visitor.h 47 virtual void visit(class ir_variable *) = 0;
48 virtual void visit(class ir_function_signature *) = 0;
49 virtual void visit(class ir_function *) = 0;
50 virtual void visit(class ir_expression *) = 0;
51 virtual void visit(class ir_texture *) = 0;
52 virtual void visit(class ir_swizzle *) = 0;
53 virtual void visit(class ir_dereference_variable *) = 0;
54 virtual void visit(class ir_dereference_array *) = 0;
55 virtual void visit(class ir_dereference_record *) = 0;
56 virtual void visit(class ir_assignment *) = 0
    [all...]
  /frameworks/rs/
rsThreadIO.h 34 void init();
35 void shutdown();
48 void setTimeoutCallback(void (*)(void *), void *, uint64_t timeout);
50 void * coreHeader(uint32_t, size_t dataLen);
51 void coreCommit();
53 void coreSetReturn(const void *data, size_t dataLen)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/
omp.h 62 extern void omp_set_num_threads (int) __GOMP_NOTHROW;
63 extern int omp_get_num_threads (void) __GOMP_NOTHROW;
64 extern int omp_get_max_threads (void) __GOMP_NOTHROW;
65 extern int omp_get_thread_num (void) __GOMP_NOTHROW;
66 extern int omp_get_num_procs (void) __GOMP_NOTHROW;
68 extern int omp_in_parallel (void) __GOMP_NOTHROW;
70 extern void omp_set_dynamic (int) __GOMP_NOTHROW;
71 extern int omp_get_dynamic (void) __GOMP_NOTHROW;
73 extern void omp_set_nested (int) __GOMP_NOTHROW;
74 extern int omp_get_nested (void) __GOMP_NOTHROW
    [all...]
  /external/dropbear/libtomcrypt/src/math/
gmp_desc.c 20 static int init(void **a)
32 static void deinit(void *a)
39 static int neg(void *a, void *b)
47 static int copy(void *a, void *b)
55 static int init_copy(void **a, void *b)
64 static int set_int(void *a, unsigned long b
    [all...]
  /external/qemu/
console.h 27 typedef int QEMUDisplayCloseCallback(void *opaque);
28 void qemu_set_display_close_handler(QEMUDisplayCloseCallback *cb, void *opaque);
29 int qemu_run_display_close_handler(void);
31 typedef void QEMUPutKBDEvent(void *opaque, int keycode);
32 typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
33 typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state)
    [all...]
  /external/quake/quake/src/QW/client/
client.h 350 void CL_DecayLights (void);
352 void CL_Init (void);
353 void Host_WriteConfiguration (void);
355 void CL_EstablishConnection (char *host);
357 void CL_Disconnect (void);
358 void CL_Disconnect_f (void)
    [all...]
  /external/webkit/Source/WebCore/editing/
Editor.h 94 void handleKeyboardEvent(KeyboardEvent*);
95 void handleInputMethodKeydown(KeyboardEvent*);
114 void cut();
115 void copy();
116 void paste();
117 void pasteAsPlainText();
118 void performDelete();
120 void copyURL(const KURL&, const String&);
121 void copyImage(const HitTestResult&);
123 void indent()
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.h 64 void rewind(float timeDelta);
65 void returnToRealtime();
77 void scheduleLoad();
88 void setSrc(const String&);
95 void setPreload(const String&);
98 void load(bool isUserGesture, ExceptionCode&);
108 void setCurrentTime(float, ExceptionCode&);
113 void setDefaultPlaybackRate(float);
115 void setPlaybackRate(float);
117 void setWebkitPreservesPitch(bool)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ipmi_smi.h 29 void *user_data;
37 void (*done)(struct ipmi_smi_msg *msg);
44 int (*start_processing)(void *send_info,
47 void (*sender)(void *send_info,
51 void (*request_events)(void *send_info);
53 void (*set_run_to_completion)(void *send_info, int run_to_completion);
55 void (*poll)(void *send_info)
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
mock_input_method_library.h 21 MOCK_METHOD1(AddObserver, void(Observer*));
22 MOCK_METHOD1(RemoveObserver, void(Observer*));
24 MOCK_METHOD0(GetActiveInputMethods, InputMethodDescriptors*(void));
25 MOCK_METHOD0(GetNumActiveInputMethods, size_t(void));
26 MOCK_METHOD0(GetSupportedInputMethods, InputMethodDescriptors*(void));
27 MOCK_METHOD1(ChangeInputMethod, void(const std::string&));
28 MOCK_METHOD2(SetImePropertyActivated, void(const std::string&, bool));
32 MOCK_CONST_METHOD0(previous_input_method, InputMethodDescriptor(void));
33 MOCK_CONST_METHOD0(current_input_method, InputMethodDescriptor(void));
34 MOCK_CONST_METHOD0(current_ime_properties, const ImePropertyList&(void));
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
personal_options_handler.h 28 virtual void GetLocalizedValues(DictionaryValue* localized_strings);
29 virtual void Initialize();
32 virtual void RegisterMessages();
35 virtual void Observe(NotificationType type,
40 virtual void OnStateChanged();
43 virtual void OnLoginSuccess();
44 virtual void OnLoginFailure(const GoogleServiceAuthError& error);
47 void ObserveThemeChanged();
48 void ShowSyncActionDialog(const ListValue* args);
49 void ShowSyncLoginDialog(const ListValue* args)
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p14.cpp 3 template<typename T> void capture(const T&);
8 void foo() const;
16 void capture_by_copy(NonCopyable nc, NonCopyable &ncr, const NonConstCopy nco) {
17 (void)[nc] { }; // expected-error{{capture of variable 'nc' as type 'NonCopyable' calls private copy constructor}}
18 (void)[=] {
35 void foo() const;
38 void capture_with_default_args(CopyCtorDefault cct) {
39 (void)[=] () -> void { cct.foo(); };
46 void capture_array()
    [all...]
  /external/clang/test/SemaObjC/
arc-retain-block-property.m 4 extern void doSomething();
9 void (^aBlock)(void);
11 @property (retain) void (^aBlock)(void); // expected-warning {{retain'ed block property does not copy the block - use copy attribute instead}}
12 @property (weak, retain) void (^aBlockW)(void); // expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
13 @property (strong, retain) void (^aBlockS)(void); // OK
14 @property (readonly, retain) void (^aBlockR)(void); // O
    [all...]

Completed in 1541 milliseconds

<<41424344454647484950>>