/external/chromium_org/third_party/jinja2/ |
runtime.py | 173 if getattr(__obj, 'contextfunction', 0): 175 elif getattr(__obj, 'evalcontextfunction', 0): 177 elif getattr(__obj, 'environmentfunction', 0): 196 proxy = lambda self: getattr(self.get_all(), meth)() 197 proxy.__doc__ = getattr(dict, meth).__doc__
|
/prebuilts/python/darwin-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/darwin-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"))
|
/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/clang/lib/ARCMigrate/ |
TransUnbridgedCasts.cpp | 129 if (FD->getAttr<CFReturnsRetainedAttr>()) { 133 if (FD->getAttr<CFReturnsNotRetainedAttr>()) { 435 if (PD->getAttr<CFConsumedAttr>()) {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
DeadStoresChecker.cpp | 218 !(VD->getAttr<UnusedAttr>() || VD->getAttr<BlocksAttr>())) { 344 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) {
|
CheckObjCDealloc.cpp | 122 ID->getAttr<IBOutletAttr>() || // Skip IBOutlets. 123 ID->getAttr<IBOutletCollectionAttr>()) // Skip IBOutletCollections.
|
/external/kernel-headers/original/linux/ |
nfs_xdr.h | 773 int (*getattr) (struct nfs_server *, struct nfs_fh *, member in struct:nfs_rpc_ops 823 * NFS_CALL(getattr, inode, (fattr)); 825 * NFS_PROTO(inode)->getattr(fattr);
|
/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)
|
/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)
|
/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/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
collector.py | 242 tracer0 = getattr(fn0, '__self__', None) 244 traces0 = getattr(tracer0, 'traces', None)
|