/external/v8/test/mjsunit/regress/ |
D | regress-334.js | 36 function func1(){} function 40 %AddNamedProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE); 41 %AddNamedProperty(object, "bar", func1, DONT_ENUM | READ_ONLY); 42 %AddNamedProperty(object, "baz", func1, DONT_DELETE | READ_ONLY); 43 %AddNamedProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE); 59 assertEquals(func1, object.foo, "read foo"); 60 assertEquals(func1, object.bar, "read bar"); 61 assertEquals(func1, object.baz, "read baz"); 66 assertEquals(func1, object.bar, "read bar 2"); 86 assertEquals(func1, object.bif, "read bif 2"); [all …]
|
/external/ltrace/testsuite/ltrace.main/ |
D | filters.exp | 21 void func1(void) { func2(); } 30 void func1(void); 31 int main(int argc, char *argv[]) { func1(); return 0; } 39 {{func1 resumed} == 1} 63 {{func1 resumed} == 1} 70 {{func1 resumed} == 1} 81 {{func1 resumed} == 1}
|
D | branch_func.c | 38 func1(int i) in func1() function 49 counter += func1(i); in main()
|
/external/clang/test/CodeGenCXX/ |
D | static-init-1.cpp | 8 int func1(int c) { return printf("loading the func1(%d)\n", c); } in func1() function 10 static int loader_1 = func1(++count); 15 static int loader_3 = func1(++count); 21 static int loader_5 = func1(++count);
|
D | mangle-extern-local.cpp | 15 extern int var1, func1(); in f1() 16 return var1 + func1(); in f1()
|
/external/clang/test/Modules/Inputs/ |
D | redecl-merge-right.h | 66 int func1(int); 67 int func1(int); 68 int func1(int x) { return x; } in func1() function 69 int func1(int);
|
/external/v8/test/mjsunit/harmony/regress/ |
D | regress-546967.js | 7 function func1() { function 11 %OptimizeFunctionOnNextCall(func1); 12 func1();
|
/external/valgrind/drd/tests/ |
D | std_list.cpp | 48 void func1() { in func1() function in Test 59 void *func1(void *instance) in func1() function 63 casted->func1(); in func1() 86 err = pthread_create(&thread1, NULL, &func1, &instance1); in main()
|
/external/llvm/test/MC/ARM/ |
D | eh-directive-fnend-diagnostics.s | 10 .globl func1 symbol 12 .type func1,%function 13 func1: label
|
D | eh-directive-section-comdat.s | 16 .section .TEST1,"axG",%progbits,func1,comdat 17 .weak func1 19 .type func1,%function 20 func1: label 128 @ Check symbol func1. It should be weak binding, and belong to .TEST1 section. 132 @ CHECK: Name: func1
|
D | eh-directive-integrated-test.s | 31 .globl func1 symbol 33 .type func1,%function 34 func1: label 48 .size func1, .Ltmp1-func1
|
D | eh-directive-pad-diagnostics.s | 13 .globl func1 symbol 15 .type func1,%function 21 func1: label
|
D | eh-directive-personality-diagnostics.s | 13 .globl func1 symbol 15 .type func1,%function 21 func1: label
|
D | eh-directive-fnstart-diagnostics.s | 13 .globl func1 symbol 15 .type func1,%function 17 func1: label
|
D | eh-directive-text-section-multiple-func.s | 13 .globl func1 symbol 15 .type func1,%function 17 func1: label 74 @ CHECK: Name: func1
|
D | eh-directive-vsave-diagnostics.s | 15 .globl func1 symbol 17 .type func1,%function 23 func1: label
|
D | eh-directive-save-diagnostics.s | 15 .globl func1 symbol 17 .type func1,%function 23 func1: label
|
D | eh-directive-section-multiple-func.s | 13 @ In this example, func1 and func2 should be defined in .TEST1 section. 21 .globl func1 symbol 23 .type func1,%function 25 func1: label 121 @ CHECK: Name: func1
|
D | eh-directive-cantunwind.s | 12 .globl func1 symbol 14 .type func1,%function 16 func1: label
|
D | eh-directive-setfp-diagnostics.s | 13 .globl func1 symbol 15 .type func1,%function 21 func1: label
|
D | eh-compact-pr1.s | 9 .globl func1 symbol 11 .type func1,%function 12 func1: label
|
/external/llvm/test/Linker/ |
D | thinlto_funcimport_debug.ll | 6 ; If we import func1 and not func2 we should only link DISubprogram for func1 7 ; RUN: llvm-link %t2.bc -functionindex=%t3.thinlto.bc -import=func1:%t.bc -S | FileCheck %s 10 ; CHECK: define available_externally i32 @func1 19 ; CHECK: distinct !DISubprogram(name: "func1" 28 define i32 @func1(i32 %n) #0 !dbg !4 { 59 !4 = distinct !DISubprogram(name: "func1", scope: !1, file: !1, line: 1, type: !5, isLocal: false, …
|
/external/v8/test/mjsunit/strong/ |
D | declaration-after-use.js | 201 function func1() { func1; this; } function in UsesWhichAreFine 202 func1(); 203 func1;
|
/external/clang/test/Index/ |
D | complete-access-checks.cpp | 3 void func1(); 19 void func1();
|
/external/v8/test/webkit/ |
D | dfg-int32-to-double-on-set-local-and-exit.js | 35 function func1() { function 47 …s = func1(); // The bug is that this function will be called twice, if our Int32ToDouble hoisting …
|