HomeSort by relevance Sort by last modified time
    Searched defs:func (Results 326 - 350 of 1347) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/end.to.end/
oneshot_func.pass.cpp 22 template <typename R> struct func { struct
25 func get_return_object() { return {this}; }
40 func() {} function in struct:func
41 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } function in struct:func
42 func(func const &) = delete;
44 func &operator=(func &&rhs) {
54 template <typename F> static func Create(F f) { co_return f();
56 template <typename F> func(F f) : func(Create(f)) {} function in struct:func
64 func(promise_type *promise) function in struct:func
    [all...]
multishot_func.pass.cpp 20 template <typename R> struct func { struct
26 func get_return_object() { return {this}; }
45 func() {} function in struct:func
46 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } function in struct:func
47 func(func const &) = delete;
49 func &operator=(func &&rhs) {
59 template <typename F> static func Create(F f)
65 template <typename F> func(F f) : func(Create(f)) {} function in struct:func
73 func(promise_type *promise) function in struct:func
    [all...]
  /external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
multishot_func.pass.cpp 20 template <typename R> struct func { struct
26 func get_return_object() { return {this}; }
45 func() {} function in struct:func
46 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } function in struct:func
47 func(func const &) = delete;
49 func &operator=(func &&rhs) {
59 template <typename F> static func Create(F f)
65 template <typename F> func(F f) : func(Create(f)) {} function in struct:func
73 func(promise_type *promise) function in struct:func
    [all...]
  /bionic/libc/kernel/uapi/linux/
pg.h 25 char func; member in struct:pg_write_hdr
  /device/linaro/bootloader/arm-trusted-firmware/bl31/aarch64/
crash_reporting.S 62 func print_newline label
74 func size_controlled_print label
114 func str_in_crash_buf_print label
153 func report_unhandled_exception label
170 func report_unhandled_interrupt label
186 func el3_panic label
214 func do_crash_reporting label
335 func report_unhandled_exception label
342 func crash_panic label
  /device/linaro/bootloader/arm-trusted-firmware/common/aarch64/
debug.S 57 func asm_assert label
93 func asm_print_str label
109 func asm_print_hex label
146 func do_panic label
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dis.py 86 def do_disassembly_test(self, func, expected):
90 dis.dis(func)
129 def func(count): function in function:DisTests.test_big_linenos
131 func = "def foo():\n " + "".join(["\n "] * count + ["spam\n"])
132 exec func in namespace
138 self.do_disassembly_test(func(i), expected)
143 self.do_disassembly_test(func(i), expected)
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
md_var.h 39 uint64_t func; member in struct:ia64_fdesc
43 #define FDESC_FUNC(fn) (((struct ia64_fdesc *) fn)->func)
  /external/boringssl/src/tool/
tool.cc 41 tool_func_t func; member in struct:Tool
73 if (tool.func == nullptr) {
83 if (tool.func == nullptr || name == tool.name) {
84 return tool.func;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PBES2Parameters.java 16 private KeyDerivationFunc func; field in class:PBES2Parameters
36 this.func = keyDevFunc;
48 func = new KeyDerivationFunc(id_PBKDF2, PBKDF2Params.getInstance(funcSeq.getObjectAt(1)));
52 func = KeyDerivationFunc.getInstance(funcSeq);
60 return func;
72 v.add(func);
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p1.cpp 33 int func () { function in struct:pr16992::ABC
41 int func () { function in struct:pr16992::ABC2
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
basic.cpp 41 void func(bar<T>) { // expected-note {{candidate template ignored: could not match 'bar' against 'foo'}} function in namespace:test3
45 func(foo<int>()); // expected-error {{no matching function}}
  /external/clang/test/CodeGen/
ms_this.cpp 44 // CHECK: define linkonce_odr void @"\01?func@s@@
45 void func() { function in struct:s
54 f3.func();
tentative-decls.c 36 static int func() { return c5[0]; } function
37 int callfunc() { return func(); }
  /external/clang/test/CodeGenCXX/Inputs/
debug-info-class-limited.cpp 49 void func() { function in namespace:test2
  /external/clang/test/CodeGenCXX/
debug-info-enum.cpp 29 bool func(int i) { function in namespace:test2
43 void func() { function in namespace:test3
trivial-constructor-init.cpp 42 friend void func();
45 void func() { foo<int> f; } function in namespace:PR22793
  /external/clang/test/Sema/
incomplete-decl.c 18 void func() { function
init-struct-qualified.c 11 void func() { function
typo-correction.c 25 void func(int arg) { function
  /external/clang/test/SemaCXX/
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;
51 virtual virtual void func(); // expected-warning {{duplicate 'virtual' declaration specifier}}
  /external/compiler-rt/test/ubsan/TestCases/Misc/
nonnull-arg.cpp 8 // RUN: not %run %t 0f 2>&1 | FileCheck %s --check-prefix=FUNC
27 __attribute__((nonnull)) int func(int *nonnull) { return *nonnull; } function
52 return func(arg);
53 // FUNC: {{.*}}nonnull-arg.cpp:[[@LINE-1]]:19: runtime error: null pointer passed as argument 1, which is declared to never be null
54 // FUNC-NEXT: {{.*}}nonnull-arg.cpp:27:16: note: nonnull attribute specified here
  /external/curl/lib/
curl_threads.c 45 unsigned int (*func)(void *); member in struct:curl_actual_call
52 unsigned int (*func)(void *) = ac->func;
57 (*func)(real_arg);
62 curl_thread_t Curl_thread_create(unsigned int (*func) (void *), void *arg)
69 ac->func = func;
104 curl_thread_t Curl_thread_create(unsigned int (CURL_STDCALL *func) (void *),
109 t = CreateThread(NULL, 0, func, arg, 0, NULL);
111 t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL)
    [all...]
  /external/deqp/framework/egl/
egluGLFunctionLoader.cpp 40 glw::GenericFuncType func = (glw::GenericFuncType)m_library->getFunction(name); local
42 if (!func)
45 return func;
  /external/e2fsprogs/lib/ext2fs/
atexit.c 28 ext2_exit_fn func; member in struct:exit_data
40 if (ed->func == NULL)
42 ed->func(ed->data);
54 errcode_t ext2fs_add_exit_fn(ext2_exit_fn func, void *data)
60 if (func == NULL)
64 if (ed->func == func && ed->data == data)
66 if (ed->func == NULL)
71 free_ed->func = func;
    [all...]

Completed in 891 milliseconds

<<11121314151617181920>>