Searched refs:c_object_p (Results 1 – 6 of 6) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/bindings/python/llvm/ |
| H A D | object.py | 87 from .common import c_object_p 292 assert isinstance(ptr, c_object_p) 367 assert isinstance(ptr, c_object_p) 431 library.LLVMCreateObjectFile.restype = c_object_p 436 library.LLVMGetSections.restype = c_object_p 438 library.LLVMDisposeSectionIterator.argtypes = [c_object_p] 440 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p] 443 library.LLVMMoveToNextSection.argtypes = [c_object_p] 445 library.LLVMMoveToContainingSection.argtypes = [c_object_p, c_object_p] 448 library.LLVMGetSymbols.restype = c_object_p [all …]
|
| H A D | core.py | 11 from .common import c_object_p 160 memory = c_object_p() 493 library.LLVMGetGlobalPassRegistry.restype = c_object_p 497 library.LLVMContextCreate.restype = c_object_p 503 library.LLVMGetGlobalContext.restype = c_object_p 507 POINTER(c_object_p), POINTER(c_char_p)] 516 library.LLVMModuleCreateWithName.restype = c_object_p 541 library.LLVMGetFirstFunction.restype = c_object_p 544 library.LLVMGetLastFunction.restype = c_object_p 547 library.LLVMGetNextFunction.restype = c_object_p [all …]
|
| H A D | bit_reader.py | 3 from .common import c_object_p 18 module = c_object_p() 27 library.LLVMParseBitcode2.argtypes = [MemoryBuffer, POINTER(c_object_p)]
|
| H A D | common.py | 25 c_object_p = POINTER(c_void_p) variable 33 assert isinstance(ptr, c_object_p)
|
| H A D | disassembler.py | 22 from .common import c_object_p 151 library.LLVMCreateDisasm.restype = c_object_p
|
| /netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/ |
| H A D | cindex.py | 145 c_object_p = POINTER(c_void_p) variable 241 f, l, c, o = c_object_p(), c_uint(), c_uint(), c_uint() 2452 assert isinstance(obj, c_object_p) and obj 2628 _fields_ = [('cursorKind', c_int), ('completionString', c_object_p)] 3118 assert isinstance(res, c_object_p) 3322 callbacks['translation_unit_includes'] = CFUNCTYPE(None, c_object_p, 3333 [c_object_p]), 3337 c_object_p, 3341 [c_object_p], 3342 c_object_p, [all …]
|