/external/clang/test/CodeGenCXX/ |
aarch64-mangle-neon-vectors.cpp | 45 void f3(int32x2_t) {} function
|
mangle-ms-return-qualifiers.cpp | 146 struct S* f3() { return 0; } function 147 // CHECK: "\01?f3@@YAPAUS@@XZ"
|
x86_32-arguments.cpp | 79 s3_2 f3() { return s3_2(); } function
|
temp-order.cpp | 81 static unsigned f3() { function 176 print("f3", f3()); 177 if (f3() != ORDER4(7, 3, 11, 2))
|
mangle.cpp | 261 template <int i> void f3(int (*)[i+i]) { }; function in namespace:Expressions 262 template void f3<1>(int (*)[2]); 758 template<class T> auto f3(T p)->decltype(g(p)) {} 765 template void f3(int); 818 void f3(int (&)[N + sizeof(int*)]) {} function in namespace:test34 821 template void f3<4>(int (&)[4 + sizeof(int*)]);
|
/external/clang/test/Parser/ |
asm-constraints-pr7869.c | 24 f3 (void) function
|
/external/clang/test/Sema/ |
complex-int.c | 65 int f3[-(2.0+3.0i) == +(-3.0i-2.0) ? 1 : -1]; variable
|
warn-type-safety.cpp | 30 void f3(void *buf, int count, MPI_Datatype datatype)
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-references.cpp | 119 F f3 { { { 0 } } }; // expected-error {{chosen constructor is explicit}}
|
uninitialized.cpp | 373 F *f3, *f4; member in struct:__anon17133::G 381 G(char (*)[6]) : f3(f3) {} // expected-warning {{field 'f3' is uninitialized when used here}} 382 G(char (*)[7]) : f3(f3->*f_ptr) {} // expected-warning {{field 'f3' is uninitialized when used here}} 383 G(char (*)[8]) : f3(new F(f3->*ptr)) {} // expected-warning {{field 'f3' is uninitialized when used here} [all...] |
/external/v8/test/mjsunit/ |
break.js | 52 function f3() { function 67 f3();
|
switch.js | 83 function f3(x, c) { function 105 assertEquals("two", f3(2,0), "value-switch.2-0"); 106 assertEquals("minus 5", f3(-5,0), "value-switch.-5-0"); 107 assertEquals("nine", f3(9,0), "value-switch.9-0"); 108 assertEquals("value is c = 0", f3(0,0), "value-switch.0-0"); 109 assertEquals("value is c = 2", f3(2,2), "value-switch.2-2"); 110 assertEquals("default", f3(7,0), "value-switch.7-0");
|
/external/v8/test/mjsunit/compiler/ |
loopcount.js | 38 function f3(x) { x = x & 0x3fffffff; x++; return x; } function 39 assertEquals(0x40000000, f3(0x3fffffff));
|
regress-3249650.js | 34 function f3(x) { try { } catch (e) {}} function 44 f3(x);
|
simple-global-access.js | 36 function f3() { this.x = g4; } class 38 var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 }
|
/external/v8/test/mjsunit/regress/ |
regress-1423.js | 49 if (f3(x, 'other-literal')) { 59 function f3(x, y) { function
|
/external/clang/test/SemaTemplate/ |
default-expr-arguments.cpp | 15 template<typename T> void f3(T a, T b = T() + T()); // expected-error{{invalid operands to binary expression ('S' and 'S')}} 24 f3(10); 25 f3(S()); // expected-note{{in instantiation of default function argument expression for 'f3<S>' required here}}
|
friend-template.cpp | 44 template<typename U> friend void f3(U); 54 // FIXME: Should this declaration of f3 be required for the specialization of 55 // f3<int> (further below) to work? GCC and EDG don't require it, we do... 56 template<typename U> void f3(U); 58 template<> void f3(int);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ComputeTest.java | 112 Float3 f3 = new Float3(); local 113 f3.x = 1.0f; 114 f3.y = 2.0f; 115 f3.z = 3.0f; 116 f3 = new Float3(1.0f, 2.0f, 3.0f); 117 assertTrue(f3.x == 1.0f); 118 assertTrue(f3.y == 2.0f); 119 assertTrue(f3.z == 3.0f); 299 avtItem.f3.x = 1.0f; 300 avtItem.f3.y = 2.0f [all...] |
/external/chromium_org/v8/test/mjsunit/ |
switch.js | 83 function f3(x, c) { function 105 assertEquals("two", f3(2,0), "value-switch.2-0"); 106 assertEquals("minus 5", f3(-5,0), "value-switch.-5-0"); 107 assertEquals("nine", f3(9,0), "value-switch.9-0"); 108 assertEquals("value is c = 0", f3(0,0), "value-switch.0-0"); 109 assertEquals("value is c = 2", f3(2,2), "value-switch.2-2"); 110 assertEquals("default", f3(7,0), "value-switch.7-0");
|
debug-breakpoints.js | 210 function h() {a=f(f2(1,2),f3())+f3();b=f3();} 215 [16, "f2(1,2),[B0]f3()"], 216 [22, "+[B0]f3()"]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
FileTest.java | 344 File f3 = new File("thatFile.file"); local 347 assertTrue("f3.compareTo(f1) did not result in value < 0", f3 349 assertTrue("f1.compareTo(f3) did not result in value > 0", f1 350 .compareTo(f3) > 0); 498 File f3 = File.createTempFile("ab", ".tst"); local 499 f3.delete(); 505 File f3 = File.createTempFile("a", ".tst"); local 506 f3.delete(); 512 File f3 = File.createTempFile("", ".tst") local 581 File f3 = File.createTempFile("harmony-test-FileTest_tempFile2_tf", null, dir); local 682 File f3 = new File("xxxx"); local 878 File f2 = null, f3 = null, dir2 = null; local 981 File f3 = new File(tempDirectory, "\/a\/tempfile.tmp"); local 1004 File f3 = new File("c:"); local [all...] |
/external/e2fsprogs/debian/ |
rules | 32 COMERR_VERSION = $(shell grep ELF_VERSION lib/et/Makefile.in | cut '-d ' -f3) 33 COMERR_SOVERSION = $(shell grep ELF_SO_VERSION lib/et/Makefile.in | cut '-d ' -f3) 34 SS_VERSION = $(shell grep ELF_VERSION lib/ss/Makefile.in | cut '-d ' -f3) 35 SS_SOVERSION = $(shell grep ELF_SO_VERSION lib/ss/Makefile.in | cut '-d ' -f3) 38 UUID_VERSION = $(shell grep ELF_VERSION lib/uuid/Makefile.in | cut '-d ' -f3) 39 UUID_SOVERSION = $(shell grep ELF_SO_VERSION lib/uuid/Makefile.in | cut '-d ' -f3) 41 BLKID_VERSION = $(shell grep ELF_VERSION lib/blkid/Makefile.in | cut '-d ' -f3) 42 BLKID_SOVERSION = $(shell grep ELF_SO_VERSION lib/blkid/Makefile.in | cut '-d ' -f3) 45 EXT2FS_SOVERSION = $(shell grep ELF_SO_VERSION lib/ext2fs/Makefile.in | cut '-d ' -f3) 46 E2P_SOVERSION = $(shell grep ELF_SO_VERSION lib/e2p/Makefile.in | cut '-d ' -f3) [all...] |
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_RESTORE_STATE.S | 59 lw f3, fr3*4(a0) # restore f3
|
TEMPLATE_SAVE_STATE.S | 71 sw f3, fr3*4(a0) # save f3
|