HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 101 - 125 of 795) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/
module_private_left.h 10 __module_private__ void f1(T*);
13 __module_private__ void f1(T*);
  /external/clang/test/PCH/
functions.c 12 return f1(x, y);
14 return f1(x); // expected-error{{too few arguments to function call}}
15 // expected-note@functions.h:7{{'f1' declared here}}
  /external/clang/test/SemaCXX/
attr-regparm.cpp 7 void __attribute__((regparm(3))) f1();
13 void __attribute__((regparm(3))) X0::f1() { } function in class:X0
  /external/libunwind/tests/
perf-startup 5 warmup=$(./forker 2000 /bin/true | cut -f1 -d' ')
7 nsec1=$(./forker 2000 /bin/true | cut -f1 -d' ')
10 nsec2=$(LD_PRELOAD=$LIBUNWIND ./forker 2000 /bin/true | cut -f1 -d' ')
13 nsec3=$(LD_PRELOAD=$LIBUNWIND_PLAT ./forker 2000 /bin/true | cut -f1 -d' ')
  /external/llvm/test/MC/ELF/
comdat-dup-group-name.s 19 // CHECK: Name: f1
36 .section .foo,"axG",@progbits,f1,comdat
  /external/oprofile/libutil++/tests/
path_filter_tests.cpp 28 path_filter f1("foo,*bar", "foobar");
29 check(f1, "foo/barfoobar", true);
30 check(f1, "foo/bar", true);
31 check(f1, "/foo/foobar/foo", false);
32 check(f1, "fooobar1", false);
33 check(f1, "foo1", false);
34 check(f1, "foobar", false);
35 check(f1, "bar1", false);
  /external/chromium_org/v8/test/mjsunit/
regress-sync-optimized-lists.js 26 var f1 = get_closure();
27 f1(new Ctor(), false);
28 f1(new Ctor(), false);
30 %OptimizeFunctionOnNextCall(f1, "concurrent");
34 f1(o, true);
35 assertOptimized(f1, "no sync");
39 assertUnoptimized(f1, "no sync");
  /external/chromium_org/v8/test/mjsunit/regress/
regress-343609.js 29 var f1 = get_closure2();
30 f1(o);
31 f1(o);
32 %OptimizeFunctionOnNextCall(f1);
33 f1(o);
40 var f1 = get_closure();
41 f1(new Ctor());
42 f1(new Ctor());
43 %OptimizeFunctionOnNextCall(f1);
44 f1(o)
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-for-array-members.cpp 12 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
13 ~S(){printf("S::~S(iS = %d f1 = %f)\n", iS, f1); }
15 float f1; member in struct:S
23 printf("ARR_S[%d].iS = %d ARR_S[%d].f1 = %f\n", i, ARR_S[i].iS, i, ARR_S[i].f1);
28 printf("MULTI_ARR[%d][%d][%d].iS = %d MULTI_ARR[%d][%d][%d].f1 = %f\n",
29 i,j,k, MULTI_ARR[i][j][k].iS, i,j,k, MULTI_ARR[i][j][k].f1);
conditional-temporaries.cpp 21 void f1(bool b) { function in namespace:__anon23426
30 f1(true);
31 f1(false);
debug-info-namespace.cpp 9 void f1() { } function in namespace:A::B
10 void f1(int) { } function in namespace:A::B
31 using B::f1;
53 // CHECK: [[F1:![0-9]*]] {{.*}} ; [ DW_TAG_subprogram ] [line 4] [def] [f1]
67 // CHECK: [[M8]] = metadata !{i32 {{[0-9]*}}, metadata [[FUNC]], metadata [[F1]], i32 {{[0-9]*}}} ; [ DW_TAG_imported_declaration ]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketPerMessageDeflateTest.cpp 48 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final);
51 ASSERT_TRUE(c.deflate(f1));
52 EXPECT_EQ(7u, f1.payloadLength);
53 EXPECT_EQ(0, memcmp("\xf2\x48\xcd\xc9\xc9\x07\x00", f1.payload, f1.payloadLength));
54 EXPECT_TRUE(f1.compress);
55 EXPECT_TRUE(f1.final);
70 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final);
73 ASSERT_TRUE(c.deflate(f1));
74 EXPECT_EQ(7u, f1.payloadLength)
    [all...]
  /dalvik/dx/tests/044-dex-math-ops/
