/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
symlink_support.py | 9 prev_val = getattr(can_symlink, 'prev_val', None)
|
test_stringprep.py | 81 # f = getattr(stringprep, p)
|
test_functools.py | 139 self.assertRaises(ReferenceError, getattr, p, 'func') 193 self.assertTrue(getattr(wrapper, name) is getattr(wrapped, name)) 196 wrapper_attr = getattr(wrapper, name) 197 wrapped_attr = getattr(wrapped, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
minicompat.py | 103 get = getattr(klass, ("_get_" + name)).im_func
|
/external/chromium_org/build/android/pylib/host_driven/ |
setup.py | 122 attr = getattr(test_module, name) 145 attr = getattr(test_case_class, attrname)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
outputcapture.py | 56 stream = getattr(sys, output_name) 63 captured_output = getattr(sys, output_name).getvalue()
|
/external/chromium_org/tools/telemetry/telemetry/unittest/ |
system_stub.py | 36 self._overrides[module_name] = getattr(base_module, module_name, None) 38 setattr(base_module, module_name, getattr(self, module_name))
|
/external/clang/tools/scan-view/ |
startfile.py | 53 setsid = getattr(os, 'setsid', None) 55 setsid = getattr(os, 'setpgrp', None)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
fuse.h | 15 * - new fuse_getattr_in input argument of GETATTR 119 * Getattr flags
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
fuse.h | 15 * - new fuse_getattr_in input argument of GETATTR 119 * Getattr flags
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
fuse.h | 15 * - new fuse_getattr_in input argument of GETATTR 119 * Getattr flags
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
grammar.py | 107 setattr(new, dict_attr, getattr(self, dict_attr).copy()) 184 opmap[op] = getattr(token, name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_program.py | 176 self.assertTrue(getattr(program, attr)) 183 self.assertEqual(getattr(program, attr), not_none)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
grammar.py | 107 setattr(new, dict_attr, getattr(self, dict_attr).copy()) 184 opmap[op] = getattr(token, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_program.py | 176 self.assertTrue(getattr(program, attr)) 183 self.assertEqual(getattr(program, attr), not_none)
|
/external/llvm/test/ |
lit.cfg | 16 path = getattr(config, 'lit_tools_dir', None) 55 llvm_obj_root = getattr(config, 'llvm_obj_root', None) 61 llvm_tools_dir = getattr(config, 'llvm_tools_dir', None) 87 config.environment['LLVM_SRC_ROOT'] = getattr(config, 'llvm_src_root', '') 90 config.environment['PYTHON_EXECUTABLE'] = getattr(config, 'python_executable',
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/ |
lit.cfg | 212 cxx_under_test = getattr(config, 'cxx_under_test', None) 225 libcxx_src_root = getattr(config, 'libcxx_src_root', None) 231 libcxx_obj_root = getattr(config, 'libcxx_obj_root', None) 244 cxx_has_stdcxx0x_flag = getattr(config, 'cxx_has_stdcxx0x_flag', True) 265 link_flags_str = getattr(config, 'link_flags', None)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
cmd.py | 218 func = getattr(self, 'do_' + cmd) 274 compfunc = getattr(self, 'complete_' + cmd) 301 func = getattr(self, 'help_' + arg) 304 doc=getattr(self, 'do_' + arg).__doc__ 333 elif getattr(self, name).__doc__:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_functools.py | 139 self.assertRaises(ReferenceError, getattr, p, 'func') 193 self.assertTrue(getattr(wrapper, name) is getattr(wrapped, name)) 196 wrapper_attr = getattr(wrapper, name) 197 wrapped_attr = getattr(wrapped, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
cmd.py | 218 func = getattr(self, 'do_' + cmd) 274 compfunc = getattr(self, 'complete_' + cmd) 301 func = getattr(self, 'help_' + arg) 304 doc=getattr(self, 'do_' + arg).__doc__ 333 elif getattr(self, name).__doc__:
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
case.py | 143 return getattr(self.testcase, value) 204 testMethod = getattr(self, methodName) 299 addSkip = getattr(result, 'addSkip', None) 311 startTestRun = getattr(result, 'startTestRun', None) 318 testMethod = getattr(self, self._testMethodName) 320 if (getattr(self.__class__, "__unittest_skip__", False) or 321 getattr(testMethod, "__unittest_skip__", False)): 324 skip_why = (getattr(self.__class__, '__unittest_skip_why__', '') 325 or getattr(testMethod, '__unittest_skip_why__', '')) 344 addExpectedFailure = getattr(result, 'addExpectedFailure', None [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 188 testMethod = getattr(self, methodName) 289 addSkip = getattr(result, 'addSkip', None) 301 startTestRun = getattr(result, 'startTestRun', None) 308 testMethod = getattr(self, self._testMethodName) 309 if (getattr(self.__class__, "__unittest_skip__", False) or 310 getattr(testMethod, "__unittest_skip__", False)): 313 skip_why = (getattr(self.__class__, '__unittest_skip_why__', '') 314 or getattr(testMethod, '__unittest_skip_why__', '')) 337 addExpectedFailure = getattr(result, 'addExpectedFailure', None) 345 addUnexpectedSuccess = getattr(result, 'addUnexpectedSuccess', None [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 188 testMethod = getattr(self, methodName) 289 addSkip = getattr(result, 'addSkip', None) 301 startTestRun = getattr(result, 'startTestRun', None) 308 testMethod = getattr(self, self._testMethodName) 309 if (getattr(self.__class__, "__unittest_skip__", False) or 310 getattr(testMethod, "__unittest_skip__", False)): 313 skip_why = (getattr(self.__class__, '__unittest_skip_why__', '') 314 or getattr(testMethod, '__unittest_skip_why__', '')) 337 addExpectedFailure = getattr(result, 'addExpectedFailure', None) 345 addUnexpectedSuccess = getattr(result, 'addUnexpectedSuccess', None [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 99 myval = getattr(self, "_" + attr) 101 return getattr(self.distribution, attr) 163 value = getattr(self, option) 210 val = getattr(self, option) 231 val = getattr(self, option) 300 if getattr(self, dst_option) is None: 302 getattr(src_cmd_obj, src_option))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 99 myval = getattr(self, "_" + attr) 101 return getattr(self.distribution, attr) 163 value = getattr(self, option) 210 val = getattr(self, option) 231 val = getattr(self, option) 300 if getattr(self, dst_option) is None: 302 getattr(src_cmd_obj, src_option))
|