HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
FileTest.java 158 File f2 = new File("a/"); local
159 assertEquals("Trailing slash file name is incorrect", f1, f2);
336 File f2 = new File("thisFile.file"); local
339 .compareTo(f2));
393 File f2 = new File(dir, "tempfile.tst"); local
395 f2.deleteOnExit();
400 assertTrue("File Should Exist.", f2.isFile());
412 f2.createNewFile());
455 File f2 = null; local
458 f2 = File.createTempFile("harmony-test-FileTest_tempFile_tf", null)
528 File f2 = null; local
674 File f2 = new File("filechk.tst"); local
731 File f2 = f.getAbsoluteFile(); local
774 File f2 = f.getCanonicalFile(); local
871 File f2 = null, f3 = null, dir2 = null; local
973 File f2 = new File(tempDirectory, "tempfile2.tmp"); local
996 File f2 = new File("filechk.tst"); local
1148 File f2 = new File(".test.tst" + platformId); local
1882 File f2 = new File(dir, "zzz.zzz"); local
1975 File f2 = null; local
    [all...]
  /external/libffi/testsuite/libffi.call/
many_win32.c 13 float f2,
26 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/version120/
regress-99663.js 80 function f2() function
114 f2();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-002.js 41 * dec2 = "function f2(){1,2}";
46 * 1,2, giving function f2(){}. This should be legal by the testsuite's lights."
61 dec2 = "function f2(){var y; f1(1,2); y=new Date(); print(y.toString())}";
82 "typeof f2",
84 typeof f2 );
90 "f2.toString() == dec2",
92 StripSpaces(f2.toString()) == StripSpaces(dec2));
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/tiwlan_loader/
tiwlan_loader.c 124 FILE *f1 = NULL, *f2 = NULL, *f3 = NULL; local
181 if ((f2 = fopen(firmware_file_name, "r")) == NULL ) {
186 if( fseek(f2, 0, SEEK_END) ) {
191 firmware_image_length = ftell(f2);
192 rewind(f2);
234 fread(&init_info->data[eeprom_image_length], 1, firmware_image_length, f2) < firmware_image_length ) {
267 if( f2 )
268 fclose(f2);
  /libcore/luni/src/test/java/tests/api/java/io/
FileTest.java 385 File f2 = new File("thisFile.file"); local
388 .compareTo(f2));
455 File f2 = new File(dir, "tempfile.tst"); local
457 f2.deleteOnExit();
462 assertTrue("Test 4: File should exist.", f2.isFile());
473 "return false.", f2.createNewFile());
504 File f2 = null; local
507 f2 = File.createTempFile("hyts_tf", null);
524 currentFile = i == 0 ? f1 : f2;
535 fileName = f2.getName()
589 File f2 = null; local
722 File f2 = new File("filechk.tst"); local
799 File f2 = f.getAbsoluteFile(); local
858 File f2 = f.getCanonicalFile(); local
1065 File f2 = new File(System.getProperty("java.io.tmpdir"), "tempfile2.tmp"); local
1094 File f2 = new File("filechk.tst"); local
1210 File f2 = new File(System.getProperty("java.io.tmpdir"), ".test.tst" + platformId); local
2032 File f2 = new File(dir, "zzz.zzz"); local
2129 File f2 = new File("\/does not exist.txt"); local
2158 File f2 = null; local
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/tiwlan_loader/
tiwlan_loader.c 59 PVOID f1 = NULL, f2 = NULL, f3 = NULL; local
95 (f2 = os_fopen (firmware_file_name, OS_FOPEN_READ)) != NULL)
97 firmware_image_length = os_getFileSize(f2);
134 if (!f2 || (firmware_image_length &&
135 os_fread(&init_info->data[eeprom_image_length], 1, firmware_image_length, f2)<firmware_image_length))
160 if (f2)
161 os_fclose(f2);
  /system/wlan/ti/wilink_6_1/CUDK/tiwlan_loader/
tiwlan_loader.c 59 PVOID f1 = NULL, f2 = NULL, f3 = NULL; local
95 (f2 = os_fopen (firmware_file_name, OS_FOPEN_READ)) != NULL)
97 firmware_image_length = os_getFileSize(f2);
134 if (!f2 || (firmware_image_length &&
135 os_fread(&init_info->data[eeprom_image_length], 1, firmware_image_length, f2)<firmware_image_length))
160 if (f2)
161 os_fclose(f2);
  /external/v8/test/mjsunit/
