HomeSort by relevance Sort by last modified time
    Searched refs:__class__ (Results 1 - 25 of 368) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/
patcher.py 10 raise NotImplementedError(self.__class__)
16 raise NotImplementedError(self.__class__)
22 raise NotImplementedError(self.__class__)
28 raise NotImplementedError(self.__class__)
object_store.py 28 raise NotImplementedError(self.__class__)
38 raise NotImplementedError(self.__class__)
48 raise NotImplementedError(self.__class__)
empty_dir_file_system.py 26 return self.__class__.__name__
  /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/third_party/closure_linter/closure_linter/common/
lintrunner.py 27 if self.__class__ == LintRunner:
errorhandler.py 32 if self.__class__ == ErrorHandler:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 38 def __getitem__(self, index): return self.__class__(self.data[index])
41 return self.__class__(self.data[start:end])
45 return self.__class__(self.data + other.data)
47 return self.__class__(self.data + other)
49 return self.__class__(self.data + str(other))
52 return self.__class__(other + self.data)
54 return self.__class__(str(other) + self.data)
56 return self.__class__(self.data*n)
59 return self.__class__(self.data % args)
62 def capitalize(self): return self.__class__(self.data.capitalize()
    [all...]
UserList.py 36 return self.__class__(self.data[i:j])
50 return self.__class__(self.data + other.data)
52 return self.__class__(self.data + other)
54 return self.__class__(self.data + list(other))
57 return self.__class__(other.data + self.data)
59 return self.__class__(other + self.data)
61 return self.__class__(list(other) + self.data)
71 return self.__class__(self.data*n)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 38 def __getitem__(self, index): return self.__class__(self.data[index])
41 return self.__class__(self.data[start:end])
45 return self.__class__(self.data + other.data)
47 return self.__class__(self.data + other)
49 return self.__class__(self.data + str(other))
52 return self.__class__(other + self.data)
54 return self.__class__(str(other) + self.data)
56 return self.__class__(self.data*n)
59 return self.__class__(self.data % args)
62 def capitalize(self): return self.__class__(self.data.capitalize()
    [all...]
UserList.py 36 return self.__class__(self.data[i:j])
50 return self.__class__(self.data + other.data)
52 return self.__class__(self.data + other)
54 return self.__class__(self.data + list(other))
57 return self.__class__(other.data + self.data)
59 return self.__class__(other + self.data)
61 return self.__class__(list(other) + self.data)
71 return self.__class__(self.data*n)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 44 klass = node.__class__
76 meth = self._cache.get(node.__class__, None)
77 className = node.__class__.__name__
80 self._cache[node.__class__] = meth
86 klass = node.__class__
110 print node.__class__
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 44 klass = node.__class__
76 meth = self._cache.get(node.__class__, None)
77 className = node.__class__.__name__
80 self._cache[node.__class__] = meth
86 klass = node.__class__
110 print node.__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/WebKit/Tools/Scripts/webkitpy/common/
webkitunittest.py 46 self.assertTrue(issubclass(exception.__class__, expected_exception),
  /external/chromium_org/third_party/simplejson/
ordered_dict.py 82 return (self.__class__, (items,), inst_dict)
83 return self.__class__, (items,)
99 return '%s()' % (self.__class__.__name__,)
100 return '%s(%r)' % (self.__class__.__name__, self.items())
103 return self.__class__(self)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
suite.py 18 return "<%s tests=%s>" % (util.strclass(self.__class__), list(self))
21 if not isinstance(other, self.__class__):
107 result._previousTestClass = test.__class__
109 if (getattr(test.__class__, '_classSetupFailed', False) or
122 currentClass = test.__class__
159 currentModule = test.__class__.__module__
214 currentClass = test.__class__
  /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)
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 7 (self.__class__.__name__, name, reason))
  /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__,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_property.py 107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
113 self.assertEqual(base.__class__.spam.__doc__, "BaseClass.getter")
118 self.assertEqual(base.__class__.spam.__doc__, "spam spam spam")
119 self.assertEqual(sub.__class__.spam.__doc__, "spam spam spam")
126 self.assertEqual(newgettersub.__class__.spam.__doc__, "new docstring")
129 self.assertEqual(newgetter.__class__.spam.__doc__, "new docstring")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_property.py 107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
113 self.assertEqual(base.__class__.spam.__doc__, "BaseClass.getter")
118 self.assertEqual(base.__class__.spam.__doc__, "spam spam spam")
119 self.assertEqual(sub.__class__.spam.__doc__, "spam spam spam")
126 self.assertEqual(newgettersub.__class__.spam.__doc__, "new docstring")
129 self.assertEqual(newgetter.__class__.spam.__doc__, "new docstring")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
suite.py 24 return "<%s tests=%s>" % (util.strclass(self.__class__), list(self))
27 if not isinstance(other, self.__class__):
101 result._previousTestClass = test.__class__
103 if (getattr(test.__class__, '_classSetupFailed', False) or
127 currentClass = test.__class__
167 currentModule = test.__class__.__module__
227 currentClass = test.__class__
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
suite.py 24 return "<%s tests=%s>" % (util.strclass(self.__class__), list(self))
27 if not isinstance(other, self.__class__):
101 result._previousTestClass = test.__class__
103 if (getattr(test.__class__, '_classSetupFailed', False) or
127 currentClass = test.__class__
167 currentModule = test.__class__.__module__
227 currentClass = test.__class__
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_failures.py 94 return self.__class__.__name__ == other.__class__.__name__
97 return self.__class__.__name__ != other.__class__.__name__
100 return hash(self.__class__.__name__)

Completed in 472 milliseconds

1 2 3 4 5 6 7 8 91011>>