/external/clang/test/CodeGen/ |
attr-availability.c | 5 // CHECK-10_4: define hidden void @f2 6 // CHECK-10_5: define hidden void @f2 7 // CHECK-10_6: define hidden void @f2 8 void f2(); 9 void f2() { } 11 // CHECK-10_4: define void @f3 12 // CHECK-10_5: define void @f3 13 // CHECK-10_6: define void @f3 14 void f3() __attribute__((availability(macosx,introduced=10.5))); 15 void f3() { [all...] |
/external/iproute2/ip/ |
ip_common.h | 3 void *arg); 6 void *arg); 8 struct nlmsghdr *n, void *arg); 10 struct nlmsghdr *n, void *arg); 12 struct nlmsghdr *n, void *arg); 16 extern void iplink_usage(void) __attribute__((noreturn)); 17 extern void iproute_reset_filter(void); 18 extern void ipaddr_reset_filter(int) [all...] |
/external/kernel-headers/original/linux/ |
vmalloc.h | 26 void *addr; 38 extern void *vmalloc(unsigned long size); 39 extern void *vmalloc_user(unsigned long size); 40 extern void *vmalloc_node(unsigned long size, int node); 41 extern void *vmalloc_exec(unsigned long size); 42 extern void *vmalloc_32(unsigned long size); 43 extern void *vmalloc_32_user(unsigned long size); 44 extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); 45 extern void *__vmalloc_area(struct vm_struct *area, gfp_t gfp_mask, 47 extern void *__vmalloc_node(unsigned long size, gfp_t gfp_mask [all...] |
/external/llvm/test/Transforms/DeadStoreElimination/ |
free.ll | 5 declare void @free(i8* nocapture) 11 ; CHECK-NEXT: ret void 12 define void @test(i32* %Q, i32* %P) { 16 tail call void @free(i8* %1) 17 ret void 23 ; CHECK-NEXT: ret void 24 define void @test2({i32, i32}* %P) { 28 tail call void @free(i8* %1) 29 ret void 34 ; CHECK: ret void [all...] |
/external/mesa3d/src/mesa/main/ |
hash.h | 38 extern struct _mesa_HashTable *_mesa_NewHashTable(void); 40 extern void _mesa_DeleteHashTable(struct _mesa_HashTable *table); 42 extern void *_mesa_HashLookup(struct _mesa_HashTable *table, GLuint key); 44 extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data); 46 extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key); 48 extern void 50 void (*callback)(GLuint key, void *data, void *userData) [all...] |
/external/qemu/ |
android-trace.h | 27 extern uint64_t trace_static_bb_num(void);; 34 extern void start_tracing(); 35 extern void stop_tracing(); 36 extern void trace_init(const char *filename); 37 extern void trace_bb_start(uint32_t bb_addr); 38 extern void trace_add_insn(uint32_t insn, int is_thumb); 39 extern void trace_bb_end(); 44 extern void trace_exception(uint32_t pc); 45 extern void trace_bb_helper(uint64_t bb_num, struct TranslationBlock *tb); 46 extern void trace_insn_helper() [all...] |
qemu-os-win32.h | 35 typedef int PollingFunc(void *opaque); 37 int qemu_add_polling_cb(PollingFunc *func, void *opaque); 38 void qemu_del_polling_cb(PollingFunc *func, void *opaque); 41 typedef void WaitObjectFunc(void *opaque); 43 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); 44 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); 46 void os_host_main_loop_wait(int *timeout) [all...] |
/external/qemu/telephony/ |
sysdeps.h | 20 extern void sys_main_init( void ); 24 typedef void (*SysCallback)( void* opaque ); 39 typedef void (*SysChannelCallback)( void* opaque, int event_flags ); 47 extern void sys_channel_on( SysChannel channel, 50 void* event_opaqe ); 52 extern int sys_channel_read( SysChannel channel, void* buffer, int size ); 54 extern int sys_channel_write( SysChannel channel, const void* buffer, int size ) [all...] |
/external/quake/quake/src/QW/client/ |
console.h | 45 void Con_DrawCharacter (int cx, int line, int num); 47 void Con_CheckResize (void); 48 void Con_Init (void); 49 void Con_DrawConsole (int lines); 50 void Con_Print (char *txt); 51 void Con_Printf (char *fmt, ...); 52 void Con_DPrintf (char *fmt, ...); 53 void Con_SafePrintf (char *fmt, ...) [all...] |
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
FullscreenVideoControllerEfl.h | 36 void setMediaElement(WebCore::HTMLMediaElement*); 39 void enterFullscreen(); 40 void exitFullscreen(); 42 void exitOnUserRequest(); 43 void togglePlay(); 44 void beginSeek(); 45 void doSeek(); 46 void endSeek(); 48 void hideHud(); 49 void showHud(bool) [all...] |
/frameworks/base/core/java/com/android/internal/statusbar/ |
IStatusBarService.aidl | 27 void expand(); 28 void collapse(); 29 void disable(int what, IBinder token, String pkg); 30 void setIcon(String slot, String iconPackage, int iconId, int iconLevel, String contentDescription); 31 void setIconVisibility(String slot, boolean visible); 32 void removeIcon(String slot); 33 void topAppWindowChanged(boolean menuVisible); 34 void setImeWindowStatus(in IBinder token, int vis, int backDisposition); 38 void registerStatusBar(IStatusBar callbacks, out StatusBarIconList iconList, 41 void onPanelRevealed() [all...] |
/external/chromium/net/disk_cache/ |
in_flight_backend_io.h | 32 void ExecuteOperation(); 35 void OnIOComplete(int result); 43 void ReferenceEntry(); 49 void Init(); 50 void OpenEntry(const std::string& key, Entry** entry); 51 void CreateEntry(const std::string& key, Entry** entry); 52 void DoomEntry(const std::string& key); 53 void DoomAllEntries(); 54 void DoomEntriesBetween(const base::Time initial_time, 56 void DoomEntriesSince(const base::Time initial_time) [all...] |
/external/clang/test/CodeGenObjCXX/ |
arc-special-member-functions.mm | 15 // CHECK: define void @_Z42test_ObjCMember_default_construct_destructv( 16 void test_ObjCMember_default_construct_destruct() { 17 // CHECK: call void @_ZN10ObjCMemberC1Ev 18 // CHECK: call void @_ZN10ObjCMemberD1Ev 22 // CHECK: define void @_Z39test_ObjCMember_copy_construct_destruct10ObjCMember 23 void test_ObjCMember_copy_construct_destruct(ObjCMember m1) { 24 // CHECK: call void @_ZN10ObjCMemberC1ERKS_ 25 // CHECK: call void @_ZN10ObjCMemberD1Ev 27 // CHECK: ret void 30 // CHECK: define void @_Z27test_ObjCMember_copy_assign10ObjCMemberS [all...] |
/external/clang/test/SemaObjCXX/ |
blocks.mm | 4 void bar(id(^)(void)); 5 void foo(id <NSObject>(^objectCreationBlock)(void)) { 9 void bar2(id(*)(void)); 10 void foo2(id <NSObject>(*objectCreationBlock)(void)) { 14 void bar3(id(*)()); // expected-note{{candidate function}} 15 void foo3(id (*objectCreationBlock)(int)) [all...] |
/external/kernel-headers/original/asm-mips/ |
cacheflush.h | 32 extern void (*flush_cache_all)(void); 33 extern void (*__flush_cache_all)(void); 34 extern void (*flush_cache_mm)(struct mm_struct *mm); 35 #define flush_cache_dup_mm(mm) do { (void) (mm); } while (0) 36 extern void (*flush_cache_range)(struct vm_area_struct *vma, 38 extern void (*flush_cache_page)(struct vm_area_struct *vma, unsigned long page, unsigned long pfn); 39 extern void __flush_dcache_page(struct page *page); 41 static inline void flush_dcache_page(struct page *page [all...] |
/external/qemu/audio/ |
audio.h | 31 typedef void (*audio_callback_fn) (void *opaque, int avail); 61 void (*notify) (void *opaque, audcnotification_e cmd); 62 void (*capture) (void *opaque, void *buf, int size); 63 void (*destroy) (void *opaque); 67 void (*info) (void *opaque) [all...] |
/external/v8/src/ |
regexp-macro-assembler-tracer.h | 41 virtual void AdvanceCurrentPosition(int by); // Signed cp change. 42 virtual void AdvanceRegister(int reg, int by); // r[reg] += by. 43 virtual void Backtrack(); 44 virtual void Bind(Label* label); 45 virtual void CheckAtStart(Label* on_at_start); 46 virtual void CheckCharacter(unsigned c, Label* on_equal); 47 virtual void CheckCharacterAfterAnd(unsigned c, 50 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); 51 virtual void CheckCharacterLT(uc16 limit, Label* on_less); 52 virtual void CheckCharacters [all...] |
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
PainterOpenVG.h | 64 void begin(SurfaceOpenVG*); 65 void end(); 68 void setTransformation(const AffineTransform&); 69 void concatTransformation(const AffineTransform&); 71 static void transformPath(VGPath dst, VGPath src, const AffineTransform&); 74 void setCompositeOperation(CompositeOperator); 76 void setOpacity(float); 79 void setStrokeThickness(float); 81 void setStrokeStyle(StrokeStyle); 83 void setLineDash(const DashArray&, float dashOffset) [all...] |
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
EditorClientAndroid.h | 49 virtual void pageDestroyed(); 56 virtual void toggleContinuousSpellChecking(); 58 virtual void toggleGrammarChecking(); 74 virtual void didBeginEditing(); 75 virtual void respondToChangedContents(); 76 virtual void respondToChangedSelection(); 77 virtual void didEndEditing(); 78 virtual void didWriteSelectionToPasteboard(); 79 virtual void didSetSelectionTypesForPasteboard(); 80 // virtual void didChangeTypingStyle:(NSNotification *)notification [all...] |
/frameworks/av/media/mtp/ |
MtpDataPacket.h | 39 virtual void reset(); 41 void setOperationCode(MtpOperationCode code); 42 void setTransactionID(MtpTransactionID id); 53 void getUInt128(uint128_t& value); 54 inline void getInt128(int128_t& value) { getUInt128((uint128_t&)value); } 55 void getString(MtpStringBuffer& string); 66 void putInt8(int8_t value); 67 void putUInt8(uint8_t value); 68 void putInt16(int16_t value); 69 void putUInt16(uint16_t value) [all...] |
/hardware/ti/wlan/wl1271/utils/ |
report.c | 74 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_0 ]), "timer " , sizeof("timer ")); 75 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_1 ]), "measurementMgr " , sizeof("measurementMgr ")); 76 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_2 ]), "measurementMgrSM " , sizeof("measurementMgrSM ")); 77 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_3 ]), "regulatoryDomain " , sizeof("regulatoryDomain ")); 78 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_4 ]), "requestHandler " , sizeof("requestHandler ")); 79 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_5 ]), "SoftGemini " , sizeof("SoftGemini ")); 80 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_6 ]), "spectrumMngmntMgr " , sizeof("spectrumMngmntMgr ")); 81 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_7 ]), "SwitchChannel " , sizeof("SwitchChannel ")); 82 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_8 ]), "roamingMngr " , sizeof("roamingMngr ")); 83 os_memoryCopy(hOs, (void *)(pReport->aFileName[FILE_ID_9 ]), "scanMngr " , sizeof("scanMngr (…) [all...] |
/external/kernel-headers/original/asm-x86/ |
paravirt.h | 45 unsigned (*patch)(u8 type, u16 clobber, void *insnbuf, 49 void (*arch_setup)(void); 50 char *(*memory_setup)(void); 51 void (*post_allocator_init)(void); 54 void (*banner)(void); 60 void (*enter)(void); [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/ |
gl.h | 150 typedef void GLvoid; 774 GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); 776 GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); 778 GLAPI void GLAPIENTRY glClear( GLbitfield mask ); 780 GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); 782 GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); 784 GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); 786 GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); 788 GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); 790 GLAPI void GLAPIENTRY glCullFace( GLenum mode ) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/GL/ |
gl.h | 150 typedef void GLvoid; 774 GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); 776 GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); 778 GLAPI void GLAPIENTRY glClear( GLbitfield mask ); 780 GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); 782 GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); 784 GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); 786 GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); 788 GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); 790 GLAPI void GLAPIENTRY glCullFace( GLenum mode ) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/GL/ |
gl.h | 150 typedef void GLvoid; 774 GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); 776 GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); 778 GLAPI void GLAPIENTRY glClear( GLbitfield mask ); 780 GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); 782 GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); 784 GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); 786 GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); 788 GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); 790 GLAPI void GLAPIENTRY glCullFace( GLenum mode ) [all...] |