/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue64/ |
MethodDesc.java | 22 private List<Class<?>> argTypes; 27 public MethodDesc(String name, List<Class<?>> argTypes) { 29 this.argTypes = argTypes; 41 return argTypes; 44 public void setArgTypes(List<Class<?>> argTypes) { 45 this.argTypes = argTypes;
|
ParameterizedTypeTest.java | 38 List<Class<?>> argTypes = new LinkedList<Class<?>>(); 39 argTypes.add(String.class); 40 argTypes.add(Integer.class); 41 argTypes.add(Boolean.class); 42 MethodDesc methodDesc = new MethodDesc(methodName, argTypes); 53 assertEquals(argTypes, argTypes2);
|
/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/libcxx/include/experimental/ |
functional | 31 template<class R, class... ArgTypes> class function<R(ArgTypes...)>; 33 template<class R, class... ArgTypes> 34 void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&); 36 template<class R, class... ArgTypes> 37 bool operator==(const function<R(ArgTypes...)>&, nullptr_t) noexcept; 38 template<class R, class... ArgTypes> 39 bool operator==(nullptr_t, const function<R(ArgTypes...)>&) noexcept; 40 template<class R, class... ArgTypes> [all...] |
/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.LLVMInitializeCodeGen.argtypes = [PassRegistry [all...] |
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
win32.py | 41 CreateEventA.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCSTR] 46 CreateFileA.argtypes = [LPCSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE] 50 CreateEventW.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCWSTR] 55 CreateFileW.argtypes = [LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE] 76 GetLastError.argtypes = [] 83 GetOverlappedResult.argtypes = [HANDLE, LPOVERLAPPED, LPDWORD, BOOL] 87 ResetEvent.argtypes = [HANDLE] 93 WriteFile.argtypes = [HANDLE, LPCVOID, DWORD, LPDWORD, LPOVERLAPPED] 99 ReadFile.argtypes = [HANDLE, LPVOID, DWORD, LPDWORD, LPOVERLAPPED] 103 CloseHandle.argtypes = [HANDLE [all...] |
/prebuilts/gdb/darwin-x86/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
|
/prebuilts/gdb/linux-x86/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
|
/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
|
/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
|
/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;
|