HomeSort by relevance Sort by last modified time
    Searched refs:__class__ (Results 1 - 25 of 415) 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__)
data_source.py 26 raise NotImplementedError(self.__class__)
32 raise NotImplementedError(self.__class__)
object_store.py 22 raise NotImplementedError(self.__class__)
32 raise NotImplementedError(self.__class__)
42 raise NotImplementedError(self.__class__)
  /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:
  /external/fonttools/Lib/fontTools/ttLib/tables/
BitmapGlyphMetrics.py 33 writer.begintag(self.__class__.__name__)
35 for metricName in sstruct.getformat(self.__class__.binaryFormat)[1]:
38 writer.endtag(self.__class__.__name__)
42 metricNames = set(sstruct.getformat(self.__class__.binaryFormat)[1])
51 print("Warning: unknown name '%s' being ignored in %s." % name, self.__class__.__name__)
  /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)
  /external/lldb/scripts/Python/interface/
SBTypeCategory.i 150 return self.formatters_access_class (self,self.__class__.GetNumFormats,self.__class__.GetFormatAtIndex,self.__class__.GetFormatForType)
161 return self.formatters_access_class (self,self.__class__.GetNumSummaries,self.__class__.GetSummaryAtIndex,self.__class__.GetSummaryForType)
172 return self.formatters_access_class (self,self.__class__.GetNumSynthetics,self.__class__.GetSyntheticAtIndex,self.__class__.GetSyntheticForType)
183 return self.formatters_access_class (self,self.__class__.GetNumFilters,self.__class__.GetFilterAtIndex,self.__class__.GetFilterForType
    [all...]
  /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/third_party/markdown/extensions/
__init__.py 84 'method.' % (self.__class__.__module__, self.__class__.__name__))
  /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/qemu/scripts/
ordereddict.py 86 return (self.__class__, (items,), inst_dict)
87 return self.__class__, (items,)
103 return '%s()' % (self.__class__.__name__,)
104 return '%s(%r)' % (self.__class__.__name__, self.items())
107 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/lldb/test/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__,

Completed in 822 milliseconds

1 2 3 4 5 6 7 8 91011>>