/external/chromium_org/base/strings/ |
safe_sprintf.h | 63 // It is still not legal to mix-and-match integer-like values with pointer 64 // values. For instance, you cannot pass a pointer to %x, nor can you pass an 139 enum Type { INT, UINT, STRING, POINTER }; 157 // Any pointer value that can be cast to a "void*". 158 template<class T> Arg(T* p) : ptr((void*)p), type(POINTER) { } 170 // A pointer to an arbitrary object.
|
/external/llvm/bindings/python/llvm/ |
common.py | 10 from ctypes import POINTER 26 c_object_p = POINTER(c_void_p)
|
core.py | 16 from ctypes import POINTER 88 POINTER(c_object_p), POINTER(c_char_p)]
|
disassembler.py | 11 from ctypes import POINTER 76 buf = cast(c_char_p(source), POINTER(c_ubyte)) 101 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents 106 b = cast(addressof(buf) + offset, POINTER(c_ubyte)) 131 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte), 142 POINTER(c_uint64), c_uint64, 143 POINTER(c_char_p))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_parameters.py | 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace 92 LPINT = POINTER(c_int) 94 ## p = pointer(c_int(42)) 96 x = LPINT.from_param(pointer(c_int(42))) 103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42))) 104 self.assertRaises(TypeError, LPINT.from_param, pointer(c_uint(42))) 105 self.assertRaises(TypeError, LPINT.from_param, pointer(c_short(42))) 108 # The from_param class method of POINTER(typ) classes accepts what is 110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byre namespace 122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_parameters.py | 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace 92 LPINT = POINTER(c_int) 94 ## p = pointer(c_int(42)) 96 x = LPINT.from_param(pointer(c_int(42))) 103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42))) 104 self.assertRaises(TypeError, LPINT.from_param, pointer(c_uint(42))) 105 self.assertRaises(TypeError, LPINT.from_param, pointer(c_short(42))) 108 # The from_param class method of POINTER(typ) classes accepts what is 110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byre namespace 122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace [all...] |
/bionic/libc/stdio/ |
vfscanf.c | 56 #define POINTER 0x00020 /* p: void * (as hex) */ 272 case 'p': /* pointer format is like hex */ 273 flags |= POINTER | PFXOK; 582 if (flags & POINTER) 711 * (just after `['). Return a pointer to the character past the
|
/external/chromium_org/v8/src/ |
string-stream.h | 93 FmtElm(void* value) : type_(POINTER) { // NOLINT 99 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
Structure.java | 179 Pointer first = (Pointer) this.getFieldValue("first"); 180 Pointer last = (Pointer) this.getFieldValue("last"); 188 first = (Pointer) structure.getFlatFieldValue("next"); 276 CHARACTER, SHORT, INTEGER, LONG, FLOAT, DOUBLE, VOID, STRUCTURE, POINTER;
|
/external/v8/src/ |
string-stream.h | 93 FmtElm(void* value) : type_(POINTER) { // NOLINT 99 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
|
/external/grub/netboot/ |
smc9000.h | 127 #define POINTER 6
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace 271 POINTER(c_wchar).from_param = c_wchar_p.from_param 273 POINTER(c_char).from_param = c_char_p.from_param 316 def SetPointerType(pointer, cls): 319 if id(pointer) not in _pointer_type_cache: 321 pointer.set_type(cls) 322 _pointer_type_cache[cls] = pointer 323 del _pointer_type_cache[id(pointer)]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace 271 POINTER(c_wchar).from_param = c_wchar_p.from_param 273 POINTER(c_char).from_param = c_char_p.from_param 316 def SetPointerType(pointer, cls): 319 if id(pointer) not in _pointer_type_cache: 321 pointer.set_type(cls) 322 _pointer_type_cache[cls] = pointer 323 del _pointer_type_cache[id(pointer)]
|
/prebuilts/devtools/tools/lib/ |
jython-standalone-2.5.3.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/ |
jython-standalone-2.5.3.jar | |