HomeSort by relevance Sort by last modified time
    Searched full:argtypes (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
injected-class-name.cpp 49 template<typename R, typename ...ArgTypes>
50 struct X<R(ArgTypes...)> {
51 X<R(ArgTypes...)> f();
54 template<typename R, typename ...ArgTypes>
55 X<R(ArgTypes...)> X<R(ArgTypes...)>::f() { return *this; }
61 template<typename ...ArgTypes> int g(ArgTypes...);
65 template<typename R, typename ...ArgTypes>
66 struct X1<R(ArgTypes...)>
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.nullptr/
operator_==.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
15 // bool operator==(const function<R(ArgTypes...)>&, nullptr_t);
17 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
18 // bool operator==(nullptr_t, const function<R(ArgTypes...)>&);
20 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
21 // bool operator!=(const function<R(ArgTypes...)>&, nullptr_t);
23 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
24 // bool operator!=(nullptr_t, const function<R(ArgTypes...)>&);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.nullptr/
operator_==.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
15 // bool operator==(const function<R(ArgTypes...)>&, nullptr_t);
17 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
18 // bool operator==(nullptr_t, const function<R(ArgTypes...)>&);
20 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
21 // bool operator!=(const function<R(ArgTypes...)>&, nullptr_t);
23 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
24 // bool operator!=(nullptr_t, const function<R(ArgTypes...)>&);
operator_EQEQ.pass.cpp 12 // class function<R(ArgTypes...)>
14 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
15 // bool operator==(const function<R(ArgTypes...)>&, nullptr_t);
17 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
18 // bool operator==(nullptr_t, const function<R(ArgTypes...)>&);
20 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
21 // bool operator!=(const function<R(ArgTypes...)>&, nullptr_t);
23 // template <MoveConstructible R, MoveConstructible ... ArgTypes>
24 // bool operator!=(nullptr_t, const function<R(ArgTypes...)>&);
  /external/llvm/bindings/python/llvm/
core.py 441 library.LLVMInitializeCore.argtypes = [PassRegistry]
444 library.LLVMInitializeTransformUtils.argtypes = [PassRegistry]
447 library.LLVMInitializeScalarOpts.argtypes = [PassRegistry]
450 library.LLVMInitializeObjCARCOpts.argtypes = [PassRegistry]
453 library.LLVMInitializeVectorization.argtypes = [PassRegistry]
456 library.LLVMInitializeInstCombine.argtypes = [PassRegistry]
459 library.LLVMInitializeIPO.argtypes = [PassRegistry]
462 library.LLVMInitializeInstrumentation.argtypes = [PassRegistry]
465 library.LLVMInitializeAnalysis.argtypes = [PassRegistry]
468 library.LLVMInitializeIPA.argtypes = [PassRegistry
    [all...]
object.py 439 library.LLVMCreateObjectFile.argtypes = [MemoryBuffer]
442 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
444 library.LLVMGetSections.argtypes = [ObjectFile]
447 library.LLVMDisposeSectionIterator.argtypes = [c_object_p]
449 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p]
452 library.LLVMMoveToNextSection.argtypes = [c_object_p]
454 library.LLVMMoveToContainingSection.argtypes = [c_object_p, c_object_p]
456 library.LLVMGetSymbols.argtypes = [ObjectFile]
459 library.LLVMDisposeSymbolIterator.argtypes = [c_object_p]
461 library.LLVMIsSymbolIteratorAtEnd.argtypes = [ObjectFile, c_object_p
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_cfuncs.py 19 self._dll.tf_b.argtypes = (c_byte,)
25 self._dll.tf_bb.argtypes = (c_byte, c_byte)
31 self._dll.tf_B.argtypes = (c_ubyte,)
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
43 self._dll.tf_h.argtypes = (c_short,)
49 self._dll.tf_bh.argtypes = (c_byte, c_short)
55 self._dll.tf_H.argtypes = (c_ushort,)
61 self._dll.tf_bH.argtypes = (c_byte, c_ushort)
67 self._dll.tf_i.argtypes = (c_int,)
73 self._dll.tf_bi.argtypes = (c_byte, c_int
    [all...]
test_prototypes.py 49 func.argtypes = None
76 func.argtypes = POINTER(c_int),
80 func.argtypes = c_char_p,
83 func.argtypes = POINTER(c_short),
86 func.argtypes = POINTER(c_double),
92 func.argtypes = POINTER(c_char),
107 func.argtypes = c_char_p,
122 func.argtypes = c_void_p,
153 func.argtypes = c_void_p,
156 func.argtypes = Non
    [all...]
test_libc.py 10 lib.my_sqrt.argtypes = c_double,
18 lib.my_qsort.argtypes = c_void_p, c_size_t, c_size_t, comparefunc
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
53 GetModuleHandle.argtypes = [c_wchar_p]
66 GetModuleHandle.argtypes = [c_wchar_p]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_cfuncs.py 19 self._dll.tf_b.argtypes = (c_byte,)
25 self._dll.tf_bb.argtypes = (c_byte, c_byte)
31 self._dll.tf_B.argtypes = (c_ubyte,)
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
43 self._dll.tf_h.argtypes = (c_short,)
49 self._dll.tf_bh.argtypes = (c_byte, c_short)
55 self._dll.tf_H.argtypes = (c_ushort,)
61 self._dll.tf_bH.argtypes = (c_byte, c_ushort)
67 self._dll.tf_i.argtypes = (c_int,)
73 self._dll.tf_bi.argtypes = (c_byte, c_int
    [all...]
test_prototypes.py 49 func.argtypes = None
76 func.argtypes = POINTER(c_int),
80 func.argtypes = c_char_p,
83 func.argtypes = POINTER(c_short),
86 func.argtypes = POINTER(c_double),
92 func.argtypes = POINTER(c_char),
107 func.argtypes = c_char_p,
122 func.argtypes = c_void_p,
153 func.argtypes = c_void_p,
156 func.argtypes = Non
    [all...]
test_libc.py 10 lib.my_sqrt.argtypes = c_double,
18 lib.my_qsort.argtypes = c_void_p, c_size_t, c_size_t, comparefunc
test_errno.py 21 libc_open.argtypes = c_char_p, c_int
38 libc_open.argtypes = c_char_p, c_int
53 GetModuleHandle.argtypes = [c_wchar_p]
66 GetModuleHandle.argtypes = [c_wchar_p]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 12 // template<Returnable R, CopyConstructible... ArgTypes>
13 // class function<R(ArgTypes...)>
14 // : public unary_function<T1, R> // iff sizeof...(ArgTypes) == 1 and
15 // // ArgTypes contains T1
16 // : public binary_function<T1, T2, R> // iff sizeof...(ArgTypes) == 2 and
17 // // ArgTypes contains T1 and T2
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 12 // template<Returnable R, CopyConstructible... ArgTypes>
13 // class function<R(ArgTypes...)> {
16 // typedef T1 argument_type; // iff sizeof...(ArgTypes) == 1 and
17 // // the type in ArgTypes is T1
18 // typedef T1 first_argument_type; // iff sizeof...(ArgTypes) == 2 and
19 // // ArgTypes contains T1 and T2
20 // typedef T2 second_argument_type; // iff sizeof...(ArgTypes) == 2 and
21 // // ArgTypes contains T1 and T2
  /external/libcxx/test/std/thread/futures/futures.tas/futures.task.nonmembers/
swap.pass.cpp 14 // class packaged_task<R(ArgTypes...)>
16 // template <class R, class... ArgTypes>
18 // swap(packaged_task<R(ArgTypes...)>& x, packaged_task<R(ArgTypes...)>& y);
  /external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.invoke/
invoke.fail.cpp 14 // template <class... ArgTypes>
15 // requires Callable<T, ArgTypes&&...>
16 // Callable<T, ArgTypes&&...>::result_type
17 // operator()(ArgTypes&&... args) const;
invoke_int_0.pass.cpp 14 // template <class... ArgTypes>
15 // requires Callable<T, ArgTypes&&...>
16 // Callable<T, ArgTypes&&...>::result_type
17 // operator()(ArgTypes&&... args) const;
invoke_void_0.pass.cpp 14 // template <class... ArgTypes>
15 // requires Callable<T, ArgTypes&&...>
16 // Callable<T, ArgTypes&&...>::result_type
17 // operator()(ArgTypes&&... args) const;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.nonmembers/
swap.pass.cpp 12 // class packaged_task<R(ArgTypes...)>
14 // template <class R, class... ArgTypes>
16 // swap(packaged_task<R(ArgTypes...)>& x, packaged_task<R(ArgTypes...)>& y);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.fail.cpp 14 // template <class... ArgTypes>
15 // requires Callable<T, ArgTypes&&...>
16 // Callable<T, ArgTypes&&...>::result_type
17 // operator()(ArgTypes&&... args) const;
invoke_int_0.pass.cpp 14 // template <class... ArgTypes>
15 // requires Callable<T, ArgTypes&&...>
16 // Callable<T, ArgTypes&&...>::result_type
17 // operator()(ArgTypes&&... args) const;
invoke_void_0.pass.cpp 14 // template <class... ArgTypes>
15 // requires Callable<T, ArgTypes&&...>
16 // Callable<T, ArgTypes&&...>::result_type
17 // operator()(ArgTypes&&... args) const;
  /ndk/tests/device/issue35933-lambda/jni/
issue35933-lambda.cpp 17 template <class Callable, typename... ArgTypes>
18 void* Call(Callable native_func, ArgTypes&&... args) noexcept
21 return native_func(std::forward<ArgTypes>(args)...);

Completed in 249 milliseconds

1 2 3 4 5 6 7 8 91011