/external/clang/test/Sema/ |
switch.c | 264 void f1(unsigned x) { function
|
warn-type-safety.cpp | 24 void f1(void *buf, int count, MPI_Datatype datatype)
|
/external/clang/test/SemaCXX/ |
default2.cpp | 19 int f1(int i, // expected-note {{previous declaration is here}} function
|
overload-call.cpp | 252 float& f1 = bind_vs_conv((short)1); local 290 float& f1 = db_rebind(z2); local 417 void f1(bool &); // expected-note 2{{not viable}} 421 f1(x0); // expected-error{{no matching function for call}} 423 f1(x1); // expected-error{{no matching function for call}}
|
warn-thread-safety-analysis.cpp | 1218 Foo f1, *f2; local 1219 f1.mu_.Lock(); 1220 f1.bar(); // expected-warning {{cannot call function 'bar' while mutex 'f1.mu_' is locked}} 1222 f1.foo(); 1224 f1.mu_.Unlock(); 1857 Foo1 f1; local [all...] |
/external/libffi/src/powerpc/ |
linux64_closure.S | 65 stfd %f1, 128+(0*8)(%r1) 128 lfs %f1, 112+0(%r1) 133 lfd %f1, 112+0(%r1) 138 lfd %f1, 112+0(%r1)
|
linux64.S | 87 lfd %f1, -32-(21*8)(%r28) 129 stfd %f1, 0(%r30) 135 stfs %f1, 0(%r30)
|
sysv.S | 88 lfd %f1,-16-(8*4)-(8*8)(%r28) 129 stfd %f1,0(%r30) 135 stfs %f1,0(%r30)
|
/external/v8/test/mjsunit/compiler/ |
globals.js | 69 function f1(x) { glo1 = x; } function 70 f1(42);
|
loopcount.js | 30 function f1() { var x = 0x3fffffff; x++; return x; } function 31 assertEquals(0x40000000, f1());
|
regress-3249650.js | 32 function f1(x) { try { } catch (e) {}} function 42 f1(x);
|
simple-global-access.js | 34 function f1() { this.x = this.y = this.z = g1; } class 38 var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 }
|
variables.js | 38 function f1(x) { return x; } function 39 assertEquals(1, f1(1));
|
/external/v8/test/mjsunit/ |
regexp-string-methods.js | 36 var f1 = new RegExp("f", "i"); 37 assertEquals(["F"], f1.exec("F"));
|
scope-calls-eval.js | 32 function f1() { function 64 assertEquals(3, f1());
|
/external/v8/test/mjsunit/regress/ |
regress-1423.js | 34 return f1('literal', true); 37 function f1(x, y) { function
|
regress-crbug-107996.js | 46 function f1() { function 58 f1();
|
/external/aac/libFDK/include/ |
fixpoint_math.h | 259 * \param f1 first factor 262 * \return mantissa of the product f1*f2 265 FIXP_DBL f1, 270 inline FIXP_DBL fMultNorm(FIXP_DBL f1, FIXP_DBL f2) 275 m = fMultNorm(f1, f2, &e);
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
ZipOutputStreamTest.java | 253 File f1 = File.createTempFile("testZip1", "tst"); local 254 f1.deleteOnExit(); 255 FileOutputStream stream1 = new FileOutputStream(f1);
|
/external/clang/test/CodeGenCXX/ |
temp-order.cpp | 57 static unsigned f1(bool val = true) { function 166 print("f1", f1()); 167 if (f1() != ORDER4(3, 5, 7, 2))
|
/external/clang/test/SemaTemplate/ |
default-expr-arguments.cpp | 10 template<typename T> void f1(T a, T b = 10) { } // expected-error{{no viable conversion}} \ function 18 f1(10); 19 f1(S()); // expected-note{{in instantiation of default function argument expression for 'f1<S>' required here}}
|
friend-template.cpp | 17 template<typename T> void f1(T) { } // expected-note{{here}} function in namespace:test1 21 template<typename T> friend void f1(T); 25 template<typename T> void f1(T) { } // expected-error{{redefinition}} function in namespace:test1
|
/external/llvm/unittests/Support/ |
YAMLIOTest.cpp | 365 MyFlags f1; member in struct:FlagsMap 386 io.mapRequired("f1", c.f1); 402 "f1: [ big ]\n" 409 EXPECT_EQ(flagBig, map.f1); 423 map.f1 = flagBig; 439 EXPECT_EQ(flagBig, map2.f1); 458 MyCustomType f1; member in struct:MyCustomTypeMap 469 io.mapRequired("f1", s.f1); [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldSimpleDateFormatTest.java | 480 SimpleDateFormat f1 = new SimpleDateFormat("a"); local 483 f1.setDateFormatSymbols(symbols); 484 DateFormatSymbols newSym = f1.getDateFormatSymbols(); 486 assertTrue("Not a clone", f1.getDateFormatSymbols() != symbols); 487 String result = f1.format(new GregorianCalendar(1999, Calendar.JUNE, 491 assertTrue("Identical symbols", !f1.getDateFormatSymbols().equals( 495 f1.setDateFormatSymbols(null);
|
/external/valgrind/main/none/tests/amd64/ |
gen_insn_test.pl | 164 static int eq_float(float f1, float f2) 166 /* return f1 == f2 || fabsf(f1 - f2) < fabsf(f1) * 1.5 * powf(2,-12); */ 167 return f1 == f2 || fabsf(f1 - f2) < fabsf(f1) * 1.5 / 4096.0;
|