/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 440 return getattr(self, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_functions.py | 317 self.assertRaises(AttributeError, getattr, dll, "_xxx_yyy")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_wininst.py | 224 data = getattr(metadata, name, "")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
EditorWindow.py | 491 state = getattr(self, verify_state)() [all...] |
RemoteDebugger.py | 128 return getattr(frame, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 265 typename = getattr(val, 'typename', None) 335 if getattr(val[0], 'typename', None) == 'StateSpec': 372 if not getattr(master, '_tile_loaded', False): 552 if not getattr(master, '_tile_loaded', False): [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
pgen.py | 76 itoken = getattr(token, label, None)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
markupbase.py | 216 meth = getattr(self, "_parse_doctype_" + name)
|
optparse.py | 653 getattr(__builtin__, self.type.__name__, None) is self.type) ): 895 if not hasattr(self, attr) or getattr(self, attr) is None: 897 return getattr(self, attr) [all...] |
warnings.py | 166 cat = getattr(m, klass)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
string_tests.py | 54 realresult = getattr(object, methodname)(*args) 65 realresult = getattr(object, methodname)(*args) 74 getattr(object, methodname), 82 getattr(object, methodname)(*args) [all...] |
test_class.py | 65 # "getattr",
|
test_pprint.py | 128 f = getattr(pprint, function)
|
test_py3kwarn.py | 168 self.assertWarning(getattr(f, attr), w, expected)
|
test_scope.py | 554 return lambda obj: getattr(obj, des)
|
test_strtod.py | 11 if getattr(sys, 'float_repr_style', '') != 'short':
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t051treeRewriteAST.py | 37 r = getattr(parser, grammarEntry)() 41 r = getattr(walker, treeEntry)() [all...] |
/external/clang/unittests/AST/ |
CommentParser.cpp | 403 StringRef ActualName = HST->getAttr(0).Name; 409 StringRef ActualValue = HST->getAttr(0).Value; [all...] |
/external/clang/lib/Analysis/ |
ThreadSafety.cpp | 328 if (LockReturnedAttr* At = MD->getAttr<LockReturnedAttr>()) { 358 if (LockReturnedAttr* At = FD->getAttr<LockReturnedAttr>()) { [all...] |
/external/protobuf/python/google/protobuf/internal/ |
reflection_test.py | 257 composite_field = getattr(proto, composite_field_name) 258 original_scalar_value = getattr(composite_field, scalar_field_name) 270 self.assertEqual(new_val, getattr(composite_field, scalar_field_name)) 281 composite_field = getattr(proto, composite_field_name) 285 self.assertEqual(0, getattr(composite_field, scalar_field_name)) 297 self.assertEqual(0, getattr(composite_field, scalar_field_name)) [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
ninja.py | [all...] |
/external/chromium_org/tools/symsrc/ |
pefile.py | 763 new_val = getattr(self, key) 795 val = getattr(self, key) [all...] |
/external/chromium/testing/gmock/scripts/generator/cpp/ |
ast.py | 741 method = getattr(self, 'handle_' + token.name) 798 method = getattr(self, 'handle_' + method_name, None) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
subprocess.py | 437 _PIPE_BUF = getattr(select, 'PIPE_BUF', 512) 508 v = getattr(sys.flags, flag) 765 if not getattr(self, '_child_created', False): [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_float.py | 643 @unittest.skipUnless(getattr(sys, 'float_repr_style', '') == 'short', [all...] |