HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 376 - 400 of 744) sorted by null

<<11121314151617181920>>

  /external/v8/test/mjsunit/
call.js 52 function f1(a) { function
57 assertEquals(1, f1.call({i:1}));
58 assertEquals(42, f1.call({i:42}, 'i'));
59 assertEquals(87, f1.call({j:87}, 'j', 1));
60 assertEquals(99, f1.call({k:99}, 'k', 1, 2));
simple-constructor.js 34 function f1() { class
45 this.z = f1;
52 this.z = f1;
55 o1_1 = new f1();
57 o1_2 = new f1();
arguments.js 97 function f1(x, y) { function
108 f1(3, "five");
171 function f1(x, y) {
179 assertArrayEquals([0], f1());
180 assertArrayEquals([1, void 0], f1(3));
181 assertArrayEquals([2, 5, 5], f1(3, 5));
182 assertArrayEquals([3, 5, 5, 7], f1(3, 5, 7));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest3.java 45 int f1; field in class:SerializationStressTest3.DefaultConstructor
50 f1 = valueAfterConstructor;
66 return inst.f1 == valueAfterConstructor;
72 public int f1; field in class:SerializationStressTest3.NonSerDefaultConstructor
77 f1 = valueAfterConstructor;
85 public int f1; field in class:SerializationStressTest3.NonSerPrivateConstructor
90 f1 = valueAfterConstructor;
98 public int f1; field in class:SerializationStressTest3.NonSerProtectedConstructor
103 f1 = valueAfterConstructor;
108 public int f1; field in class:SerializationStressTest3.NonSerPublicConstructor
150 int f1; field in class:SerializationStressTest3.PrivateConstructor
208 int f1; field in class:SerializationStressTest3.ProtectedConstructor
265 int f1; field in class:SerializationStressTest3.PublicConstructor
    [all...]
  /external/clang/test/CodeGen/
x86_32-arguments-darwin.c 8 // CHECK: define signext i16 @f1()
9 short f1(void) { function
174 struct s43 { enum e40 f0; int f1; } f43(void) { } member in struct:s43
180 struct s45 { vvbp f0; int f1; } f45(void) { } member in struct:s45
193 struct s49 { enum e40 f0; int f1; }; member in struct:s49
201 struct s51 { vvbp f0; int f1; }; member in struct:s51
const-init.c 108 struct g20_s0 *f0, **f1; member in struct:g20_s1
112 return l0.f1;
  /external/clang/test/SemaTemplate/
alias-templates.cpp 76 void f1(U<T> i, U<Ts> ...is) { // expected-note 2{{couldn't infer template argument 'T'}} function in namespace:PR11848
77 return i + f1<Ts...>(is...);
90 f1(U<void>()); // expected-error {{no match}}
91 f1(1, 2, 3, 4, 5); // expected-error {{no match}}
131 void f1(Y<T> a) { h(g(a)); } // expected-error {{undeclared identifier 'g'}} function in struct:Core22036::S
current-instantiation.cpp 20 void f1(T&); // expected-note{{previous}}
21 void f1(typename X0::U_type&);
22 void f1(typename X0<T, U>::T_type&); // expected-error{{redecl}}
85 void f1(T&); // expected-note{{previous}}
86 void f1(typename X0::U_type&);
87 void f1(typename X0<T*, U*>::T_type&); // expected-error{{redecl}}
dependent-base-classes.cpp 95 this->template f1<int>()(k);
106 this->template f1<int>()(k); // expected-error{{'f1' following the 'template' keyword does not refer to a template}} \
member-access-expr.cpp 86 void f1() { function in class:X3
89 void f1() const{ function in class:X3
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.async/
async.pass.cpp 35 int& f1() function
94 std::future<int&> f = std::async(f1);
102 std::future<int&> f = std::async(std::launch::async, f1);
110 std::future<int&> f = std::async(std::launch::any, f1);
118 std::future<int&> f = std::async(std::launch::deferred, f1);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 20 float f1 { x }; // expected-error {{ cannot be narrowed }} expected-note {{override}}
74 Agg<float> f1 = {f}; // OK (no-op) local
117 Agg<float> f1 = {c}; // expected-error {{ cannot be narrowed }} expected-note {{override}} local
p7-cxx11-nowarn.cpp 21 float f1 { x }; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
75 Agg<float> f1 = {f}; // OK (no-op) local
118 Agg<float> f1 = {c}; // expected-warning {{ cannot be narrowed }} expected-note {{override}} local
  /external/clang/test/SemaCXX/
nullptr.cpp 140 int &f1(int*);
141 float &f1(bool);
144 int &ir = (f1)(nullptr);
vector.cpp 17 int &f1(char16); // expected-note 2{{candidate function}}
18 float &f1(longlong16); // expected-note 2{{candidate function}}
21 int &ir1 = f1(c16);
22 float &fr1 = f1(ll16);
23 f1(c16e); // expected-error{{call to 'f1' is ambiguous}}
24 f1(ll16e); // expected-error{{call to 'f1' is ambiguous}}
overload-member-call.cpp 22 float& f1 = f(0); local
42 float& f1 = x.f(0); local
  /external/openssl/crypto/
ppccpuid.pl 29 fcfid f1,f1
48 fmr f1,f31
  /external/oprofile/libpp/
symbol_sort.cpp 72 file_location const & f1 = lhs.sample.file_loc; local
74 int ret = debug_compare(f1.filename, f2.filename);
76 ret = f1.linenr - f2.linenr;
  /external/v8/test/mjsunit/regress/
regress-2071.js 33 a.f = (function f1() {
46 a.g = (function f1() {
63 a.h = (function f1() {
  /external/clang/test/Sema/
conditional-expr.c 89 extern int f1(void);
93 return a ? f1() : nil; // expected-warning {{pointer/integer type mismatch in conditional expression ('int' and 'void *')}} expected-warning {{incompatible pointer to integer conversion returning 'void *' from a function with result type 'int'}}
  /external/v8/test/mjsunit/bugs/
bug-941049.js 57 function f1(x) { function
58 g(f1);
59 var result = h(f1);
78 test(f1);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ExecutionContexts/
10.1.3-1.js 57 function f1(x,x) function
62 actual = f1(1,2);
  /cts/tools/vm-tests-tf/src/dot/junit/format/f1/
Test_f1.java 17 package dot.junit.format.f1;
30 Class.forName("dot.junit.format.f1.d.T_f1_1");
43 Class.forName("dot.junit.format.f1.d.T_f1_2");
56 Class.forName("dot.junit.format.f1.d.T_f1_3");
69 Class.forName("dot.junit.format.f1.d.T_f1_4");
82 Class.forName("dot.junit.format.f1.d.T_f1_5");
95 Class.forName("dot.junit.format.f1.d.T_f1_6");
108 Class.forName("dot.junit.format.f1.d.T_f1_7");
121 Class.forName("dot.junit.format.f1.d.T_f1_8");
134 Class.forName("dot.junit.format.f1.d.T_f1_9")
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouteProvider.java 82 IntentFilter f1 = new IntentFilter(); typedefs
83 f1.addCategory(CATEGORY_SAMPLE_ROUTE);
84 f1.addAction(ACTION_GET_STATISTICS);
94 CONTROL_FILTERS.add(f1); typedefs
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
SimpleDateFormatTest.java 551 SimpleDateFormat f1 = new SimpleDateFormat("y"); local
552 Date date = f1.get2DigitYearStart();
784 SimpleDateFormat f1 = new SimpleDateFormat("yy"); local
811 SimpleDateFormat f1 = new SimpleDateFormat("a"); local
    [all...]

Completed in 1214 milliseconds

<<11121314151617181920>>