HomeSort by relevance Sort by last modified time
    Searched defs:func (Results 26 - 50 of 438) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.promise/
set_rvalue_at_thread_exit.pass.cpp 22 void func(std::promise<std::unique_ptr<int>> p) function
35 std::thread(func, std::move(p)).detach();
set_lvalue_at_thread_exit.pass.cpp 22 void func(std::promise<int&> p) function
33 std::thread(func, std::move(p)).detach();
set_value_at_thread_exit_const.pass.cpp 19 void func(std::promise<int> p) function
30 std::thread(func, std::move(p)).detach();
set_value_at_thread_exit_void.pass.cpp 22 void func(std::promise<void> p) function
33 std::thread(func, std::move(p)).detach();
set_exception_at_thread_exit.pass.cpp 19 void func(std::promise<int> p) function
31 std::thread(func, std::move(p)).detach();
  /external/clang/test/CXX/stmt.stmt/stmt.ambig/
p1-0x.cpp 16 void func(A, B, C, D, E);
18 void func(int a, int c) { function
27 func(a, d, e, f, g);
39 func(a, d, e, f, g);
  /external/clang/test/CodeGenCXX/
ms_wide_predefined_expr.cpp 11 void func() { function
16 func();
global-dtor-no-atexit.cpp 42 void func() { function
debug-info-class.cpp 2 void func(foo *f) { function
5 void func(bar *f) { function
8 void func(baz *f) { function
  /external/clang/test/Modules/Inputs/
templates-top.h 16 static void func() {} function in class:A::WhereAmI
  /ndk/tests/device/test-stlport_shared-exception/jni/
spec3.cpp 15 void func() throw (B,A) function
22 try { func(); }
  /ndk/tests/device/test-stlport_static-exception/jni/
spec3.cpp 15 void func() throw (B,A) function
22 try { func(); }
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p17-crash.cpp 4 // new expression in func()
12 void func() { function
  /external/clang/test/CodeGen/
ext-vector-member-alignment.c 12 void func(struct struct1* p, float *a, float *b, float c) { function
19 // CHECK: @func
2003-09-30-StructLayout.c 16 void func(struct St* A) { function
mangle.c 55 int func(void);
56 extern int func (void) __asm__ ("FUNC");
58 // CHECK: @FUNC
59 int func(void) { function
x86_32-inline-asm.c 10 int func() { function
  /external/clang/test/Sema/
2007-10-01-BuildArrayRef.c 3 void func() function
implicit-decl.c 8 void func() { function
  /external/clang/test/SemaCXX/
out-of-line-def-mismatch.cpp 10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}}
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}}
13 void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('unsigned int' vs 'unsigned int *')}}
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'} function in class:N2::N1::S2
23 void N2::N1::S2::func(S1, unsigned) {} \/\/ expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
24 void N2::N1::S2::func(unsigned*, S1*) {} \/\/ expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
    [all...]
virtuals.cpp 40 typedef int func(int); typedef in namespace:rdar9670557
41 func *a();
43 virtual func f = 0;
44 virtual func (g) = 0;
45 func *h = 0;
  /external/chromium/testing/
multiprocess_func_list.cc 9 // Helper functions to maintain mapping of "test name"->test func.
17 // Retrieve a reference to the global 'func name' -> func ptr map.
34 ChildFunctionPtr func = it->second; local
35 if (func) {
36 return (*func)();
  /external/clang/test/Index/
c-index-getCursor-pp.c 5 void OBSCURE(func)(int x) { function
  /external/clang/test/Parser/
builtin_types_compatible.c 9 #define func(expr) \ macro
27 func(a);
28 func(b);
29 func(d);
  /external/freetype/src/base/
ftadvanc.c 75 FT_Face_GetAdvancesFunc func; local
84 func = face->driver->clazz->get_advances;
85 if ( func && LOAD_ADVANCE_FAST_CHECK( flags ) )
90 error = func( face, gindex, 1, flags, padvance );
111 FT_Face_GetAdvancesFunc func; local
127 func = face->driver->clazz->get_advances;
128 if ( func && LOAD_ADVANCE_FAST_CHECK( flags ) )
130 error = func( face, start, count, flags, padvances );

Completed in 1139 milliseconds

12 3 4 5 6 7 8 91011>>