/external/libxml2/python/ |
D | libxml.py | 11 n = type(_obj).__name__ 55 def __init__(self, _obj): argument 56 self.__io = _obj 98 def __init__(self, _obj, enc = ""): argument 99 ioWrapper.__init__(self, _obj) 116 def __init__(self, _obj, enc = ""): argument 118 if type(_obj) == type(''): 121 elif type(_obj).__name__ == 'PyCapsule': 122 file = libxml2mod.outputBufferGetPythonFile(_obj) 126 ioWrapper.__init__(self, _obj) [all …]
|
/external/mesa3d/src/gallium/drivers/trace/ |
D | tr_dump.h | 137 #define trace_dump_array(_type, _obj, _size) \ argument 139 if (_obj) { \ 144 trace_dump_##_type((_obj)[idx]); \ 153 #define trace_dump_struct_array(_type, _obj, _size) \ argument 155 if (_obj) { \ 160 trace_dump_##_type(&(_obj)[idx]); \ 169 #define trace_dump_member(_type, _obj, _member) \ argument 172 trace_dump_##_type((_obj)->_member); \ 183 #define trace_dump_member_array(_type, _obj, _member) \ argument 186 … trace_dump_array(_type, (_obj)->_member, sizeof((_obj)->_member)/sizeof((_obj)->_member[0])); \
|
/external/python/cpython3/Lib/multiprocessing/ |
D | sharedctypes.py | 182 self._obj = obj 199 return synchronized, (self._obj, self._lock) 202 return self._obj 208 return '<%s wrapper for %s>' % (type(self).__name__, self._obj) 218 return len(self._obj) 222 return self._obj[i] 226 self._obj[i] = value 230 return self._obj[start:stop] 234 self._obj[start:stop] = values
|
/external/python/cpython2/Lib/multiprocessing/ |
D | sharedctypes.py | 212 self._obj = obj 219 return synchronized, (self._obj, self._lock) 222 return self._obj 228 return '<%s wrapper for %s>' % (type(self).__name__, self._obj) 238 return len(self._obj) 243 return self._obj[i] 250 self._obj[i] = value 257 return self._obj[start:stop] 264 self._obj[start:stop] = values
|
/external/icu/icu4c/source/common/ |
D | servslkf.cpp | 39 , _obj(objToAdopt) in SimpleLocaleKeyFactory() 50 , _obj(objToAdopt) in SimpleLocaleKeyFactory() 59 delete _obj; in ~SimpleLocaleKeyFactory() 60 _obj = NULL; in ~SimpleLocaleKeyFactory() 72 return service->cloneInstance(_obj); in create()
|
D | serv.cpp | 422 UVector* _obj; member 423 UVectorDeleter() : _obj(NULL) {} in UVectorDeleter() 424 ~UVectorDeleter() { delete _obj; } in ~UVectorDeleter() 527 if (cacheDescriptorList._obj == NULL) { in getKey() 528 cacheDescriptorList._obj = new UVector(uprv_deleteUObject, NULL, 5, status); in getKey() 539 cacheDescriptorList._obj->addElement(idToCache, status); in getKey() 554 if (cacheDescriptorList._obj != NULL) { in getKey() 555 for (int32_t i = cacheDescriptorList._obj->size(); --i >= 0;) { in getKey() 556 … UnicodeString* desc = (UnicodeString*)cacheDescriptorList._obj->elementAt(i); in getKey() 564 cacheDescriptorList._obj->removeElementAt(i); in getKey()
|
D | servloc.h | 304 UObject* _obj;
|
/external/autotest/client/cros/faft/utils/ |
D | common.py | 10 _obj = None variable in LazyInitHandlerProxy 18 self._obj = self._handler_class() 19 self._obj.init(*self._args, **self._kargs) 25 return getattr(self._obj, name)
|
/external/mesa3d/src/vulkan/wsi/ |
D | wsi_common.h | 114 __wsi_type ## _to_handle(struct __wsi_type *_obj) \ 116 return (__VkType)(uintptr_t) _obj; \ 130 __VkIcdType ## _to_handle(__VkIcdType *_obj) \ 132 return (__VkType)(uintptr_t) _obj; \
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_parameters.py | 58 self.assertIs(c_char_p.from_param(s)._obj, s) 61 self.assertEqual(c_char_p.from_param(u"123")._obj, "123") 76 self.assertTrue(c_wchar_p.from_param(s)._obj is s) 80 self.assertEqual(c_wchar_p.from_param("123")._obj, u"123")
|
/external/syslinux/gpxe/src/include/ |
D | compiler.h | 172 #define REQUIRE_OBJECT( _obj ) REQUIRE_SYMBOL ( obj_ ## _obj ) argument 175 #define REQUEST_OBJECT( _obj ) REQUEST_SYMBOL ( obj_ ## _obj ) argument
|
/external/libnl/python/netlink/ |
D | util.py | 80 self._obj = obj 84 value = getattr(self._obj.__class__, key) 91 value = getattr(self._obj, key)
|
/external/webrtc/webrtc/test/channel_transport/ |
D | udp_socket_posix.cc | 38 _obj = NULL; in UdpSocketPosix() 96 _obj = obj; in SetCallback() 220 _incomingCb(_obj, buf, retval, &from); in HasIncoming()
|
D | udp_socket_posix.h | 77 CallbackObj _obj; variable
|
D | udp_socket2_win.h | 128 CallbackObj _obj; variable
|
D | udp_socket2_win.cc | 69 _obj = NULL; in UdpSocket2Windows() 227 _obj = obj; in SetCallback() 509 _incomingCb(_obj, in IOCompleted()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_dump_state.c | 173 #define util_dump_array(_stream, _type, _obj, _size) \ argument 179 util_dump_##_type(_stream, (_obj)[idx]); \ 185 #define util_dump_struct_array(_stream, _type, _obj, _size) \ argument 191 util_dump_##_type(_stream, &(_obj)[idx]); \ 197 #define util_dump_member(_stream, _type, _obj, _member) \ argument 200 util_dump_##_type(_stream, (_obj)->_member); \ 211 #define util_dump_member_array(_stream, _type, _obj, _member) \ argument 214 …util_dump_array(_stream, _type, (_obj)->_member, sizeof((_obj)->_member)/sizeof((_obj)->_member[0]…
|
/external/golang-protobuf/ |
D | .gitignore | 12 _obj
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_parameters.py | 57 self.assertIs(c_char_p.from_param(s)._obj, s) 60 self.assertEqual(c_char_p.from_param(b"123")._obj, b"123")
|
/external/libxml2/python/tests/ |
D | tstxpath.py | 16 pctxt = libxml2.xpathParserContext(_obj=ctx)
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_private.h | 1286 __radv_type ## _to_handle(struct __radv_type *_obj) \ 1288 return (__VkType) _obj; \ 1300 __radv_type ## _to_handle(struct __radv_type *_obj) \ 1302 return (__VkType)(uintptr_t) _obj; \
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_private.h | 1853 __anv_type ## _to_handle(struct __anv_type *_obj) \ 1855 return (__VkType) _obj; \ 1867 __anv_type ## _to_handle(struct __anv_type *_obj) \ 1869 return (__VkType)(uintptr_t) _obj; \
|
/external/v8/src/ast/ |
D | ast.h | 3131 auto _obj = (object); \ 3132 AST_REWRITE(Type, _obj->property(), _obj->set_##property(replacement)); \
|
/external/tcpdump/ |
D | print-snmp.c | 295 { prefix, &_ ## obj ## _obj, obj ## _oid, sizeof (obj ## _oid) }
|