Home
last modified time | relevance | path

Searched refs:func1 (Results 1 – 25 of 111) sorted by relevance

12345

/external/v8/test/mjsunit/regress/
Dregress-334.js36 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/
Dfilters.exp21 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}
Dbranch_func.c38 func1(int i) in func1() function
49 counter += func1(i); in main()
/external/clang/test/CodeGenCXX/
Dstatic-init-1.cpp8 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);
Dmangle-extern-local.cpp15 extern int var1, func1(); in f1()
16 return var1 + func1(); in f1()
/external/clang/test/Modules/Inputs/
Dredecl-merge-right.h66 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/
Dregress-546967.js7 function func1() { function
11 %OptimizeFunctionOnNextCall(func1);
12 func1();
/external/valgrind/drd/tests/
Dstd_list.cpp48 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/
Deh-directive-fnend-diagnostics.s10 .globl func1 symbol
12 .type func1,%function
13 func1: label
Deh-directive-section-comdat.s16 .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
Deh-directive-integrated-test.s31 .globl func1 symbol
33 .type func1,%function
34 func1: label
48 .size func1, .Ltmp1-func1
Deh-directive-pad-diagnostics.s13 .globl func1 symbol
15 .type func1,%function
21 func1: label
Deh-directive-personality-diagnostics.s13 .globl func1 symbol
15 .type func1,%function
21 func1: label
Deh-directive-fnstart-diagnostics.s13 .globl func1 symbol
15 .type func1,%function
17 func1: label
Deh-directive-text-section-multiple-func.s13 .globl func1 symbol
15 .type func1,%function
17 func1: label
74 @ CHECK: Name: func1
Deh-directive-vsave-diagnostics.s15 .globl func1 symbol
17 .type func1,%function
23 func1: label
Deh-directive-save-diagnostics.s15 .globl func1 symbol
17 .type func1,%function
23 func1: label
Deh-directive-section-multiple-func.s13 @ 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
Deh-directive-cantunwind.s12 .globl func1 symbol
14 .type func1,%function
16 func1: label
Deh-directive-setfp-diagnostics.s13 .globl func1 symbol
15 .type func1,%function
21 func1: label
Deh-compact-pr1.s9 .globl func1 symbol
11 .type func1,%function
12 func1: label
/external/llvm/test/Linker/
Dthinlto_funcimport_debug.ll6 ; 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/
Ddeclaration-after-use.js201 function func1() { func1; this; } function in UsesWhichAreFine
202 func1();
203 func1;
/external/clang/test/Index/
Dcomplete-access-checks.cpp3 void func1();
19 void func1();
/external/v8/test/webkit/
Ddfg-int32-to-double-on-set-local-and-exit.js35 function func1() { function
47 …s = func1(); // The bug is that this function will be called twice, if our Int32ToDouble hoisting …

12345