/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_descr.py | 407 self.assertTrue(d.__class__ is dict) 486 self.assertEqual(d.__class__, D) 611 # Make sure type(x) doesn't call x.__class__.__init__ 933 self.assertEqual(a.__class__, object 2368 __class__ = property(__getclass) variable in class:.test_dir.C 4603 __class__ = str variable in class:.test_proxy_call.FakeStr [all...] |
test_isinstance.py | 22 # - inst has a __class__ attribute 23 # - inst.__class__ as no __bases__ attribute 33 __class__ = property(getclass) 42 # Like above except that inst.__class__.__bases__ raises an exception 53 __class__ = property(getclass) 158 __class__ = property(getclass) 32 __class__ = property(getclass) variable in class:TestIsInstanceExceptions.test_class_has_no_bases.I 52 __class__ = property(getclass) variable in class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.I 155 __class__ = property(getclass) variable in class:AbstractInstance
|
test_pep352.py | 41 (ins.__class__.__name__, attr)) 111 [repr(exc), exc.__class__.__name__ + repr(exc.args)], 124 [repr(exc), exc.__class__.__name__ + repr(exc.args)], 135 [repr(exc), exc.__class__.__name__ + '()'], [True, True])
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/ |
ordered_dict.py | 66 return (self.__class__, (items,), inst_dict) 79 return '%s({%s})' % (self.__class__.__name__, pairs) 82 return self.__class__(self)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_isinstance.py | 22 # - inst has a __class__ attribute 23 # - inst.__class__ as no __bases__ attribute 33 __class__ = property(getclass) 42 # Like above except that inst.__class__.__bases__ raises an exception 53 __class__ = property(getclass) 158 __class__ = property(getclass) 32 __class__ = property(getclass) variable in class:TestIsInstanceExceptions.test_class_has_no_bases.I 52 __class__ = property(getclass) variable in class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.I 155 __class__ = property(getclass) variable in class:AbstractInstance
|
test_pep352.py | 41 (ins.__class__.__name__, attr)) 111 [repr(exc), exc.__class__.__name__ + repr(exc.args)], 124 [repr(exc), exc.__class__.__name__ + repr(exc.args)], 135 [repr(exc), exc.__class__.__name__ + '()'], [True, True])
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
lintrunner.py | 27 if self.__class__ == LintRunner:
|
errorhandler.py | 32 if self.__class__ == ErrorHandler:
|
/external/chromium_org/build/util/lib/common/ |
unittest_util.py | 28 return '%s.%s.%s' % (test.__class__.__module__, 29 test.__class__.__name__, 89 return '.'.join([test.__class__.__module__, 90 test.__class__.__name__,
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
file_system.py | 71 raise NotImplementedError(self.__class__) 84 raise NotImplementedError(self.__class__) 95 raise NotImplementedError(self.__class__) 104 raise NotImplementedError(self.__class__)
|
test_patcher.py | 35 return self.__class__.__name__
|
appengine_wrappers.py | 24 return error.__class__.__name__ == 'DeadlineExceededError' 234 return self.__class__ == obj.__class__ and self._key == obj._key 246 cls = self.__class__
|
/external/chromium_org/chrome/test/chromedriver/test/ |
unittest_util.py | 28 return '%s.%s.%s' % (test.__class__.__module__, 29 test.__class__.__name__, 89 return '.'.join([test.__class__.__module__, 90 test.__class__.__name__,
|
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
lintrunner.py | 27 if self.__class__ == LintRunner:
|
errorhandler.py | 32 if self.__class__ == ErrorHandler:
|
/external/chromium_org/tools/cr/cr/ |
plugin.py | 127 self._name = self.__class__.__name__.lower() 129 self._root = _FindRoot(self.__class__) 131 if self._name.endswith(rootname) and self.__class__ != self._root: 147 child = getattr(self.__class__, config_root.name, None) 149 child.name = self.__class__.__name__ 164 return Plugin.Type not in self.__class__.__bases__ 246 if plugin.name == name or plugin.__class__.__name__ == name:
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
node.py | 33 return "%s(%s)"%(self.__class__.__name__,attrs) 51 return "%s(%s)"%(self.__class__.__name__,attrs) 56 #return "%s%s"%(self.__class__.__name__,tuple(attrs)) 148 s = "%s(%s)"%(self.__class__.__name__,nl+string.join(s,","+nl)) 160 return self.__class__(*items) 175 _node = node.__class__( *items )
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_join.py | 36 self.filename = self.__class__.__name__ + '.db' 49 self.__class__.__name__
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
ObjectBrowser.py | 66 make_objecttreeitem("__class__ =", self.object.__class__))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_join.py | 36 self.filename = self.__class__.__name__ + '.db' 49 self.__class__.__name__
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
ObjectBrowser.py | 66 make_objecttreeitem("__class__ =", self.object.__class__))
|
/external/chromium_org/third_party/bintrees/bintrees/ |
treeslice.py | 19 tpl = "%s({%s})" % (self._tree.__class__.__name__, '%s')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
UserDict.py | 21 if hasattr(self.__class__, "__missing__"): 22 return self.__class__.__missing__(self, key) 28 if self.__class__ is UserDict:
|
copy_reg.py | 61 for base in self.__class__.__mro__: 69 if base is self.__class__: 72 args = (self.__class__, base, state)
|
rlcompleter.py | 142 if hasattr(thisobject, '__class__'): 143 words.append('__class__') 144 words.extend(get_class_members(thisobject.__class__))
|