Searched refs:f5 (Results 1 - 25 of 132) sorted by relevance

123456

/external/clang/test/Sema/
H A Ddefault.c3 void f5 (int z) { function
H A Dattr-noreturn.c31 extern void f5 (unsigned long) __attribute__ ((__noreturn__));
34 f5 (unsigned long size) function
H A Dfloating-point-compare.c19 int f5(float x) { function
H A Dattr-availability-ios.c9 void f5(int) __attribute__((availability(ios,introduced=2.0))) __attribute__((availability(ios,deprecated=3.0))); // expected-note {{'f5' declared here}}
19 f5(0); // expected-warning{{'f5' is deprecated: first deprecated in iOS 3.0}}
H A Dattr-availability-macosx.c8 void f5(int) __attribute__((availability(ios,introduced=3.2), availability(macosx,unavailable))); // expected-note{{function has been explicitly marked unavailable here}}
16 f5(0); // expected-error{{'f5' is unavailable: not available on Mac OS X}}
H A Dsentinel-attribute.c12 void f5(int a) __attribute__ ((sentinel)); //expected-warning{{'sentinel' attribute only supported for variadic functions}}
/external/clang/test/ASTMerge/Inputs/
H A Dfunction1.c6 int f5(int) __attribute__((const));
H A Dfunction2.c7 int f5(int) __attribute__((const));
/external/clang/test/CodeGen/
H A Dinline2.c24 // CHECK-GNU89: define i32 @f5()
25 // CHECK-C99: define i32 @f5()
26 extern inline int f5(void);
27 inline int f5(void) { return 0; } function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmicrosoft-call-conv.c11 void __stdcall f5(void) { function
12 // CHECK: define x86_stdcallcc void @f5()
27 void (__stdcall *pf5)(void) = f5;
31 f4(); f5(); f6();
33 // CHECK: call x86_stdcallcc void @f5()
H A Dstruct-passing.c15 void __attribute__((pure)) f5(T1 a);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
24 // CHECK: declare void @f5({{.*}} byval align 4)
H A Dstdcall-fastcall.c11 void __attribute__((stdcall)) f5(void) { function
12 // CHECK: define x86_stdcallcc void @f5()
27 void (__attribute__((stdcall)) *pf5)(void) = f5;
31 f4(); f5(); f6();
33 // CHECK: call x86_stdcallcc void @f5()
H A D2007-09-28-PackedUnionMember.c11 struct opaque3 *f5; member in struct:H::__anon4138::__anon4139
/external/clang/test/CodeGenCXX/
H A Dreinterpret-cast.cpp15 void f5(void*& u) { function
H A Dfriend-redecl.cpp14 bool TryFoo(Foo *f5);
H A Dvisibility-inlines-hidden.cpp11 static void f5() { } function in struct:X0
23 static void f5() { } function in struct:X1
47 X0::f5();
59 X1<int>::f5();
H A Dmangle-variadic-templates.cpp54 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {} function
56 template identity<int(int, float, double)> f5();
/external/webkit/Source/WebKit/win/Interfaces/
H A DIGEN_DOMObject.idl37 uuid(19DD35E3-BFEC-40f5-A69F-02C5D76791E4),
/external/v8/test/mjsunit/compiler/
H A Dvariables.js63 function f5(x) { function
66 assertEquals(5, f5(5));
/external/oprofile/libutil++/tests/
H A Dpath_filter_tests.cpp52 path_filter f5("*foo*", "*bar*");
53 check(f5, "foo", true);
54 check(f5, "bar", false);
55 check(f5, "foobar", false);
56 check(f5, "barfoo", false);
57 check(f5, "foo/bar", false);
H A Dstring_filter_tests.cpp45 string_filter f5("ok,ok2", "no,no2");
46 check(f5, "ok", true);
47 check(f5, "ok2", true);
48 check(f5, "no", false);
49 check(f5, "no2", false);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-85880.js99 function f5() function
104 f5();
106 return f5.arguments;
109 actual = (f5() == null);
114 actual = (f5(0) == null);
/external/clang/test/Parser/
H A Dcxx-stmt.cpp57 void f5() { function
/external/clang/test/CXX/except/except.spec/
H A Dp3.cpp28 extern void f5() throw(int); // expected-note {{previous declaration}}
29 extern void f5(); // expected-warning {{missing exception specification}}
/external/clang/test/Index/
H A Dcomplete-exprs.c23 void f5(float f) { function
68 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f5}{LeftParen (}{Placeholder float f}{RightParen )} (50)

Completed in 422 milliseconds

123456