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

1 2 3

  /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...]
disassembler.py 125 library.LLVMCreateDisasm.argtypes = [c_char_p, c_void_p, c_int,
129 library.LLVMDisasmDispose.argtypes = [Disassembler]
131 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
135 library.LLVMSetDisasmOptions.argtypes = [Disassembler, c_uint64]
core.py 87 library.LLVMCreateMemoryBufferWithContentsOfFile.argtypes = [c_char_p,
91 library.LLVMDisposeMemoryBuffer.argtypes = [MemoryBuffer]
  /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_functions.py 72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
83 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
91 f.argtypes = [c_int, c_int, POINTER(c_int)]
98 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
124 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
136 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
148 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble]
165 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
171 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
177 f.argtypes = Non
    [all...]
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_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
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_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_stringptr.py 50 strchr.argtypes = c_char_p, c_char
56 strchr.argtypes = POINTER(c_char), c_char
test_unicode.py 13 wcslen.argtypes = [ctypes.c_wchar_p]
82 func.argtypes = [ctypes.c_char_p]
87 func.argtypes = None
  /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_functions.py 72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
83 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
91 f.argtypes = [c_int, c_int, POINTER(c_int)]
98 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
124 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
136 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
148 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble]
165 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
171 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
177 f.argtypes = Non
    [all...]
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_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
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_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_stringptr.py 50 strchr.argtypes = c_char_p, c_char
56 strchr.argtypes = POINTER(c_char), c_char
test_unicode.py 13 wcslen.argtypes = [ctypes.c_wchar_p]
82 func.argtypes = [ctypes.c_char_p]
87 func.argtypes = None
  /external/apache-http/src/org/apache/commons/logging/
LogSource.java 169 Class[] argtypes = new Class[1]; local
170 argtypes[0] = "".getClass();
171 logImplctor = logclass.getConstructor(argtypes);
187 Class[] argtypes = new Class[1]; local
188 argtypes[0] = "".getClass();
189 logImplctor = logclass.getConstructor(argtypes);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 34 SetConsoleCtrlHandler.argtypes = (HandlerRoutine, wintypes.BOOL)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 34 SetConsoleCtrlHandler.argtypes = (HandlerRoutine, wintypes.BOOL)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 78 def CFUNCTYPE(restype, *argtypes, **kw):
79 """CFUNCTYPE(restype, *argtypes,
83 argtypes: a sequence specifying the argument types
102 return _c_functype_cache[(restype, argtypes, flags)]
105 _argtypes_ = argtypes
108 _c_functype_cache[(restype, argtypes, flags)] = CFunctionType
119 def WINFUNCTYPE(restype, *argtypes, **kw):
129 return _win_functype_cache[(restype, argtypes, flags)]
132 _argtypes_ = argtypes
135 _win_functype_cache[(restype, argtypes, flags)] = WinFunctionTyp
    [all...]

Completed in 1036 milliseconds

1 2 3