HomeSort by relevance Sort by last modified time
    Searched refs:func1 (Results 1 - 25 of 36) sorted by null

1 2

  /external/clang/test/CodeGen/
2006-09-25-DebugFilename.c 3 int func1() { return hfunc1(); } function
  /external/clang/test/CodeGenCXX/
static-init-1.cpp 9 int func1(int c) { return printf("loading the func1(%d)\n", c); } function
11 static int loader_1 = func1(++count);
15 static int loader_3 = func1(++count);
21 static int loader_5 = func1(++count);
bool-bitfield.cpp 8 void func1(bool b, A& a1) function
mangle-extern-local.cpp 15 extern int var1, func1();
16 return var1 + func1();
  /frameworks/rs/driver/linkloader/tests/stubs/
stub-layout-test.cpp 33 void (*func1)() = (void (*)())stubs.allocateStub((void *)&function1);
36 if (!func1) {
49 func1();
  /system/extras/tests/bionic/libc/bionic/
lib_relocs.c 11 int func1( void ) function
test_relocs.c 7 extern int func1(void);
15 f1 = func1();
18 printf( "func1() returns %d: %s\n", f1, (f1 == expect1) ? "OK" : "FAIL" );
  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 18 int func1(int);
redecl-merge-right.h 66 int func1(int);
67 int func1(int);
68 int func1(int x) { return x; } function
69 int func1(int);
redecl-merge-left.h 63 int func1(int x) { return x; } function
  /external/clang/test/Index/
complete-access-checks.cpp 3 void func1();
19 void func1();
38 // CHECK-SUPER-ACCESS: CXXMethod:{ResultType void}{Informative X::}{TypedText func1}{LeftParen (}{RightParen )} (36)
51 // CHECK-ACCESS: CXXMethod:{ResultType void}{TypedText func1}{LeftParen (}{RightParen )} (34)
complete-type-factors.m 12 int func1(enum Color);
19 func1(c);
38 // CHECK-CC1: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (12)
53 // CHECK-CC2: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (25)
68 // CHECK-CC3: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (25)
84 // CHECK-CC4: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (25)
102 // CHECK-CC6: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (25)
118 // CHECK-CC7: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (25)
130 // CHECK-CC8: FunctionDecl:{ResultType int}{TypedText func1}{LeftParen (}{Placeholder enum Color}{RightParen )} (25)
annotate-tokens.c 50 void func1(void);
187 // CHECK-RANGE1: Keyword: "void" [50:1 - 50:5] FunctionDecl=func1:50:6
188 // CHECK-RANGE1: Identifier: "func1" [50:6 - 50:11] FunctionDecl=func1:50:6
189 // CHECK-RANGE1: Punctuation: "(" [50:11 - 50:12] FunctionDecl=func1:50:6
190 // CHECK-RANGE1: Keyword: "void" [50:12 - 50:16] FunctionDecl=func1:50:6
191 // CHECK-RANGE1: Punctuation: ")" [50:16 - 50:17] FunctionDecl=func1:50:6
  /external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p2.cpp 3 void func1(int i) { // expected-note{{previous definition is here}} function
  /external/compiler-rt/test/Unit/
enable_execute_stack_test.c 38 int func1() function
58 memcpy(execution_buffer, (void *)(uintptr_t)&func1, 128);
clear_cache_test.c 31 int func1() function
62 memcpy(execution_buffer, (void *)(uintptr_t)&func1, 128);
  /external/stlport/test/unit/
func_test.cpp 17 CPPUNIT_TEST(func1);
23 void func1();
43 void FuncTest::func1() function in class:FuncTest
  /ndk/tests/device/test-gnustl-full/unit/
func_test.cpp 17 CPPUNIT_TEST(func1);
23 void func1();
43 void FuncTest::func1() function in class:FuncTest
  /ndk/tests/device/test-stlport/unit/
func_test.cpp 17 CPPUNIT_TEST(func1);
23 void func1();
43 void FuncTest::func1() function in class:FuncTest
  /external/clang/test/Sema/
attr-deprecated-message.c 26 int func1() function
  /external/v8/test/mjsunit/regress/
regress-334.js 36 function func1(){} function
40 %SetProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
42 %SetProperty(object, "baz", func1, DONT_DELETE | READ_ONLY);
43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE | READ_ONLY);
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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.tas/futures.task.members/
make_ready_at_thread_exit.pass.cpp 40 void func1(std::packaged_task<double(int, char)> p) function
82 std::thread(func1, std::move(p)).detach();
operator.pass.cpp 40 void func1(std::packaged_task<double(int, char)> p) function
82 std::thread(func1, std::move(p)).detach();
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.shared_future/
wait.pass.cpp 19 void func1(std::promise<int> p) function
48 std::thread(func1, std::move(p)).detach();
wait_for.pass.cpp 23 void func1(std::promise<int> p) function
51 std::thread(func1, std::move(p)).detach();

Completed in 1428 milliseconds

1 2