/third_party/skia/third_party/externals/jinja2/ |
H A D | ext.py | 199 gettext = getattr(translations, "ugettext", None) 202 ngettext = getattr(translations, "ungettext", None)
|
H A D | filters.py | 935 func = getattr(math, method) 1062 value = getattr(obj, name)
|
/third_party/python/Lib/test/ |
H A D | test_aifc.py | 229 getattr(aifc, '_write_' + what)(f, x) 231 return getattr(aifc, '_read_' + what)(f)
|
H A D | test_heapq.py | 23 self.assertEqual(getattr(py_heapq, fname).__module__, 'heapq') 28 self.assertEqual(getattr(c_heapq, fname).__module__, '_heapq')
|
H A D | test_code.py | 164 print("%s: %s" % (attr, getattr(co, "co_" + attr))) 282 self.assertEqual(getattr(new_code, attr), value)
|
H A D | test_pickle.py | 412 obj = getattr(obj, n) 417 attr = getattr(mod, name)
|
H A D | test_socketserver.py | 480 mod_object = getattr(socketserver, name) 481 if getattr(mod_object, '__module__', None) == 'socketserver':
|
H A D | test_functools.py | 171 self.assertRaises(ReferenceError, getattr, p, 'func') 589 self.assertFalse(getattr(func, '__isabstractmethod__', False)) 606 self.assertIs(getattr(wrapper, name), getattr(wrapped, name)) 609 wrapper_attr = getattr(wrapper, name) 610 wrapped_attr = getattr(wrapped, name) 1230 method = getattr(Orderable_LT, name) 1638 self.assertEqual(getattr(g, attr), getattr(f, attr)) 2682 getattr(WithSingleDispatc [all...] |
H A D | test_float.py | 775 @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short', 867 @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short', 885 @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short', 1044 @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short', 1503 self.assertEqual(getattr(f, 'foo', 'none'), 'bar')
|
/kernel/linux/linux-5.10/fs/nfs/ |
H A D | nfs3xdr.c | 2516 PROC(GETATTR, getattr, getattr, 1), 2533 PROC(FSSTAT, getattr, fsstat, 0), 2534 PROC(FSINFO, getattr, fsinfo, 0), 2535 PROC(PATHCONF, getattr, pathconf, 0),
|
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | nfs3xdr.c | 2521 PROC(GETATTR, getattr, getattr, 1), 2538 PROC(FSSTAT, getattr, fsstat, 0), 2539 PROC(FSINFO, getattr, fsinfo, 0), 2540 PROC(PATHCONF, getattr, pathconf, 0),
|
/third_party/node/ |
H A D | configure.py | 1493 output['variables']['node_' + shared_lib] = b(getattr(options, shared_lib)) 1495 if getattr(options, shared_lib): 1517 default_libs = getattr(options, shared_lib + '_libname') 2089 if getattr(options, builtin_id): 2090 output['defines'] += [builtin_id.upper() + '=' + getattr(options, builtin_id)]
|
/third_party/python/Lib/idlelib/ |
H A D | editor.py | 499 postcommand = getattr(self, f'{name}_menu_postcommand', None) 579 state = getattr(self, verify_state)() 1020 if not getattr(self.root, "recentfiles_message", False): 1186 cls = getattr(mod, name) 1202 self.text.bind(vevent, getattr(ins, methodname))
|
/kernel/linux/linux-5.10/fs/coda/ |
H A D | inode.c | 287 .getattr = coda_getattr,
|
/kernel/linux/linux-5.10/fs/proc/ |
H A D | proc_net.c | 312 .getattr = proc_tgid_net_getattr,
|
H A D | root.c | 355 .getattr = proc_root_getattr,
|
/kernel/linux/linux-5.10/fs/vboxsf/ |
H A D | file.c | 224 .getattr = vboxsf_getattr,
|
/kernel/linux/linux-6.6/fs/minix/ |
H A D | namei.c | 269 .getattr = minix_getattr,
|
/kernel/linux/linux-6.6/fs/exfat/ |
H A D | file.c | 398 .getattr = exfat_getattr,
|
/kernel/linux/linux-6.6/fs/coda/ |
H A D | inode.c | 289 .getattr = coda_getattr,
|
/kernel/linux/linux-6.6/fs/ext2/ |
H A D | file.c | 324 .getattr = ext2_getattr,
|
/kernel/linux/linux-6.6/fs/proc/ |
H A D | proc_net.c | 323 .getattr = proc_tgid_net_getattr,
|
H A D | root.c | 359 .getattr = proc_root_getattr,
|
/kernel/linux/linux-6.6/fs/vboxsf/ |
H A D | file.c | 224 .getattr = vboxsf_getattr,
|
/third_party/PyYAML/ |
H A D | setup.py | 145 with_ext = getattr(self, ext.attr_name) or os.environ.get('PYYAML_FORCE_{0}'.format(ext.feature_name.upper()))
|