call.js 63 function f2(a, b) { function
70 assertEquals(3, f2.call(x));
71 assertEquals(14, f2.call({i:12}, 'i'));
72 assertEquals(42, f2.call(x, 'n', 41));
73 assertEquals(87, f2.call(x, 'n', 86, 1));
74 assertEquals(99, f2.call(x, 'n', 98, 1, 2));
switch.js 46 function f2(x) { function
67 assertEquals("zero", f2(0), "0-1-switch.0");
68 assertEquals("one", f2(1), "0-1-switch.1");
69 assertEquals("default", f2(7), "0-1-switch.2");
70 assertEquals("default", f2(-1), "0-1-switch.-1");
71 assertEquals("default", f2(NaN), "0-1-switch.NaN");
72 assertEquals("default", f2(Math.pow(2,34)), "0-1-switch.largeNum");
73 assertEquals("default", f2("0"), "0-1-switch.string");
74 assertEquals("default", f2(false), "0-1-switch.bool");
75 assertEquals("default", f2(null), "0-1-switch.null")
    [all...]
arguments-indirect.js 32 function f2(x) { function
35 g(f2);
47 f2(0,2,3);
binary-operation-overwrite.js 30 function f2() { return (1, 2) + 3; } function
34 assertTrue(f2() === f2());
regexp-string-methods.js 41 var f2 = new RegExp("[g]", "i");
42 assertEquals("G", f2.exec("G"));
43 assertTrue(f2.ignoreCase);
  /libcore/luni/src/main/java/java/lang/
Math.java 522 * @param f2
524 * @return the larger of {@code f1} and {@code f2}.
526 public static float max(float f1, float f2) {
527 if (f1 > f2) {
530 if (f1 < f2) {
531 return f2;
534 if (f1 != f2) {
540 return f2;
624 * @param f2
626 * @return the smaller of {@code f1} and {@code f2}
    [all...]
  /libcore/luni/src/test/java/tests/security/
AccessControllerTest.java 102 return T2.f2();
108 return T2.f2();
116 static String f2(){
  /external/tcpdump/
print-smb.c 179 const char *f1 = NULL, *f2 = NULL; local
217 f2 = fn->descript.req_f2;
223 f2 = fn->descript.rep_f2;
233 smb_fdata(data, f2 ? f2 : "Data=\n", data + dcnt, unicodestr);
339 const char *f1, *f2, *f3, *f4; local
351 f2 = "|Name=[S]\n";
361 f2 = "|Unknown ";
373 smb_fdata(data1 + 2, f2, maxbuf - (paramlen + datalen), unicodestr);
401 const char *f1 = NULL, *f2 = NULL local
442 const char *f1 = NULL, *f2 = NULL; local
487 const char *f1 = NULL, *f2 = NULL; local
841 const char *f1, *f2; local
    [all...]
  /external/freetype/include/freetype/
ftcache.h     [all...]
  /external/icu4c/layout/
AnchorTables.cpp 29 const Format2AnchorTable *f2 = (const Format2AnchorTable *) this; local
31 f2->getAnchor(glyphID, fontInstance, anchor);
  /external/protobuf/gtest/include/gtest/internal/
gtest-tuple.h 264 GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {}
301 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2),
342 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3,
343 GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {}
386 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
387 GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4),
433 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
434 GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2),
588 GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, member in class:std::tr1::tuple
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 69 'lib1-f1': 0x11110, 'lib1-f2': 0x11210,
70 'lib2-f1': 0x21110, 'lib2-f2': 0x21210,
71 'T: F1': 0x50110, 'T: F2': 0x50210, 'T: F3': 0x50410 };
77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500);
80 this.profile.addStaticCode('lib2-f2', 0x21200, 0x21500);
82 this.profile.addCode('T', 'F2', 0x50200, 0x100);
107 this.enter('lib1-f2');
109 this.enter('T: F2');
121 this.enter('T: F2');
204 [['lib1-f1', 'lib1-f2'], 2, 15]
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ExecutorCompletionServiceTest.java 103 Future f2 = ecs.take(); local
104 assertSame(f1, f2);
175 Future f2 = ecs.take(); local
176 assertSame("submit and take must return same objects", f1, f2);
208 Future f2 = ecs.take(); local
209 assertSame("submit and take must return same objects", f1, f2);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
FloatTest.java 165 Float f2 = new Float(90.8f); local
166 assertTrue("Returned incorrect byte value", f.byteValue() == 0 && f2.byteValue() == 90);
189 float f2 = values[j]; local
190 assertTrue("compare() " + f1 + " should be less " + f2,
191 Float.compare(f1, f2) == -1);
192 assertTrue("compare() " + f2 + " should be greater " + f1, Float
193 .compare(f2, f1) == 1);
194 Float F2 = new Float(f2);
195 assertTrue("compareTo() " + f1 + " should be less " + f2,
275 Float f2 = new Float(-0.876f); local
342 Float f2 = new Float(90.8f); local
423 Float f2 = new Float(90.8f); local
1026 Float f2 = new Float(90.8f); local
1184 float f2 = values[j]; local
1210 Float f2 = new Float(8765.4321f); local
    [all...]
  /external/dbus/dbus/
dbus-sha.c 100 #define f2(x,y,z) ( x ^ y ^ z ) /* Rounds 20-39 */ macro
205 subRound (A, B, C, D, E, f2, K2, expand ( eData, 20) );
206 subRound (E, A, B, C, D, f2, K2, expand ( eData, 21) );
207 subRound (D, E, A, B, C, f2, K2, expand ( eData, 22) );
208 subRound (C, D, E, A, B, f2, K2, expand ( eData, 23) );
209 subRound (B, C, D, E, A, f2, K2, expand ( eData, 24) );
210 subRound (A, B, C, D, E, f2, K2, expand ( eData, 25) );
211 subRound (E, A, B, C, D, f2, K2, expand ( eData, 26) );
212 subRound (D, E, A, B, C, f2, K2, expand ( eData, 27) );
213 subRound (C, D, E, A, B, f2, K2, expand ( eData, 28) )
    [all...]
  /external/stlport/test/unit/
mfunptr_test.cpp 44 int f2(S1&, S2&);
79 ptr_fun(f2)(s1, s2);
134 int f2(S1&, S2&) function
  /ndk/sources/android/stlport/test/unit/
mfunptr_test.cpp 44 int f2(S1&, S2&);
79 ptr_fun(f2)(s1, s2);
134 int f2(S1&, S2&) function

Completed in 962 milliseconds

12 3 4 5 6 7