/external/chromium/chrome/browser/tabs/ |
tab_strip_model_observer.cc | 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* contents, 12 void TabStripModelObserver::TabClosingAt(TabStripModel* tab_strip_model, 17 void TabStripModelObserver::TabDetachedAt(TabContentsWrapper* contents, 21 void TabStripModelObserver::TabDeselected(TabContentsWrapper* contents) { 24 void TabStripModelObserver::TabSelectedAt(TabContentsWrapper* old_contents, 30 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, 35 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, 40 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, 46 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents, 50 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents [all...] |
/external/clang/test/CXX/except/except.spec/ |
p5-virtual.cpp | 27 virtual void f1() throw(); 28 virtual void f2() throw(int, float); 30 virtual void f3() throw(int, float); 31 virtual void f4() throw(A); 32 virtual void f5() throw(A, int, float); 33 virtual void f6(); 35 virtual void f7() noexcept; 36 virtual void f8() noexcept; 37 virtual void f9() noexcept(false); 38 virtual void f10() noexcept(false) [all...] |
/external/clang/test/CodeGenCXX/ |
block-in-ctor-dtor.cpp | 3 typedef void (^dispatch_block_t)(void); 5 void dispatch_once(dispatch_block_t); 39 // CHECK: define internal void @___ZN4ZoneC2Ev_block_invoke_ 40 // CHECK: define internal void @___ZN4ZoneC2Ev_block_invoke_ 41 // CHECK: define internal void @___ZN4ZoneD2Ev_block_invoke_ 42 // CHECK: define internal void @___ZN4ZoneD2Ev_block_invoke_ 43 // CHECK: define internal void @___ZN1XC1Ev_block_invoke_ 44 // CHECK: define internal void @___ZN1XC1Ev_block_invoke_ 45 // CHECK: define internal void @___ZN1XC2Ev_block_invoke [all...] |
cxx-block-objects.cpp | 5 extern "C" void *_Block_copy(const void *aBlock); 6 extern "C" void _Block_release(const void *aBlock); 15 void hello() const; 22 void (^c)(void) = ((__typeof(^{ a.hello(); }))_Block_copy((const void *)(^{ a.hello(); }))); 24 _Block_release((const void *)(c)); 28 // CHECK: define internal void @__copy_helper_block [all...] |
address-of-fntemplate.cpp | 2 template <typename T> void f(T) {} 3 template <typename T> void f() { } 5 void test() { 7 void (*p)(int) = &f; 10 void (*p2)() = f<int>; 12 // CHECK: define linkonce_odr void @_Z1fIiEvT_ 13 // CHECK: define linkonce_odr void @_Z1fIiEvv 18 void f(const T&); 24 void h(X<int (*)()> xf) {
|
copy-initialization.cpp | 13 void f(Foo); 15 // CHECK: define void @_Z1g3Foo(%struct.Foo* %foo) 16 void g(Foo foo) { 17 // CHECK: call void @_ZN3BarC1Ev 19 // CHECK: call void @_Z1f3Foo 21 // CHECK: call void @_ZN3FooC1Ev 22 // CHECK: call void @_Z1f3Foo 24 // CHECK: call void @_ZN3FooC1ERKS_ 25 // CHECK: call void @_Z1f3Foo
|
visibility-inlines-hidden.cpp | 8 void __attribute__((visibility("default"))) f1() { } 9 void f2() { } 10 void f3(); 11 static void f5() { } 12 virtual void f6() { } 15 inline void X0::f3() { } 19 void __attribute__((visibility("default"))) f1() { } 20 void f2() { } 21 void f3(); 22 void f4() [all...] |
/external/clang/test/CodeGenObjC/ |
debug-info-block-helper.m | 3 extern void foo(void(^)(void)); 5 // CHECK: metadata !{i32 786478, i32 0, metadata !27, metadata !"__destroy_helper_block_", metadata !"__destroy_helper_block_", metadata !"", metadata !27, i32 24, metadata !43, i1 true, i1 true, i32 0, i32 0, null, i32 0, i1 false, void (i8*)* @__destroy_helper_block_, null, null, metadata !45, i32 24} ; [ DW_TAG_subprogram ] 14 - (void) helper { 18 int (^x)(void) = ^(void) { (void) self; 19 (void) master; 20 (void) dbTransaction; [all...] |
x86_64-struct-return-gc.m | 6 struct Coerce coerce_func(void); 8 // CHECK: define void @Coerce_test() 9 void Coerce_test(void) { 22 struct Indirect indirect_func(void); 24 // CHECK: define void @Indirect_test() 25 void Indirect_test(void) { 28 // CHECK: call void @indirect_func(%struct.Indirect* sret
|
/external/clang/test/SemaCXX/ |
auto-subst-failure.cpp | 3 void f() { 4 auto a = f(); // expected-error {{variable has incomplete type 'void'}} 5 auto &b = f(); // expected-error {{cannot form a reference to 'void'}} 6 auto *c = f(); // expected-error {{incompatible initializer of type 'void'}} 8 auto d(f()); // expected-error {{variable has incomplete type 'void'}} 9 auto &&e(f()); // expected-error {{cannot form a reference to 'void'}} 10 auto *g(f()); // expected-error {{incompatible initializer of type 'void'}} 12 (void)new auto(f()); // expected-error {{allocation of incomplete type 'void'}} 13 (void)new auto&(f()); // expected-error {{cannot form a reference to 'void'} [all...] |
/external/icu4c/test/intltest/ |
citrtest.h | 20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ); 25 void TestConstructionAndEquality(void); 29 void TestConstructionAndEqualityUChariter(void); 33 void TestIteration(void); 37 void TestIterationUChar32(void); 39 void TestUCharIterator() [all...] |
restest.h | 20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ); 25 void TestResourceBundles(void); 29 void TestConstruction(void); 31 void TestExemplar(void); 33 void TestGetSize(void); 34 void TestGetLocaleByType(void) [all...] |
trnserr.h | 33 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par=NULL); 36 void TestTransliteratorErrors(void); 38 void TestUnicodeSetErrors(void); 40 //void TestUniToHexErrors(void); 42 void TestRBTErrors(void); 44 //void TestHexToUniErrors(void) [all...] |
ucdtest.h | 11 U_CFUNC void U_CALLCONV unicodeDataLineFn(void *context, 15 U_CFUNC void U_CALLCONV 16 derivedPropsLineFn(void *context, 34 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ); 36 void TestAdditionalProperties(); 37 void TestBinaryValues(); 38 void TestConsistency(); 39 void TestPatternProperties(); 43 friend void U_CALLCONV unicodeDataLineFn(void *context [all...] |
pptest.h | 22 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ); 25 void TestParsePosition(void); 26 void TestFieldPosition(void); 27 void TestFieldPosition_example(void); 28 void Test4109023(void);
|
/external/libvpx/nestegg/halloc/ |
halloc.h | 23 void * halloc (void * block, size_t len); 24 void hattach(void * block, void * parent); 29 void * h_malloc (size_t len); 30 void * h_calloc (size_t n, size_t len); 31 void * h_realloc(void * p, size_t len); 32 void h_free (void * p) [all...] |
/external/nist-sip/java/javax/sip/address/ |
SipURI.java | 10 void setSecure(boolean secure); 13 void setHeader(String name, String value); 17 void setHost(String host) throws ParseException; 20 void setLrParam(); 24 void setMAddrParam(String mAddrParam) throws ParseException; 27 void setPort(int port) throws InvalidArgumentException; 30 void setTTLParam(int ttlParam); 33 void setTransportParam(String transportParam) throws ParseException; 37 void setUser(String user); 39 void setUserParam(String userParam) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
notify.h | 19 void wpas_notify_supplicant_deinitialized(struct wpa_global *global); 21 void wpas_notify_iface_removed(struct wpa_supplicant *wpa_s); 22 void wpas_notify_state_changed(struct wpa_supplicant *wpa_s, 25 void wpas_notify_network_changed(struct wpa_supplicant *wpa_s); 26 void wpas_notify_ap_scan_changed(struct wpa_supplicant *wpa_s); 27 void wpas_notify_bssid_changed(struct wpa_supplicant *wpa_s); 28 void wpas_notify_auth_changed(struct wpa_supplicant *wpa_s); 29 void wpas_notify_network_enabled_changed(struct wpa_supplicant *wpa_s, 31 void wpas_notify_network_selected(struct wpa_supplicant *wpa_s, 33 void wpas_notify_network_request(struct wpa_supplicant *wpa_s [all...] |
/external/clang/test/Parser/ |
ms-inline-asm.c | 6 void t1(void) { M } 7 void t2(void) { __asm int 0x2c } 8 void t3(void) { __asm M2 0x2c } 9 void* t4(void) { __asm mov eax, fs:[0x10] } 10 void t5() {
|
/external/llvm/test/Linker/ |
metadata-a.ll | 3 ; CHECK: define void @foo(i32 %a) 4 ; CHECK: ret void, !attach !0, !also !{i32 %a} 5 ; CHECK: define void @goo(i32 %b) 6 ; CHECK: ret void, !attach !1, !and !{i32 %b} 7 ; CHECK: !0 = metadata !{i32 524334, void (i32)* @foo} 8 ; CHECK: !1 = metadata !{i32 524334, void (i32)* @goo} 10 define void @foo(i32 %a) nounwind { 12 ret void, !attach !0, !also !{ i32 %a } 15 !0 = metadata !{i32 524334, void (i32)* @foo}
|
/external/llvm/test/Transforms/GlobalOpt/ |
alias-resolve.ll | 7 @foo1 = alias void ()* @foo2 8 @foo2 = alias weak void()* @bar1 9 @bar1 = alias void ()* @bar2 11 declare void @bar2() 13 define void @baz() { 15 call void @foo1() 16 call void @foo2() 17 call void @bar1() 18 ret void
|
/external/netperf/ |
netcpu.h | 4 extern void cpu_util_init(void); 5 extern void cpu_util_terminate(void); 14 extern void get_cpu_idle(uint64_t *res); 17 extern void cpu_start_internal(void); 18 extern void cpu_stop_internal(void);
|
/external/nist-sip/java/javax/sip/header/ |
ViaHeader.java | 10 void setBranch(String branch) throws ParseException; 13 void setHost(String host) throws ParseException; 16 void setMAddr(String mAddr) throws ParseException; 19 void setPort(int port) throws InvalidArgumentException; 22 void setProtocol(String protocol) throws ParseException; 25 void setReceived(String received) throws ParseException; 28 void setRPort() throws InvalidArgumentException; 31 void setTransport(String transport) throws ParseException; 34 void setTTL(int ttl) throws InvalidArgumentException;
|
/external/qemu/ |
arch_init.h | 24 void select_soundhw(const char *optarg); 25 void do_acpitable_option(const char *optarg); 26 void do_smbios_option(const char *optarg); 27 void cpudef_init(void); 28 int audio_available(void); 29 void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus); 30 int kvm_available(void); 31 int xen_available(void);
|
/external/skia/src/images/ |
SkImageRefPool.h | 22 void setRAMBudget(size_t); 25 void setRAMUsed(size_t limit); 27 void addToHead(SkImageRef*); 28 void addToTail(SkImageRef*); 29 void detach(SkImageRef*); 31 void dump() const; 44 void justAddedPixels(SkImageRef*); 45 void canLosePixels(SkImageRef*); 46 void purgeIfNeeded();
|