HomeSort by relevance Sort by last modified time
    Searched full:void (Results 476 - 500 of 67234) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
self-comparison.cpp 3 template <int A, int B> void foo() {
4 (void)(A == A); // expected-warning {{self-comparison always evaluates to true}}
5 (void)(A == B);
8 void foo() {
9 (void)(A == A); // expected-warning {{self-comparison always evaluates to true}}
10 (void)(A == B);
16 (void)(A == A); // expected-warning {{self-comparison always evaluates to true}}
17 (void)(A == B);
22 template <int A, int B> void foo() {
23 (void)(A == A); // expected-warning {{self-comparison always evaluates to true}
    [all...]
  /external/llvm/test/Transforms/DeadArgElim/
deadexternal.ll 3 define void @test(i32) {
4 ret void
7 define void @foo() {
8 call void @test(i32 0)
9 ret void
14 define void @f(i32 %X) {
16 tail call void @sideeffect() nounwind
17 ret void
20 declare void @sideeffect()
22 define void @g(i32 %n)
    [all...]
  /external/quake/quake/src/WinQuake/
console.h 31 void Con_DrawCharacter (int cx, int line, int num);
33 void Con_CheckResize (void);
34 void Con_Init (void);
35 void Con_DrawConsole (int lines, qboolean drawinput);
36 void Con_Print (const char *txt);
37 void Con_Printf (const char *fmt, ...);
38 void Con_DPrintf (const char *fmt, ...);
39 void Con_SafePrintf (const char *fmt, ...)
    [all...]
  /external/stlport/test/eh/
Tests.h 23 void test_algobase();
24 void test_algo();
25 void test_list();
26 void test_map();
27 void test_multimap();
28 void test_set();
29 void test_multiset();
30 void test_vector();
31 void test_deque();
32 void test_bit_vector()
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
EventSender.java 20 public void mouseDown();
21 public void mouseUp();
22 public void mouseClick();
23 public void mouseMoveTo(int X, int Y);
24 public void leapForward(int milliseconds);
25 public void keyDown (String character, String[] withModifiers);
26 public void keyDown (String character);
27 public void enableDOMUIEventLogging(int DOMNode);
28 public void fireKeyboardEventsToElement(int DOMNode);
29 public void touchStart()
    [all...]
  /external/clang/test/CodeGenCXX/
visibility.cpp 34 // CHECK: define hidden void @_ZN5Test11fEv
35 void HIDDEN f() { }
41 void f();
45 // CHECK: define hidden void @_ZN5Test21A1fEv
46 void A::f() { }
52 void f();
57 // CHECK: define hidden void @_ZN5Test31A1B1fEv
58 void A::B::f() { }
65 // CHECK: define hidden void @_ZN5Test41gEv
66 void g() { }
    [all...]
PR5093-static-member-function.cpp 3 static void f();
6 void g(a *a) {
7 // CHECK: call void @_ZN1a1fEv()
c-linkage.cpp 7 virtual void f();
9 void X::f() { }
13 // CHECK: define void @_ZN1N1X1fEv
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 55 void setFrame(Frame*);
56 void setWebView(WebView*);
57 virtual void detachFrameLoader();
62 virtual void resetBackForwardList();
66 virtual void makeRepresentation(DocumentLoader*);
67 virtual void forceLayout();
68 virtual void forceLayoutForNonHTML();
70 virtual void updateHistoryForCommit();
72 virtual void updateHistoryForBackForwardNavigation();
73 virtual void updateHistoryForReload()
    [all...]
  /external/clang/test/ARCMT/Inputs/
test.h 2 - (oneway void)release;
6 static inline void part1(id p) {
12 static inline void part2(id p) {
  /external/clang/test/ARCMT/with space/
test.h 2 - (oneway void)release;
6 static inline void part1(id p) {
12 static inline void part2(id p) {
  /external/clang/test/CXX/dcl.decl/
p4-0x.cpp 4 void f() &;
5 void g() &&;
8 void (X::*pmf)() & = &X::f;
  /external/clang/test/CXX/except/except.spec/
p3.cpp 7 extern void (*r1)() throw(int);
8 extern void (*r1)() throw(int);
12 extern void (*r2)() throw(int);
13 extern void (*r2)() throw(INT);
16 extern void (*r3)() throw(int, float);
17 extern void (*r3)() throw(float, int);
20 extern void (*r4)();
21 extern void (*r4)() throw(...);
24 extern void (*r5)() throw(int); // expected-note {{previous declaration}}
25 extern void (*r5)(); // expected-error {{exception specification in declaration does not match}
    [all...]
  /external/clang/test/CXX/expr/expr.post/expr.ref/
p3.cpp 5 void splay( )
8 (void)n->lhs;
12 void f() {
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p10-0x.cpp 2 template<typename T> void f(T&&);
3 template<> void f(int&) { }
4 void (*fp)(int&) = &f;
  /external/clang/test/CodeGen/
2002-04-09-StructRetVal.c 8 struct S func_returning_struct(void);
10 void loop(void) {
2004-07-06-FunctionCast.c 3 static int unused_func(void) {
7 int foo(void) {
8 (void)unused_func; /* avoid compiler warning */
2008-03-03-CtorAttrType.c 2 int __attribute__((constructor)) foo(void) {
5 void __attribute__((constructor)) bar(void) {}
always-inline.c 3 void bar() {
6 inline void __attribute__((__always_inline__)) foo() {
10 void i_want_bar() {
func-aligned.c 4 void foo() __attribute__((aligned (64)));
5 void foo() {
6 // CHECK: define void @foo() {{.*}} align 64
linkage-redecl.c 5 static void f(int x);
7 void g0() {
11 extern void f(int x) { } // still has internal linkage
mcount.c 2 void foo(void) {
3 // CHECK: call void @mcount()
redef-ext-inline.c 4 extern inline int f1 (void) {return 1;}
5 int f3 (void) {return f1();}
6 int f1 (void) {return 0;}
static-forward-decl-fun.c 3 static int staticfun(void);
4 int (*staticuse1)(void) = staticfun;
6 int (*staticuse2)(void) = staticfun;
typedef-func.c 7 typedef enum mad_flow filter_func_t(void *, struct mad_frame *);
11 void addfilter2(filter_func_t *func){}
13 void setup_filters()

Completed in 1217 milliseconds

<<11121314151617181920>>