HomeSort by relevance Sort by last modified time
    Searched full:getattr (Results 76 - 100 of 795) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 95 py_item = getattr(module, name)
107 pyclbr_bases = [ getattr(base, 'name', base)
118 if ismethod(py_item, getattr(py_item, m), m):
146 item = getattr(module, name)
test_scriptpackages.py 15 klass = getattr(mod, package)
test_binascii.py 36 self.assertTrue(hasattr(getattr(binascii, name), '__call__'))
37 self.assertRaises(TypeError, getattr(binascii, name))
44 a2b = getattr(binascii, fa)
45 b2a = getattr(binascii, fb)
209 f = getattr(binascii, func)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 95 py_item = getattr(module, name)
107 pyclbr_bases = [ getattr(base, 'name', base)
118 if ismethod(py_item, getattr(py_item, m), m):
146 item = getattr(module, name)
test_scriptpackages.py 15 klass = getattr(mod, package)
test_binascii.py 36 self.assertTrue(hasattr(getattr(binascii, name), '__call__'))
37 self.assertRaises(TypeError, getattr(binascii, name))
44 a2b = getattr(binascii, fa)
45 b2a = getattr(binascii, fb)
209 f = getattr(binascii, func)
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 316 cls = getattr(self.lexerModule, self.grammarName)
319 cls = getattr(self.lexerModule, self.grammarName + 'Lexer')
333 cls = getattr(self.lexerModule, self.grammarName)
336 cls = getattr(self.parserModule, self.grammarName + 'Parser')
348 cls = getattr(self.walkerModule, self.grammarName + 'Walker')
415 lexerCls = getattr(lexerMod, grammarName + 'Lexer')
417 parserCls = getattr(parserMod, grammarName + 'Parser')
427 lexerCls = getattr(lexerMod, grammarName)
437 parserCls = getattr(parserMod, grammarName)
447 walkerCls = getattr(walkerMod, grammarName
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 72 return getattr, (m.im_class, m.im_func.func_name)
74 return getattr, (m.im_self, m.im_func.func_name)
78 return getattr, (m.__objclass__, m.__name__)
83 # return getattr, (m.__self__, m.__name__)
206 WINEXE = (sys.platform == 'win32' and getattr(sys, 'frozen', False))
284 return getattr(Popen._tls, 'process_handle', None) is not None
345 if getattr(process.current_process(), '_inheriting', False):
360 if getattr(sys, 'frozen', False):
409 main_path = getattr(sys.modules['__main__'], '__file__', None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 72 return getattr, (m.im_class, m.im_func.func_name)
74 return getattr, (m.im_self, m.im_func.func_name)
78 return getattr, (m.__objclass__, m.__name__)
83 # return getattr, (m.__self__, m.__name__)
206 WINEXE = (sys.platform == 'win32' and getattr(sys, 'frozen', False))
284 return getattr(Popen._tls, 'process_handle', None) is not None
345 if getattr(process.current_process(), '_inheriting', False):
360 if getattr(sys, 'frozen', False):
409 main_path = getattr(sys.modules['__main__'], '__file__', None)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
mock.py 181 wraps = getattr(self._wraps, name)
193 return getattr(thing, comp)
196 return getattr(thing, comp)
236 for patching in getattr(patched, 'patchings', []):
241 patched.compat_co_firstlineno = getattr(func, "compat_co_firstlineno",
257 original = getattr(target, name)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
loader.py 83 obj = getattr(module, name)
87 load_tests = getattr(module, 'load_tests', None)
120 parent, obj = obj, getattr(obj, part)
157 hasattr(getattr(testCaseClass, attrname), '__call__')
264 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
285 load_tests = getattr(package, 'load_tests', None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 102 rv += ', '.join('%s=%s' % (a, _format(getattr(node, a)))
121 setattr(new_node, attr, getattr(old_node, attr))
157 child.lineno = getattr(child, 'lineno', 0) + n
168 yield field, getattr(node, field)
240 visitor = getattr(self, method, self.generic_visit)
292 old_value = getattr(node, field, None)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
loader.py 63 obj = getattr(module, name)
67 load_tests = getattr(module, 'load_tests', None)
100 parent, obj = obj, getattr(obj, part)
137 hasattr(getattr(testCaseClass, attrname), '__call__')
256 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
277 load_tests = getattr(package, 'load_tests', None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 102 rv += ', '.join('%s=%s' % (a, _format(getattr(node, a)))
121 setattr(new_node, attr, getattr(old_node, attr))
157 child.lineno = getattr(child, 'lineno', 0) + n
168 yield field, getattr(node, field)
240 visitor = getattr(self, method, self.generic_visit)
292 old_value = getattr(node, field, None)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
loader.py 63 obj = getattr(module, name)
67 load_tests = getattr(module, 'load_tests', None)
100 parent, obj = obj, getattr(obj, part)
137 hasattr(getattr(testCaseClass, attrname), '__call__')
256 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
277 load_tests = getattr(package, 'load_tests', None)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
misc.py 64 return getattr(self, attr)
110 a = getattr(v, k)
  /external/clang/test/Unit/
lit.cfg 15 clang_obj_root = getattr(config, 'clang_obj_root', None)
21 llvm_build_mode = getattr(config, 'llvm_build_mode', "Debug")
  /external/compiler-rt/lib/asan/lit_tests/
lit.cfg 6 attr_value = getattr(config, attr_name, None)
25 llvm_src_root = getattr(config, 'llvm_src_root', None)
  /external/compiler-rt/lib/tsan/lit_tests/
lit.cfg 6 attr_value = getattr(config, attr_name, None)
25 llvm_src_root = getattr(config, 'llvm_src_root', None)
  /external/llvm/test/Unit/
lit.cfg 15 llvm_obj_root = getattr(config, 'llvm_obj_root', None)
21 llvm_build_mode = getattr(config, 'llvm_build_mode', "Debug")
  /external/chromium_org/third_party/tlslite/tlslite/utils/
PyCrypto_RSAKey.py 20 return getattr(self.rsa, name)
  /external/chromium_org/tools/
bisect_test.py 16 self.patched.append((obj, name, getattr(obj, name)))
  /external/chromium_org/tools/cr/cr/commands/
select.py 60 if not getattr(context.args, '_no_prepare', None):
  /external/chromium_org/tools/gyp/pylib/gyp/
flock_tool.py 29 getattr(self, method)(*args[1:])
  /external/libsepol/tests/policies/test-expander/
small-base.conf 70 getattr
97 getattr
126 getattr
150 getattr

Completed in 782 milliseconds

1 2 34 5 6 7 8 91011>>