Blort.java 56 public void blort(float f1, float f2) {
57 f = -f1;
58 f = f1 + f2;
59 f = f1 - f2;
60 f = f1 * f2;
61 f = f1 / f2;
62 f = f1 % f2;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp 26 template<typename T> X<T> f1(const T&&); // expected-note{{candidate function [with T = int] not viable: no known conversion from 'int' to 'const int &&' for 1st argument}} \
30 X<int> xi0 = f1(prvalue<int>());
31 X<int> xi1 = f1(xvalue<int>());
32 f1(lvalue<int>()); // expected-error{{no matching function for call to 'f1'}}
33 X<Y> xy0 = f1(prvalue<Y>());
34 X<Y> xy1 = f1(xvalue<Y>());
35 f1(lvalue<Y>()); // expected-error{{no matching function for call to 'f1'}}
  /external/clang/test/SemaTemplate/
pack-deduction.cpp 8 template<typename ...T> int f1(X<T, T...>... a); // expected-note +{{conflicting types for parameter 'T'}}
11 int a1 = f1(X<int, int, double>(), X<double, int, double>());
12 int a2 = f1(X<int, int>());
13 int a3 = f1(X<int>(), X<double>()); // expected-error {{no matching}}
14 int a4 = f1(X<int, int>(), X<int>()); // expected-error {{no matching}}
15 int a5 = f1(X<int>(), X<int, int>()); // expected-error {{no matching}}
16 int a6 = f1(X<int, int, int>(), X<int, int, int>(), X<int, int, int, int>()); // expected-error {{no matching}}
canonical-expr-type-0x.cpp 19 N<sizeof...(T)> f1() {} // expected-note{{previous}} function
22 N<sizeof...(T)> f1() {} function
25 N<sizeof...(U)> f1() {} // expected-error{{redefinition}} function
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
mergesort.c 111 unsigned char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2;
145 f1 = l2;
150 while (f1 < l1 && f2 < l2) {
151 if ((*cmp)(f1, f2) <= 0) {
153 b = f1, t = l1;
156 q = f1;
199 if (q == f1) {
202 ICOPY_ELT(f1, tp2, i);
205 CCOPY_ELT(f1, tp2, i);
209 ICOPY_LIST(f1, tp2, b)
279 unsigned char *f1, *f2, *s, *l2, *last, *p2; local
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p6.cpp 12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}} function
13 template<int X, int Y> void f1(A0<0, (X - Y)>) { } function
14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}} function
  /external/clang/test/CodeGen/
functions.c 25 void f1();
27 // CHECK: call void @f1()
28 f1(1, 2, 3);
30 // CHECK-LABEL: define void @f1()
31 void f1() {} function
  /external/clang/test/Sema/
knr-def-call.c 9 void f1(a, b) int a, b; {} function
11 f1(1, 2, 3); // expected-warning{{too many arguments}}
18 f3 t3(int b) { return b? f0 : f1; } // okay
  /external/chromium_org/tools/profile_chrome/
trace_packager_unittest.py 20 with tempfile.NamedTemporaryFile(delete=False) as f1, \
22 f1.write(json.dumps(t1))
24 f1.flush()
28 trace_packager.PackageTraces([f1.name, f2.name],
  /external/clang/test/Analysis/
chroot.c 9 void f1(void) { function
exercise-ps.c 7 static void f1(const char *x, char *y) { function
  /external/clang/test/CXX/class/class.local/
p3.cpp 3 void f1() { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 8 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}} member in struct:s0

Completed in 1641 milliseconds

1 2 3 45 6 7 8 91011>>