HomeSort by relevance Sort by last modified time
    Searched full:getattr (Results 326 - 350 of 966) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 80 func = getattr(self, 'export_' + method)
122 supported and this function operates similar to getattr(obj, attr).
136 obj = getattr(obj,i)
145 hasattr(getattr(obj, member), '__call__')]
506 data, getattr(self, '_dispatch', None), self.path
sets.py 282 transform = getattr(element, "__as_temporarily_immutable__", None)
362 transform = getattr(element, "__as_immutable__", None)
372 transform = getattr(element, "__as_immutable__", None)
507 transform = getattr(element, "__as_immutable__", None)
520 transform = getattr(element, "__as_temporarily_immutable__", None)
socket.py 93 EBADF = getattr(errno, 'EBADF', 9)
94 EINTR = getattr(errno, 'EINTR', 4)
190 setattr(self, method, getattr(_sock, method))
224 return getattr(self._sock,name)(*args)
229 p.__doc__ = getattr(_realsocket,_m).__doc__
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 122 next = getattr(cur, "next")
135 next = getattr(cur, "next")
164 next = getattr(cur, "next")
178 next = getattr(cur, "next")
317 rv = _DeadlockWrap(getattr(self.dbc, "next"))
  /external/chromium_org/third_party/cython/src/Cython/
Utils.py 23 cache = getattr(self, cache_name, None)
154 archive_path = getattr(loader, 'archive', None)
244 self.encoding = getattr(stream, 'encoding', 'UTF-8')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
129 meth = getattr(self, '_handle_' + specific, None)
132 meth = getattr(self, '_handle_' + generic, None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 175 terminated by getattr(x, attr) is None.
184 next = getattr(obj, attr)
187 next = getattr(next, attr)
btm_utils.py 198 new_node = MinNode(type=getattr(token_labels, name_leaf.value))
200 new_node = MinNode(type=getattr(pysyms, name_leaf.value))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 252 self._socket = socket.socket(getattr(socket, family))
291 s = socket.socket( getattr(socket, family) )
439 obj = getattr(conn, attr)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cgi.py 37 return getattr(self.err, attr)
220 a = getattr(file, name)
266 got = getattr(fs.list[x], k)
test_telnetlib.py 225 func = getattr(telnet, func_name)
241 func = getattr(telnet, func_name)
261 func = getattr(telnet, func_name)
test_hashlib.py 63 constructors.add(getattr(hashlib, algorithm))
77 constructor = getattr(_hashlib, 'openssl_'+algorithm, None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
129 meth = getattr(self, '_handle_' + specific, None)
132 meth = getattr(self, '_handle_' + generic, None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 175 terminated by getattr(x, attr) is None.
184 next = getattr(obj, attr)
187 next = getattr(next, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 252 self._socket = socket.socket(getattr(socket, family))
291 s = socket.socket( getattr(socket, family) )
439 obj = getattr(conn, attr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cgi.py 37 return getattr(self.err, attr)
220 a = getattr(file, name)
266 got = getattr(fs.list[x], k)
test_telnetlib.py 225 func = getattr(telnet, func_name)
241 func = getattr(telnet, func_name)
261 func = getattr(telnet, func_name)
  /external/antlr/antlr-3.4/runtime/Python/tests/
t049treeparser.py 43 r = getattr(parser, grammarEntry)()
47 getattr(walker, treeEntry)()
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 93 int (*getattr)(const char* path, struct stat*); member in struct:fuse_operations
223 // called, otherwise fuse_operations.getattr will be called.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
collector.py 242 tracer0 = getattr(fn0, '__self__', None)
244 traces0 = getattr(tracer0, 'traces', None)
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Builtins.c 15 //@requires: ObjectHandling.c::GetAttr
180 //@requires: ObjectHandling.c::GetAttr
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
eclipse.py 62 generator_additional_non_configuration_keys = getattr(msvs_generator,
64 generator_additional_path_sections = getattr(msvs_generator,
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialcli.py 94 self._port_handle.Parity = getattr(System.IO.Ports.Parity, 'None') # reserved keyword in Py3k
122 self._port_handle.Handshake = getattr(System.IO.Ports.Handshake, 'None') # reserved keyword in Py3k
  /external/clang/tools/libclang/
CXComment.cpp 216 return cxstring::createRef(HST->getAttr(AttrIdx).Name);
224 return cxstring::createRef(HST->getAttr(AttrIdx).Value);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 149 r = getattr(typ, "__repr__", None)
271 r = getattr(typ, "__repr__", None)

Completed in 381 milliseconds

<<11121314151617181920>>