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

<<41424344454647484950>>

  /external/webkit/Source/WebCore/svg/
SVGUseElement.h 49 void invalidateShadowTree();
58 virtual void insertedIntoDocument();
59 virtual void removedFromDocument();
60 virtual void buildPendingResource();
62 virtual void parseMappedAttribute(Attribute*);
63 virtual void svgAttributeChanged(const QualifiedName&);
64 virtual void synchronizeProperty(const QualifiedName&);
65 virtual void fillAttributeToPropertyTypeMap();
68 virtual void recalcStyle(StyleChange = NoChange);
70 virtual void attach()
    [all...]
  /external/wpa_supplicant_8/src/utils/
edit_readline.c 18 static void *edit_cb_ctx;
19 static void (*edit_cmd_cb)(void *ctx, char *cmd);
20 static void (*edit_eof_cb)(void *ctx);
21 static char ** (*edit_completion_cb)(void *ctx, const char *cmd, int pos) =
27 static void readline_free_completions(void)
73 static void edit_read_char(int sock, void *eloop_ctx, void *sock_ctx
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
AString.h 34 void setTo(const char *s);
35 void setTo(const char *s, size_t size);
36 void setTo(const AString &from, size_t offset, size_t n);
43 void clear();
44 void trim();
45 void erase(size_t start, size_t n);
47 void append(char c) { append(&c, 1); }
48 void append(const char *s);
49 void append(const char *s, size_t size);
50 void append(const AString &from)
    [all...]
  /gdk/samples/quake/jni/
r_local.h 101 void R_RenderWorld (void);
122 void R_ClearPolyList (void);
123 void R_DrawPolyList (void);
132 void R_DrawSprite (void);
133 void R_RenderFace (msurface_t *fa, int clipflags);
134 void R_RenderPoly (msurface_t *fa, int clipflags)
    [all...]
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 33 protected void clearError() {}
34 public void close() {}
35 public void flush() {}
40 public void print(char[] charArray) {}
41 public void print(char ch) {}
42 public void print(double dnum) {}
43 public void print(float fnum) {}
44 public void print(int inum) {}
45 public void print(long lnum) {}
46 public void print(Object obj) {
    [all...]
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 48 void onSetWebView(Tab tab, WebView view);
50 void createSubWindow(Tab tab);
52 void onPageStarted(Tab tab, WebView view, Bitmap favicon);
54 void onPageFinished(Tab tab);
56 void onProgressChanged(Tab tab);
58 void onReceivedTitle(Tab tab, final String title);
60 void onFavicon(Tab tab, WebView view, Bitmap icon);
68 void doUpdateVisitedHistory(Tab tab, boolean isReload);
70 void getVisitedHistory(final ValueCallback<String[]> callback);
72 void onReceivedHttpAuthRequest(Tab tab, WebView view, final HttpAuthHandler handler
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
ggc.h 38 typedef void (*gt_pointer_operator) (void *, void *);
45 typedef void (*gt_note_pointers) (void *, void *, gt_pointer_operator,
46 void *);
53 typedef void (*gt_handle_reorder) (void *, void *, gt_pointer_operator
    [all...]
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer.h 27 virtual void OnChangesApplied(
32 virtual void OnChangesComplete(syncable::ModelType model_type);
33 virtual void OnSyncCycleCompleted(
35 virtual void OnAuthError(const GoogleServiceAuthError& auth_error);
36 virtual void OnUpdatedToken(const std::string& token);
37 virtual void OnPassphraseRequired(bool for_decryption);
38 virtual void OnPassphraseFailed();
39 virtual void OnPassphraseAccepted(const std::string& bootstrap_token);
40 virtual void OnEncryptionComplete(
42 virtual void OnInitializationComplete()
    [all...]
  /external/clang/test/Analysis/
casts.m 6 typedef void* (*MyFuncTest1)(void);
8 MyFuncTest1 test1_aux(void);
9 void test1(void) {
10 void *x;
11 void* (*p)(void);
12 p = ((void*) test1_aux());
13 if (p != ((void*) 0)) x = (*p)()
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.unary.op/
p4.cpp 6 void foo(void (A::*)(int)); // expected-note {{passing argument to parameter here}}
7 template<typename T> void g(T);
9 void test() {
10 foo(&g<int>); // expected-error {{can't form member pointer of type 'void (test0::A::*)(int)' without '&' and class name}}
18 static void f(void (A::*)());
19 static void f(void (*)(int));
20 void g()
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-alias-template.cpp 9 template<typename T> void f(Vec<T> v);
10 template<typename T> void g(T);
12 template<template<typename> class F> void h(F<int>);
16 template<typename...Ts> void h(U<Ts...>, Ts...);
18 // CHECK: define void @_Z1zv(
19 void z() {
22 // CHECK: call void @_Z1fIiEv6vectorIT_5allocIS1_EE(
26 // CHECK: call void @_Z1gI6vectorId5allocIdEEEvT_(
29 // CHECK: call void @_Z1hI3VecEvT_IiE(
33 // CHECK: call void @_Z1hI5allocEvT_IiE
    [all...]
mangle-local-classes-nested.cpp 14 void L1() {
17 void L2() {
20 void L3a() {}
26 void L3b() {}
36 void L2() {
39 void L3c() {}
45 void L3d() {}
55 void F() {
60 void G() {}
68 struct B { virtual void Foo() = 0; }
    [all...]
  /external/clang/test/CodeGenObjCXX/
objc-container-subscripting.mm 8 - (void)setObject:(id)object atIndexedSubscript:(size_t)index;
18 - (void)setObject:(id)object forKeyedSubscript:(id)key;
32 template <class T> void test2(NSMutableArray *a) {
35 template void test2<int>(NSMutableArray*);
36 // CHECK: define weak_odr void @_Z5test2IiEvP14NSMutableArray
38 // CHECK: ret void
41 template <class T> void test3(NSMutableArray *a) {
45 template void test3<int>(NSMutableArray*);
46 // CHECK: define weak_odr void @_Z5test3IiEvP14NSMutableArray
48 // CHECK: ret void
    [all...]
  /external/clang/test/Rewriter/
rewrite-nested-blocks.mm 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
8 void f(void (^block)(void));
13 - (void)foo;
17 - (void)foo {
33 void foo () {
46 void f(Bar *);
47 void q(void (^block)(void))
    [all...]
  /external/clang/test/Sema/
fp16-sema.c 4 extern void f (__fp16); // expected-error {{parameters cannot have __fp16 type; did you forget * ?}}
5 extern void g (__fp16 *);
7 extern void (*pf) (__fp16); // expected-error {{parameters cannot have __fp16 type; did you forget * ?}}
8 extern void (*pg) (__fp16*);
10 typedef void(*tf) (__fp16); // expected-error {{parameters cannot have __fp16 type; did you forget * ?}}
11 typedef void(*tg) (__fp16*);
13 void kf(a)
17 void kg(a)
22 extern __fp16 f1 (void); // expected-error {{function return value cannot have __fp16 type; did you forget * ?}}
23 extern __fp16 *g1 (void);
    [all...]
knr-def-call.c 4 void f0(a, b, c, d) int a,b,c,d; {}
5 void t0(void) {
9 void f1(a, b) int a, b; {}
10 void t1(void) {
14 void f2(float); // expected-note{{previous declaration is here}}
15 void f2(x) float x; { } // expected-warning{{promoted type 'double' of K&R function parameter is not compatible with the parameter type 'float' declared in a previous prototype}}
17 typedef void (*f3)(void);
    [all...]
warn-shadow.c 5 void foo() {
23 void (^test1)(int) = ^(int i) { // expected-warning {{declaration shadows a variable in the global scope}} \
38 void test3(void) {
44 void test4(int i) { // expected-warning {{declaration shadows a variable in the global scope}}
48 void test5(int i);
49 void test6(void (*f)(int i)) {}
50 void test7(void *context, void (*callback)(void *context)) {
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
byrefsanity.c 19 void (^b)(void) = ^{ var++; };
44 void (*byref_keep)(struct byref_id *dst, struct byref_id *src);
45 void (*byref_destroy)(struct byref_id *);
49 void *isa;
52 void (*Block_invoke)(void *);
53 void (*Block_copy)(void *dst, void *src)
    [all...]
  /external/icu4c/test/cintltst/
cformtst.c 25 void addCalTest(TestNode**);
26 void addDateForTest(TestNode**);
27 void addDateTimePatternGeneratorTest(TestNode**);
28 void addDateIntervalFormatTest(TestNode**);
29 void addNumForTest(TestNode**);
30 void addMsgForTest(TestNode**);
31 void addDateForRgrTest(TestNode**);
32 void addNumFrDepTest(TestNode**);
33 void addDtFrDepTest(TestNode**);
34 void addUtmsTest(TestNode**)
    [all...]
  /external/kernel-headers/original/asm-mips/
tlbflush.h 15 extern void local_flush_tlb_all(void);
16 extern void local_flush_tlb_mm(struct mm_struct *mm);
17 extern void local_flush_tlb_range(struct vm_area_struct *vma,
19 extern void local_flush_tlb_kernel_range(unsigned long start,
21 extern void local_flush_tlb_page(struct vm_area_struct *vma,
23 extern void local_flush_tlb_one(unsigned long vaddr);
27 extern void flush_tlb_all(void);
28 extern void flush_tlb_mm(struct mm_struct *)
    [all...]
  /external/kernel-headers/original/asm-x86/
tsc.h 20 static inline cycles_t get_cycles(void)
36 static __always_inline cycles_t get_cycles_sync(void)
63 extern void tsc_init(void);
64 extern void mark_tsc_unstable(char *reason);
65 extern int unsynchronized_tsc(void);
66 extern void init_tsc_clocksource(void);
67 int check_tsc_unstable(void);
73 extern void check_tsc_sync_source(int cpu)
    [all...]
  /external/libnl-headers/netlink/route/
class.h 27 extern struct rtnl_class * rtnl_class_alloc(void);
28 extern void rtnl_class_put(struct rtnl_class *);
46 extern void rtnl_class_set_ifindex(struct rtnl_class *, int);
48 extern void rtnl_class_set_handle(struct rtnl_class *, uint32_t);
50 extern void rtnl_class_set_parent(struct rtnl_class *, uint32_t);
52 extern void rtnl_class_set_kind(struct rtnl_class *, const char *);
58 extern void rtnl_class_foreach_child(struct rtnl_class *,
60 void (*cb)(struct nl_object *,
61 void *),
62 void *);
    [all...]
qdisc.h 27 extern struct rtnl_qdisc *rtnl_qdisc_alloc(void);
28 extern void rtnl_qdisc_put(struct rtnl_qdisc *);
49 extern void rtnl_qdisc_set_ifindex(struct rtnl_qdisc *, int);
51 extern void rtnl_qdisc_set_handle(struct rtnl_qdisc *, uint32_t);
53 extern void rtnl_qdisc_set_parent(struct rtnl_qdisc *, uint32_t);
55 extern void rtnl_qdisc_set_kind(struct rtnl_qdisc *, const char *);
59 extern void rtnl_qdisc_foreach_child(struct rtnl_qdisc *, struct nl_cache *,
60 void (*cb)(struct nl_object *, void *),
61 void *);
    [all...]
  /external/linux-tools-perf/util/
usage.c 8 static void report(const char *prefix, const char *err, va_list params)
15 static NORETURN void usage_builtin(const char *err)
21 static NORETURN void die_builtin(const char *err, va_list params)
27 static void error_builtin(const char *err, va_list params)
32 static void warn_builtin(const char *warn, va_list params)
39 static void (*usage_routine)(const char *err) NORETURN = usage_builtin;
40 static void (*die_routine)(const char *err, va_list params) NORETURN = die_builtin;
41 static void (*error_routine)(const char *err, va_list params) = error_builtin;
42 static void (*warn_routine)(const char *err, va_list params) = warn_builtin;
44 void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN
    [all...]
  /external/llvm/test/CodeGen/X86/
inline-asm.ll 9 define void @test2(i32 %V) nounwind {
11 call void asm sideeffect "FROB $0", "{ax}"(i32 %V)
12 ret void
15 define void @test3() nounwind {
17 tail call void asm sideeffect "frob $0", "m"( float 0x41E0000000000000)
18 ret void
21 define void @test4() nounwind {
23 tail call void asm sideeffect "bork $0", "J"(i32 37) nounwind
24 ret void
35 define void @test6(i1 zeroext %desired) nounwind
    [all...]

Completed in 404 milliseconds

<<41424344454647484950>>