Searched refs:f4 (Results 26 - 50 of 333) sorted by relevance

1234567891011>>

/external/oprofile/libutil++/tests/
H A Dglob_filter_tests.cpp47 glob_filter f4("foo", "foo");
48 check(f4, "foo", false);
49 check(f4, "foo1", false);
50 check(f4, "foo/foo", false);
H A Dpath_filter_tests.cpp47 path_filter f4("foo", "foo");
48 check(f4, "foo", false);
49 check(f4, "foo1", false);
50 check(f4, "foo/foo", false);
H A Dstring_filter_tests.cpp40 string_filter f4("ok,ok2,", "");
41 check(f4, "ok", true);
42 check(f4, "ok2", true);
43 check(f4, "no", false);
/external/chromium_org/ui/base/models/
H A Dtree_node_iterator_unittest.cc31 TestNode* f4 = new TestNode(); local
32 f3->Add(f4, 0);
33 f4->Add(new TestNode(), 0);
46 ASSERT_EQ(f4, iterator.Next());
49 ASSERT_EQ(f4->GetChild(0), iterator.Next());
65 TestNode* f4 = new TestNode(4); local
66 f3->Add(f4, 0);
67 f4->Add(new TestNode(5), 0);
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dvariables.js55 function f4(x) { function
59 assertEquals(4, f4(4));
H A Dproto-chain-constant.js33 var obj4 = c(null, { f4: { value: function() { return 4; }, writable: true }});
39 function get4(obj) { return obj.f4; }
45 obj4.f4 = function() { return 5; };
H A Dproto-chain-load.js32 var obj4 = Object.create(null, { f4: {value: 4} });
38 function get4(obj) { return obj.f4; }
/external/clang/test/CodeGen/
H A Dstruct-passing.c14 void __attribute__((const)) f4(T1 a);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
23 // CHECK: declare void @f4({{.*}} byval align 4)
H A Dmicrosoft-call-conv.c8 void __fastcall f4(void) { function
9 // CHECK-LABEL: define x86_fastcallcc void @f4()
28 void (__fastcall *pf4)(void) = f4;
33 f4(); f5(); f6();
34 // CHECK: call x86_fastcallcc void @f4()
H A Dfunctions.c39 void f4() {} function
40 void f5() { f4(42); } //expected-warning {{too many arguments}}
H A Dc-strings.c14 // ITANIUM: @f4.x = internal global %struct.s { i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0) }
15 // MSABI: @f4.x = internal global %struct.s { i8* getelementptr inbounds ([6 x i8]* @"\01??_C@_05CJBACGMB@hello?$AA@", i32 0, i32 0) }
57 // CHECK-LABEL: define void @f4()
58 void f4() { function
63 // CHECK: call void @gaz({{.*}} @f4.x
H A Dmangle-windows.c13 void __fastcall f4(char a) {} function
14 // CHECK: define x86_fastcallcc void @"\01@f4@4"
/external/eigen/unsupported/test/
H A Dalignedvector3.cpp23 FastType f1(r1), f2(r2), f3(r3), f4(r4), f5(r5), f6(r6);
27 VERIFY_IS_APPROX(f4,r4);
29 VERIFY_IS_APPROX(f4+f1,r4+r1);
30 VERIFY_IS_APPROX(f4-f1,r4-r1);
31 VERIFY_IS_APPROX(f4+f1-f2,r4+r1-r2);
32 VERIFY_IS_APPROX(f4+=f3,r4+=r3);
33 VERIFY_IS_APPROX(f4-=f5,r4-=r5);
34 VERIFY_IS_APPROX(f4-=f5+f1,r4-=r5+r1);
38 VERIFY_IS_APPROX(m1*f4,m1*r4);
39 VERIFY_IS_APPROX(f4
[all...]
/external/llvm/test/MC/Mips/
H A Dmicromips-fpu-instructions.s12 # CHECK-EL: add.s $f4, $f6, $f8 # encoding: [0x06,0x55,0x30,0x20]
13 # CHECK-EL: add.d $f4, $f6, $f8 # encoding: [0x06,0x55,0x30,0x21]
14 # CHECK-EL: div.s $f4, $f6, $f8 # encoding: [0x06,0x55,0xf0,0x20]
15 # CHECK-EL: div.d $f4, $f6, $f8 # encoding: [0x06,0x55,0xf0,0x21]
16 # CHECK-EL: mul.s $f4, $f6, $f8 # encoding: [0x06,0x55,0xb0,0x20]
17 # CHECK-EL: mul.d $f4, $f6, $f8 # encoding: [0x06,0x55,0xb0,0x21]
18 # CHECK-EL: sub.s $f4, $f6, $f8 # encoding: [0x06,0x55,0x70,0x20]
19 # CHECK-EL: sub.d $f4, $f6, $f8 # encoding: [0x06,0x55,0x70,0x21]
56 # CHECK-EL: movz.s $f4, $f6, $7 # encoding: [0xe6,0x54,0x78,0x20]
57 # CHECK-EL: movz.d $f4,
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2594.js62 function f4() {
71 assertEquals(1, f4())
H A Dregress-clobbered-fp-regs.js34 var f4 = 0.4 * y;
40 var sum = (f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8);
/external/clang/test/Sema/
H A Dattr-noreturn.c25 void f4() __attribute__((noreturn));
26 void f4() { function
27 return; // expected-error {{function 'f4' declared 'noreturn' should not return}}
H A Dbuiltin-object-size.c24 void f4(const char *fmt, ...) { function
H A Dfloating-point-compare.c15 int f4(float x) { function
H A Dattr-availability-ios.c7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=2.1,obsoleted=3.0))); // expected-note{{explicitly marked unavailable}}
18 f4(0); // expected-error{{f4' is unavailable: obsoleted in iOS 3.0}}
/external/chromium_org/v8/test/webkit/
H A DtoString-for-var-decl.js31 var f4 = function () { for (var j;;) {} } function
38 shouldBe("unevalf(eval(unevalf(f4)))", "unevalf(f4)");
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp13.cpp47 void f4(T ...args); // expected-error{{type 'T' of function parameter pack does not contain any unexpanded parameter packs}}
/external/clang/test/SemaCXX/
H A Dfunction-type-qual.cpp14 static cfn f4; // expected-error {{static member function of type 'cfn' (aka 'void () const') cannot have 'const' qualifier}} member in class:C
/external/valgrind/main/none/tests/mips32/
H A DMoveIns.stdout.exp6 mfc1 $t5, $f4 :: fs 1.875000, rt 0x3ff00000
34 mtc1 $t5, $f4 :: fs 1.875000, rt 0x3ff00000
62 mov.s $f3, $f4 :: fs 1384.599976, rt 0x44ad1333
63 mov.s $f4, $f5 :: fs -7.294568, rt 0xc0e96d19
89 mov.d $f2, $f4 ::fs -6445705852632282607665545216.000000, rt 0x4e6e6b28
90 mov.d $f2, $f4 ::fs 0.000000, rt 0x44db0000
91 mov.d $f4, $f6 ::fs -102014360350703794652958156923702465265664.000000, rt 0x322bcc77
92 mov.d $f4, $f6 ::fs 11600980417357008896.000000, rt 0xc732da7a
131 movf.s $f4, $f6, $fcc0 :: out: 456.248962, cc: 1
132 movf.s $f4,
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-variadic-templates.cpp49 template<typename ...Types> tuple<Types...> f4() {} function
51 template tuple<int, float, double> f4();

Completed in 390 milliseconds

1234567891011>>