HomeSort by relevance Sort by last modified time
    Searched full:getattr (Results 151 - 175 of 779) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
linux.py 54 build_directory = getattr(options, 'build_directory', None)
57 driver_name = getattr(options, 'driver_name', None)
  /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)
test_file.py 36 self.assertRaises(ReferenceError, getattr, p, 'tell')
122 method = getattr(self.f, methodname)
260 meth = getattr(f, methodname)
  /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__:
  /prebuilts/python/linux-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)
  /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))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 68 view_types = [type(getattr({}, name)()) for name in ('items','keys','values')]
133 func = getattr(obj, name)
202 func = getattr(self, funcname)
250 function = getattr(obj, methodname)
650 exposed = exposed or getattr(proxytype, '_exposed_', None)
653 getattr(proxytype, '_method_to_typeid_', None)
835 if getattr(self, '_isauto', False):
869 server = getattr(current_process(), '_manager_server', None)
876 not getattr(current_process(), '_inheriting', False)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 68 view_types = [type(getattr({}, name)()) for name in ('items','keys','values')]
133 func = getattr(obj, name)
202 func = getattr(self, funcname)
250 function = getattr(obj, methodname)
650 exposed = exposed or getattr(proxytype, '_exposed_', None)
653 getattr(proxytype, '_method_to_typeid_', None)
835 if getattr(self, '_isauto', False):
869 server = getattr(current_process(), '_manager_server', None)
876 not getattr(current_process(), '_inheriting', False)
    [all...]
  /external/chromium_org/third_party/jinja2/
debug.py 62 return getattr(self.tb, name)
71 return getattr(proxy, args[0])
75 return getattr(proxy, operation)(*args, **kwargs)
  /external/llvm/utils/Misc/
zkill 60 return 'Struct(%s)' % ', '.join(['%s=%r' % (k,getattr(self,k))
126 value = getattr(signal, name)
135 kSignals[name[3:]] = getattr(signal, name)

Completed in 1939 milliseconds

1 2 3 4 5 67 8 91011>>