/external/clang/test/Sema/ |
generic-selection.c | 3 void foo(int n) { 4 (void) _Generic(0, 6 void(): 0, // expected-error {{type 'void ()' in generic association not an object type}} 9 (void) _Generic(0, 10 void (*)(): 0, // expected-note {{compatible type 'void (*)()' specified here}} 11 void (*)(void): 0); // expected-error {{type 'void (*)(void)' in generic association compatible with previously specified type 'void (*)()'} [all...] |
pointer-addition.c | 4 void a(S* b, void* c) { 5 void (*fp)(int) = 0; 8 c++; // expected-warning {{arithmetic on a pointer to void is a GNU extension}} 9 c += 1; // expected-warning {{arithmetic on a pointer to void is a GNU extension}} 10 c--; // expected-warning {{arithmetic on a pointer to void is a GNU extension}} 11 c -= 1; // expected-warning {{arithmetic on a pointer to void is a GNU extension}} 12 (void) c[1]; // expected-warning {{subscript of a pointer to void is a GNU extension}} 15 void (*d)(S*,void*) = a [all...] |
/external/clang/test/SemaCXX/ |
warn-unused-filescoped.cpp | 3 static void f1(); // expected-warning{{unused}} 6 void f2(); // expected-warning{{unused}} 8 void f3() { } // expected-warning{{unused}} 11 void m1() { } // expected-warning{{unused}} 12 void m2(); // expected-warning{{unused}} 13 void m3(); 15 void operator=(const S&); 20 void m(); 22 template <> void TS<int>::m() { } // expected-warning{{unused}} 25 void tf() { [all...] |
addr-of-overloaded-function-casting.cpp | 2 void g(); 4 void f(); // expected-note 9{{candidate function}} 5 void f(int); // expected-note 9{{candidate function}} 7 template<class T> void t(T); // expected-note 6{{candidate function}} 8 template<class T> void t(T*); // expected-note 6{{candidate function}} 10 template<class T> void u(T); 14 { bool b = (void (&)(char))f; } // expected-error{{does not match required type}} 15 { bool b = (void (*)(char))f; } // expected-error{{does not match required type}} 17 { bool b = (void (&)(int))f; } //ok 18 { bool b = (void (*)(int))f; } //o [all...] |
dynamic-cast.cpp | 15 virtual void f(); 22 void basic_bad() 25 (void)dynamic_cast<A>((A*)0); // expected-error {{'A' is not a reference or pointer}} 27 (void)dynamic_cast<A*>(0); // expected-error {{'int' is not a pointer}} 29 (void)dynamic_cast<int*>((A*)0); // expected-error {{'int' is not a class}} 31 (void)dynamic_cast<A*>((int*)0); // expected-error {{'int' is not a class}} 33 (void)dynamic_cast<int&>(*((A*)0)); // expected-error {{'int' is not a class}} 35 (void)dynamic_cast<A&>(*((int*)0)); // expected-error {{'int' is not a class}} 37 (void)dynamic_cast<Incomplete*>((A*)0); // expected-error {{'Incomplete' is an incomplete type}} 39 (void)dynamic_cast<A*>((Incomplete*)0); // expected-error {{'Incomplete' is an incomplete type} [all...] |
/external/javassist/src/main/javassist/compiler/ast/ |
Visitor.java | 26 public void atASTList(ASTList n) throws CompileError {} 27 public void atPair(Pair n) throws CompileError {} 29 public void atFieldDecl(FieldDecl n) throws CompileError {} 30 public void atMethodDecl(MethodDecl n) throws CompileError {} 31 public void atStmnt(Stmnt n) throws CompileError {} 32 public void atDeclarator(Declarator n) throws CompileError {} 34 public void atAssignExpr(AssignExpr n) throws CompileError {} 35 public void atCondExpr(CondExpr n) throws CompileError {} 36 public void atBinExpr(BinExpr n) throws CompileError {} 37 public void atExpr(Expr n) throws CompileError { [all...] |
/external/kernel-headers/original/linux/ |
spinlock_api_smp.h | 22 void __lockfunc _spin_lock(spinlock_t *lock) __acquires(spinlock_t); 23 void __lockfunc _spin_lock_nested(spinlock_t *lock, int subclass) 25 void __lockfunc _read_lock(rwlock_t *lock) __acquires(rwlock_t); 26 void __lockfunc _write_lock(rwlock_t *lock) __acquires(rwlock_t); 27 void __lockfunc _spin_lock_bh(spinlock_t *lock) __acquires(spinlock_t); 28 void __lockfunc _read_lock_bh(rwlock_t *lock) __acquires(rwlock_t); 29 void __lockfunc _write_lock_bh(rwlock_t *lock) __acquires(rwlock_t); 30 void __lockfunc _spin_lock_irq(spinlock_t *lock) __acquires(spinlock_t); 31 void __lockfunc _read_lock_irq(rwlock_t *lock) __acquires(rwlock_t); 32 void __lockfunc _write_lock_irq(rwlock_t *lock) __acquires(rwlock_t) [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_sim_db.h | 22 void * eap_sim_db_init(const char *config, 23 void (*get_complete_cb)(void *ctx, void *session_ctx), 24 void *ctx); 26 void eap_sim_db_deinit(void *priv); 28 int eap_sim_db_get_gsm_triplets(void *priv, const u8 *identity, 31 void *cb_session_ctx); 36 int eap_sim_db_identity_known(void *priv, const u8 *identity [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
sme.h | 14 void sme_authenticate(struct wpa_supplicant *wpa_s, 16 void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode, 18 void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data); 21 void sme_event_assoc_reject(struct wpa_supplicant *wpa_s, 23 void sme_event_auth_timed_out(struct wpa_supplicant *wpa_s, 25 void sme_event_assoc_timed_out(struct wpa_supplicant *wpa_s, 27 void sme_event_disassoc(struct wpa_supplicant *wpa_s, 29 void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa, 31 void sme_sa_query_rx(struct wpa_supplicant *wpa_s, const u8 *sa, 33 void sme_state_changed(struct wpa_supplicant *wpa_s) [all...] |
/frameworks/native/include/utils/ |
VectorImpl.h | 54 void finish_vector(); 59 inline const void* arrayImpl() const { return mStorage; } 60 void* editArrayImpl(); 71 ssize_t insertArrayAt(const void* array, size_t index, size_t length); 72 ssize_t appendArray(const void* array, size_t length); 76 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1); 77 void pop(); 78 void push(); 79 void push(const void* item) [all...] |
/frameworks/rs/driver/ |
rsdRuntimeMath.cpp | 144 static void SC_MatrixLoadIdentity_4x4(Matrix4x4 *m) { 147 static void SC_MatrixLoadIdentity_3x3(Matrix3x3 *m) { 150 static void SC_MatrixLoadIdentity_2x2(Matrix2x2 *m) { 154 static void SC_MatrixLoad_4x4_f(Matrix4x4 *m, const float *f) { 157 static void SC_MatrixLoad_3x3_f(Matrix3x3 *m, const float *f) { 160 static void SC_MatrixLoad_2x2_f(Matrix2x2 *m, const float *f) { 164 static void SC_MatrixLoad_4x4_4x4(Matrix4x4 *m, const Matrix4x4 *s) { 167 static void SC_MatrixLoad_4x4_3x3(Matrix4x4 *m, const Matrix3x3 *s) { 170 static void SC_MatrixLoad_4x4_2x2(Matrix4x4 *m, const Matrix2x2 *s) { 173 static void SC_MatrixLoad_3x3_3x3(Matrix3x3 *m, const Matrix3x3 *s) [all...] |
/prebuilts/tools/windows/sdl/host/include/SDL/ |
SDL_opengl.h | [all...] |
/external/clang/test/CodeGenCXX/ |
visibility.cpp | 53 void f(); 59 virtual void g(); 62 void C<int>::D::g() { 77 // CHECK: define hidden void @_ZN5Test11fEv 78 void HIDDEN f() { } 84 void f(); 88 // CHECK: define hidden void @_ZN5Test21A1fEv 89 void A::f() { } 95 void f(); 100 // CHECK: define hidden void @_ZN5Test31A1B1fE [all...] |
/external/clang/test/Analysis/ |
CFContainers.mm | 9 typedef const void * (*CFArrayRetainCallBack)(CFAllocatorRef allocator, const void *value); 10 typedef void (*CFArrayReleaseCallBack)(CFAllocatorRef allocator, const void *value); 11 typedef CFStringRef (*CFArrayCopyDescriptionCallBack)(const void *value); 12 typedef Boolean (*CFArrayEqualCallBack)(const void *value1, const void *value2); 21 CFArrayRef CFArrayCreate(CFAllocatorRef allocator, const void **values, CFIndex numValues, const CFArrayCallBacks *callBacks); 46 typedef const void * (*CFDictionaryRetainCallBack)(CFAllocatorRef allocator, const void *value) [all...] |
/frameworks/rs/ |
rsRuntime.h | 32 void rsrBindTexture(Context *, Script *, ProgramFragment *, uint32_t slot, Allocation *); 33 void rsrBindConstant(Context *, Script *, ProgramFragment *, uint32_t slot, Allocation *); 34 void rsrBindConstant(Context *, Script *, ProgramVertex*, uint32_t slot, Allocation *); 35 void rsrBindSampler(Context *, Script *, ProgramFragment *, uint32_t slot, Sampler *); 36 void rsrBindProgramStore(Context *, Script *, ProgramStore *); 37 void rsrBindProgramFragment(Context *, Script *, ProgramFragment *); 38 void rsrBindProgramVertex(Context *, Script *, ProgramVertex *); 39 void rsrBindProgramRaster(Context *, Script *, ProgramRaster *); 40 void rsrBindFrameBufferObjectColorTarget(Context *, Script *, Allocation *, uint32_t slot); 41 void rsrBindFrameBufferObjectDepthTarget(Context *, Script *, Allocation *) [all...] |
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePage.h | 76 typedef void (*WKBundlePageDidStartProvisionalLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo); 77 typedef void (*WKBundlePageDidReceiveServerRedirectForProvisionalLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo); 78 typedef void (*WKBundlePageDidFailProvisionalLoadWithErrorForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef* userData, const void *clientInfo); 79 typedef void (*WKBundlePageDidCommitLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo); 80 typedef void (*WKBundlePageDidDocumentFinishLoadForFrameCallback)(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo) [all...] |
/external/webkit/Tools/DumpRenderTree/qt/ |
LayoutTestControllerQt.h | 77 void reset(); 83 void timerEvent(QTimerEvent*); 86 void done(); 88 void showPage(); 89 void hidePage(); 90 void geolocationPermissionSet(); 93 void maybeDump(bool ok); 94 void dumpAsText() { m_textDump = true; } 95 void dumpChildFramesAsText() { m_dumpChildrenAsText = true; } 96 void dumpChildFrameScrollPositions() { m_dumpChildFrameScrollPositions = true; [all...] |
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
sema.cpp | 7 void simple() { 18 void nospec(); 19 void allspec() throw(...); 20 void intspec() throw(int); 21 void emptyspec() throw(); 22 void nothrowattr() __attribute__((nothrow)); 23 void noexcept_true() noexcept; 24 void noexcept_false() noexcept(false); 26 void call() { 36 void (*pnospec)() [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/ |
Fuzzy.h | 53 + (void) initialize; 57 - (void) mIMPORT ; 58 - (void) mRETURN ; 59 - (void) mCLASS ; 60 - (void) mMETHOD ; 61 - (void) mFIELD ; 62 - (void) mSTAT ; 63 - (void) mCALL ; 64 - (void) mCOMMENT ; 65 - (void) mSL_COMMENT ; [all...] |
/external/clang/test/Parser/ |
attributes.c | 5 __inline void __attribute__((__always_inline__, __nodebug__)) 6 foo(void) { 16 void f1(__attribute__(()) int x); 22 void f3(__attribute__(()) x, // expected-warning {{defaults to 'int'}} 25 void f4(__attribute__(())); // expected-error {{expected parameter declarator}} 31 void g1(void (*f1)(__attribute__(()) int x)); 32 void g2(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}} 33 void g3(void (*f3)(__attribute__(()) x, int y)); // expected-warning {{defaults to 'int'} [all...] |
/external/qemu/distrib/sdl-1.2.12/src/events/ |
SDL_events_c.h | 29 extern void SDL_StopEventLoop(void); 30 extern void SDL_QuitInterrupt(void); 32 extern void SDL_Lock_EventThread(void); 33 extern void SDL_Unlock_EventThread(void); 34 extern Uint32 SDL_EventThreadID(void); 37 extern int SDL_AppActiveInit(void); [all...] |
/external/qemu/ |
sysemu.h | 30 typedef void VMChangeStateHandler(void *opaque, int running, int reason); 33 void *opaque); 34 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e); 36 void vm_start(void); 37 void vm_stop(int reason); 39 uint64_t ram_bytes_remaining(void); 40 uint64_t ram_bytes_transferred(void); 41 uint64_t ram_bytes_total(void); [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebSettings.h | 54 virtual void setStandardFontFamily(const WebString&) = 0; 55 virtual void setFixedFontFamily(const WebString&) = 0; 56 virtual void setSerifFontFamily(const WebString&) = 0; 57 virtual void setSansSerifFontFamily(const WebString&) = 0; 58 virtual void setCursiveFontFamily(const WebString&) = 0; 59 virtual void setFantasyFontFamily(const WebString&) = 0; 60 virtual void setDefaultFontSize(int) = 0; 61 virtual void setDefaultFixedFontSize(int) = 0; 62 virtual void setMinimumFontSize(int) = 0; 63 virtual void setMinimumLogicalFontSize(int) = 0 [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
proto.h | 28 extern int yywrap(void); 29 extern void setfname(Cell *); 33 extern int yyparse(void); 35 extern int yylex(void); 36 extern void startreg(void); 37 extern int input(void); 38 extern void unput(int); 39 extern void unputstr(const char *); 40 extern int yylook(void); [all...] |
/sdk/emulator/opengl/tests/gles_android_wrapper/ |
gles.cpp | 26 void init_gles(void *gles_android) 56 void glAlphaFunc(GLenum func, GLclampf ref) 61 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 66 void glClearDepthf(GLclampf depth) 71 void glClipPlanef(GLenum plane, const GLfloat *equation) 76 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) 81 void glDepthRangef(GLclampf zNear, GLclampf zFar) 86 void glFogf(GLenum pname, GLfloat param) 91 void glFogfv(GLenum pname, const GLfloat *params [all...] |