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

1 2 3 4 5 6 7 8

  /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...]
  /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...)>&);
  /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]
test_as_parameter.py 27 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
35 f.argtypes = [POINTER(c_int)]
78 f.argtypes = None
92 f.argtypes = [c_int, MyCallback]
117 f.argtypes = [c_int, MyCallback]
135 f.argtypes = [c_longlong, MyCallback]
158 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
170 dll.ret_2h_func.argtypes = [S2H]
190 dll.ret_8i_func.argtypes = [S8I]
test_python_api.py 24 PyString_FromStringAndSize.argtypes = c_char_p, c_py_ssize_t
30 pythonapi.PyString_FromString.argtypes = (c_char_p,)
51 pythonapi.PyInt_AsLong.argtypes = (py_object,)
72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_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]
test_as_parameter.py 27 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
35 f.argtypes = [POINTER(c_int)]
78 f.argtypes = None
92 f.argtypes = [c_int, MyCallback]
117 f.argtypes = [c_int, MyCallback]
135 f.argtypes = [c_longlong, MyCallback]
158 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
170 dll.ret_2h_func.argtypes = [S2H]
190 dll.ret_8i_func.argtypes = [S8I]
test_python_api.py 24 PyString_FromStringAndSize.argtypes = c_char_p, c_py_ssize_t
30 pythonapi.PyString_FromString.argtypes = (c_char_p,)
51 pythonapi.PyInt_AsLong.argtypes = (py_object,)
72 PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_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/chromium_org/third_party/angle/src/common/
event_tracer.cpp 40 int numArgs, const char** argNames, const unsigned char* argTypes,
45 g_addTraceEvent(phase, categoryGroupEnabled, name, id, numArgs, argNames, argTypes, argValues, flags);
event_tracer.h 13 const unsigned char* argTypes, const unsigned long long* argValues,
28 int numArgs, const char** argNames, const unsigned char* argTypes,
  /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)...);
  /external/llvm/bindings/python/llvm/
object.py 440 library.LLVMCreateObjectFile.argtypes = [MemoryBuffer]
443 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
445 library.LLVMGetSections.argtypes = [ObjectFile]
448 library.LLVMDisposeSectionIterator.argtypes = [c_object_p]
450 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p]
453 library.LLVMMoveToNextSection.argtypes = [c_object_p]
455 library.LLVMMoveToContainingSection.argtypes = [c_object_p, c_object_p]
457 library.LLVMGetSymbols.argtypes = [ObjectFile]
460 library.LLVMDisposeSymbolIterator.argtypes = [c_object_p]
462 library.LLVMIsSymbolIteratorAtEnd.argtypes = [ObjectFile, c_object_p
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p21.cpp 11 template<class R, class ... ArgTypes> struct X<R(int, ArgTypes ...)> {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/
types.pass.cpp 12 // template<class R, class... ArgTypes>
13 // class packaged_task<R(ArgTypes...)>

Completed in 420 milliseconds

1 2 3 4 5 6 7 8