/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
abc.py | 91 if getattr(value, "__isabstractmethod__", False)) 93 for name in getattr(base, "__abstractmethods__", set()): 94 value = getattr(cls, name, None) 95 if getattr(value, "__isabstractmethod__", False): 125 value = getattr(cls, name) 131 subclass = getattr(instance, '__class__', None) 170 if cls in getattr(subclass, '__mro__', ()):
|
functools.py | 33 setattr(wrapper, attr, getattr(wrapped, attr)) 35 getattr(wrapper, attr).update(getattr(wrapped, attr, {})) 76 opfunc.__doc__ = getattr(int, opname).__doc__
|
/external/chromium_org/tools/telemetry/telemetry/ |
test.py | 59 getattr(options, 'page_repeat_secs', None), 60 getattr(options, 'pageset_repeat_secs', None), 61 getattr(options, 'page_repeat_iters', 1), 62 getattr(options, 'pageset_repeat_iters', 1),
|
__init__.py | 40 if (inspect.isclass(getattr(m, x)) or 41 inspect.isfunction(getattr(m, x))):
|
/external/compiler-rt/lib/lsan/lit_tests/AsanConfig/ |
lit.cfg | 6 attr_value = getattr(config, attr_name, None)
|
/external/compiler-rt/lib/lsan/lit_tests/LsanConfig/ |
lit.cfg | 6 attr_value = getattr(config, attr_name, None)
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
lit.cfg | 6 attr_value = getattr(config, attr_name, None)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
visitor.py | 48 meth = getattr(self.visitor, 'visit' + className, self.default) 79 meth = getattr(self.visitor, 'visit' + className, 0) 94 print "\t", "%-12.12s" % attr, getattr(node, attr) 113 print "\t", "%-10.10s" % attr, getattr(node, attr)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
functools.py | 33 setattr(wrapper, attr, getattr(wrapped, attr)) 35 getattr(wrapper, attr).update(getattr(wrapped, attr, {})) 76 opfunc.__doc__ = getattr(int, opname).__doc__
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
Delegator.py | 10 attr = getattr(self.delegate, name) # May raise AttributeError
|
RemoteObjectBrowser.py | 16 value = getattr(self.__item, name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cd.py | 25 getattr(cd, attr)
|
test_errno.py | 31 self.assertIn(getattr(errno, attribute), errno.errorcode,
|
time_hashlib.py | 53 print "testing speed of _hashlib.%s" % sys.argv[2], getattr(_hashlib, sys.argv[2]) 58 elif hasattr(hashlib, hName) and callable(getattr(hashlib, hName)): 59 creatorFunc = getattr(hashlib, hName) 60 print "testing speed of hashlib."+hName, getattr(hashlib, hName)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
visitor.py | 48 meth = getattr(self.visitor, 'visit' + className, self.default) 79 meth = getattr(self.visitor, 'visit' + className, 0) 94 print "\t", "%-12.12s" % attr, getattr(node, attr) 113 print "\t", "%-10.10s" % attr, getattr(node, attr)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
Delegator.py | 10 attr = getattr(self.delegate, name) # May raise AttributeError
|
RemoteObjectBrowser.py | 16 value = getattr(self.__item, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cd.py | 25 getattr(cd, attr)
|
test_errno.py | 31 self.assertIn(getattr(errno, attribute), errno.errorcode,
|
time_hashlib.py | 53 print "testing speed of _hashlib.%s" % sys.argv[2], getattr(_hashlib, sys.argv[2]) 58 elif hasattr(hashlib, hName) and callable(getattr(hashlib, hName)): 59 creatorFunc = getattr(hashlib, hName) 60 print "testing speed of hashlib."+hName, getattr(hashlib, hName)
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
dump_dependency_json.py | 43 generator_additional_non_configuration_keys = getattr(msvs_generator, 45 generator_additional_path_sections = getattr(msvs_generator,
|
/external/sepolicy/ |
zygote.te | 15 allow zygote appdomain:dir { getattr search }; 51 allow zygote shell_data_file:file { write getattr };
|
/external/chromium_org/third_party/protobuf/python/ |
stubout.py | 55 - The stubbing is using the builtin getattr and setattr. So, the __get__ 57 probably be to manipulate obj.__dict__ instead of getattr() and 65 orig_attr = getattr(obj, attr_name) 80 orig_attr = getattr(obj, attr_name) 87 # Calling getattr() on a staticmethod transforms it to a 'normal' function. 119 old_child = getattr(parent, child_name)
|
/external/protobuf/python/ |
stubout.py | 55 - The stubbing is using the builtin getattr and setattr. So, the __get__ 57 probably be to manipulate obj.__dict__ instead of getattr() and 65 orig_attr = getattr(obj, attr_name) 80 orig_attr = getattr(obj, attr_name) 87 # Calling getattr() on a staticmethod transforms it to a 'normal' function. 119 old_child = getattr(parent, child_name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
__init__.py | 58 if not getattr(v, '_propdict', None): 61 for superclassname in getattr(v, '_superclassnames', []): 64 v._propdict.update(getattr(superclass, '_propdict', {})) 65 v._elemdict.update(getattr(superclass, '_elemdict', {})) 66 v._propdict.update(getattr(v, '_privpropdict', {})) 67 v._elemdict.update(getattr(v, '_privelemdict', {}))
|