/third_party/node/tools/inspector_protocol/ |
H A D | code_generator.py | 52 values = [getattr(config_tuple, k) for k in keys] 497 return name in getattr(rule, include_attr) 499 return name not in getattr(rule, exclude_attr)
|
/third_party/python/Lib/idlelib/ |
H A D | rpc.py | 189 method = getattr(obj, methodname) 585 attr = getattr(obj, name) 594 attr = getattr(obj, name)
|
/third_party/python/Lib/xmlrpc/ |
H A D | server.py | 85 func = getattr(self, 'export_' + method) 131 supported and this function operates similar to getattr(obj, attr). 145 obj = getattr(obj,i) 154 callable(getattr(obj, member))] 505 data, getattr(self, '_dispatch', None), self.path
|
/kernel/linux/linux-5.10/fs/kernfs/ |
H A D | symlink.c | 151 .getattr = kernfs_iop_getattr,
|
/kernel/linux/linux-5.10/fs/epfs/ |
H A D | inode.c | 88 .getattr = epfs_getattr,
|
/kernel/linux/linux-5.10/fs/udf/ |
H A D | symlink.c | 190 .getattr = udf_symlink_getattr,
|
/kernel/linux/linux-6.6/fs/epfs/ |
H A D | inode.c | 103 .getattr = epfs_getattr,
|
/kernel/linux/linux-6.6/fs/udf/ |
H A D | symlink.c | 180 .getattr = udf_symlink_getattr,
|
/kernel/linux/linux-6.6/fs/kernfs/ |
H A D | symlink.c | 151 .getattr = kernfs_iop_getattr,
|
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | error_message.py | 1193 get_value = getattr(DetailErrorMassage, _attribute)
|
/third_party/PyYAML/lib/yaml/ |
H A D | events.py | 11 arguments = ', '.join(['%s=%r' % (key, getattr(self, key))
|
H A D | tokens.py | 10 arguments = ', '.join(['%s=%r' % (key, getattr(self, key))
|
/third_party/libfuse/example/ |
H A D | hello.c | 133 .getattr = hello_getattr,
|
H A D | null.c | 108 .getattr = null_getattr,
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | clsutil.py | 76 if getattr(old___del__, '_slotted', False):
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_operator.py | 89 method = getattr(self, "_" + results["method"][0].value)
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | htest.py | 400 test = getattr(mod, test_name)
|
/third_party/python/Lib/multiprocessing/ |
H A D | popen_spawn_win32.py | 18 WINEXE = (sys.platform == 'win32' and getattr(sys, 'frozen', False))
|
/third_party/skia/third_party/externals/brotli/python/tests/ |
H A D | _test_utils.py | 92 getattr(test_case_class, method), testdata, **opts_dict)
|
/third_party/python/Lib/distutils/command/ |
H A D | check.py | 94 if not (hasattr(metadata, attr) and getattr(metadata, attr)):
|
/third_party/python/Lib/ |
H A D | linecache.py | 176 get_source = getattr(loader, 'get_source', None)
|
H A D | doctest.py | 191 if feature is getattr(__future__, fname): 222 if (loader := getattr(package, '__loader__', None)) is None: 883 name = getattr(obj, '__name__', None) 1019 for valname, val in getattr(obj, '__test__', {}).items(): 1081 filename = getattr(module, '__file__', None) or module.__name__ 1094 docstring = getattr(obj, '__doc__', None) 1107 getattr(obj, '__name__', '-')) 1115 if inspect.isfunction(obj) and getattr(obj, '__doc__', None):
|
/third_party/skia/tools/skiaserve/tester/ |
H A D | tester.py | 115 getattr(tester, op)()
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_stringptr.py | 18 self.assertRaises(ValueError, getattr, x.str, "contents")
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_pkg_import.py | 76 self.assertEqual(getattr(module, var), 1)
|