Searched defs:f6 (Results 1 - 25 of 115) sorted by relevance

12345

/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
H A Dp1.cpp12 int (*f6)() [[carries_dependency]]; // expected-error {{'carries_dependency' attribute cannot be applied to types}} variable
/external/clang/test/CodeGen/
H A Dx86_64-arguments-win32.c24 // CHECK-LABEL: define void @f6({ double, double }* %a)
25 void f6(_Complex double a) {} function
H A Dinline2.c29 // CHECK-GNU89-LABEL: define i32 @f6()
30 // CHECK-C99-LABEL: define i32 @f6()
31 inline int f6(void);
32 extern inline int f6(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dms_abi.c107 void __attribute__((sysv_abi)) f6(__builtin_ms_va_list ap) { function
108 // FREEBSD-LABEL: define void @f6
110 // WIN64-LABEL: define x86_64_sysvcc void @f6
H A D2007-09-28-PackedUnionMember.c12 unsigned short f6; member in struct:H::__anon1892::__anon1893
H A Dmangle-windows.c37 void __fastcall f6(int a) {} function
38 // CHECK: define x86_fastcallcc void @"\01@f6@4"
39 // X64: define void @f6(
H A Dmicrosoft-call-conv.c18 void __thiscall f6(void) { function
19 // CHECK-LABEL: define x86_thiscallcc void @f6()
35 void (__thiscall *pf6)(void) = f6;
39 f4(); f5(); f6(); f61();
42 // CHECK: call x86_thiscallcc void @f6()
/external/v8/test/mjsunit/compiler/
H A Dloopcount.js58 function f6() { var x = 0x3fffffff; x++; return x+1; } function
59 assertEquals(0x40000001, f6());
H A Dvariables.js72 function f6(arguments) { return arguments; } function
73 assertEquals(6, f6(6));
/external/v8/test/mjsunit/es6/
H A Dnew-target.js383 function f6() { with ({'new.target': 42}) return new.target } function
384 assertSame(f6, new f6);
H A Dblock-scoping.js149 function f6() { function
158 assertEquals(3, f6(6));
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp4.cpp5 friend void f6(int) { } // expected-error{{redefinition of}} \ function in struct:X1
/external/clang/test/CodeGenCXX/
H A Dmangle-variadic-templates.cpp60 template<int ...Values> int_tuple<Values...> f6() {} function
62 template int_tuple<1, 2, 3> f6();
/external/clang/test/Parser/
H A Dcxx-stmt.cpp62 int f6() { function
63 int k, // expected-note {{change this ',' to a ';' to call 'f6'}}
64 f6(), // expected-error {{expected ';'}} expected-warning {{interpreted as a function declaration}} expected-note {{replace paren}}
/external/clang/test/Sema/
H A Ddecl-in-prototype.c30 void f6(struct z {int b;} c) { // expected-warning {{declaration of 'struct z' will not be visible outside of this function}} function
H A Dpragma-unused.c27 void f6(void) { function
/external/llvm/test/MC/ARM/
H A Dldr-pseudo-darwin.s60 @ CHECK-LABEL: f6:
61 f6: label
H A Dldr-pseudo.s60 @ CHECK-LABEL: f6:
61 f6: label
H A Dltorg-darwin.s57 b f6
66 @ CHECK-LABEL: f6:
67 f6: label
H A Dltorg.s53 b f6
60 @ CHECK-LABEL: f6:
61 f6: label
/external/llvm/test/MC/MachO/
H A Ddarwin-x86_64-reloc.s72 f6: label
79 movl f6(%rip), %eax
84 .quad f6
104 // CHECK-NEXT: Symbol: f6
148 // CHECK-NEXT: Symbol: f6
/external/testng/src/test/java/test/priority/
H A DBaseSample.java43 public void f6() { add("f6"); } method in class:BaseSample
/external/v8/test/mjsunit/harmony/
H A Dblock-scoping-sloppy.js147 function f6() { function
156 assertEquals(3, f6(6));
H A Ddefault-parameters-destructuring.js27 function f6({a = eval("var x = 2"), b = eval("x")}) { return b; } function
28 assertEquals(2, f6({}));
29 assertEquals(1, f6({a: 0}));
97 function f6({a = eval("var x = 2"), b = eval("x")}) { return b; }
98 assertEquals(1, f6({}));
99 assertEquals(1, f6({a: 0}));
/external/v8/test/mjsunit/
H A Dsimple-constructor.js87 function f6(x, y) { class
121 testArgs(f6);

Completed in 509 milliseconds

12345