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

1 2 3 4 5 6 7 8 91011>>

  /external/fonttools/Lib/fontTools/misc/
dictTools.py 34 return "{0}({1})".format(self.__class__.__name__,
42 .format(self.__class__.__name__))
45 .format(self.__class__.__name__))
48 .format(self.__class__.__name__))
51 .format(self.__class__.__name__))
54 .format(self.__class__.__name__))
57 .format(self.__class__.__name__))
60 .format(self.__class__.__name__))
  /external/fonttools/Lib/fontTools/ttLib/tables/
BitmapGlyphMetrics.py 36 writer.begintag(self.__class__.__name__)
38 for metricName in sstruct.getformat(self.__class__.binaryFormat)[1]:
41 writer.endtag(self.__class__.__name__)
45 metricNames = set(sstruct.getformat(self.__class__.binaryFormat)[1])
54 log.warning("unknown name '%s' being ignored in %s.", name, self.__class__.__name__)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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/python/cpython2/Lib/
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)
  /art/tools/checker/common/
mixins.py 19 return isinstance(other, self.__class__) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
test_selftype.py 11 U.__class__ = U
  /external/python/cpython2/Lib/test/leakers/
test_selftype.py 11 U.__class__ = U
  /external/python/cpython3/Lib/test/leakers/
test_selftype.py 11 U.__class__ = U
  /external/python/cpython3/Lib/test/test_asyncio/
echo3.py 11 os.write(2, b'ERR:' + ex.__class__.__name__.encode('ascii'))
  /external/python/setuptools/pkg_resources/_vendor/packaging/
_structures.py 22 return isinstance(other, self.__class__)
25 return not isinstance(other, self.__class__)
54 return isinstance(other, self.__class__)
57 return not isinstance(other, self.__class__)
  /external/python/setuptools/setuptools/_vendor/packaging/
_structures.py 22 return isinstance(other, self.__class__)
25 return not isinstance(other, self.__class__)
54 return isinstance(other, self.__class__)
57 return not isinstance(other, self.__class__)
  /external/autotest/server/site_tests/firmware_Cr50PinWeaverServer/
firmware_Cr50PinWeaverServer.py 48 self.__class__.__name__)
71 self.__class__.__name__)
86 self.__class__.__name__)
90 self.__class__.__name__)
103 self.__class__.__name__)
106 self.__class__.__name__)
114 self.__class__.__name__)
125 self.__class__.__name__)
133 self.__class__.__name__)
  /external/python/cpython3/Lib/test/
test_super.py 49 nonlocal __class__
50 __class__ = TestSuper
94 __class__ = 413 variable in class:TestSuper.test_various___class___pathologies.X
97 self.assertEqual(x.__class__, 413)
99 x = __class__
101 __class__
105 __class__
107 __class__""", globals(), {})
110 global __class__
111 __class__ = 4 variable in class:TestSuper.test_various___class___pathologies.X
119 __class__ = 42 variable in class:TestSuper.test_various___class___pathologies.X
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
ExclusiveCriterion.py 56 currentValue, self.__class__.__name__))
59 return self.__class__.__name__ + ' : ' + str(self.__currentValue)
InclusiveCriterion.py 82 currentValue, self.__class__.__name__))
95 return self.__class__.__name__ + ' : ' + str(self.__currentValues)
  /external/autotest/client/common_lib/
control_data.py 304 assert(expr.__class__ == compiler.ast.Const)
305 assert(expr.value.__class__ in (str, int, float, unicode))
310 assert(expr.__class__ == compiler.ast.Dict)
311 assert(expr.items.__class__ == list)
325 assert(expr.__class__ == compiler.ast.List)
336 assert(expr.__class__ == compiler.ast.Name)
342 if expr.__class__ == compiler.ast.Const:
344 if expr.__class__ == compiler.ast.Name:
346 if expr.__class__ == compiler.ast.Dict:
348 if expr.__class__ == compiler.ast.List
    [all...]
  /external/tensorflow/tensorflow/python/keras/layers/
serialization_test.py 42 self.assertEqual(new_layer.bias_regularizer.__class__,
45 self.assertEqual(new_layer.kernel_initializer.__class__,
48 self.assertEqual(new_layer.kernel_initializer.__class__,
63 self.assertEqual(new_layer.beta_initializer.__class__,
67 self.assertEqual(new_layer.beta_initializer.__class__,
69 self.assertEqual(new_layer.gamma_regularizer.__class__,
  /external/python/cpython3/Lib/collections/
__init__.py 270 return '%s()' % (self.__class__.__name__,)
271 return '%s(%r)' % (self.__class__.__name__, list(self.items()))
278 return self.__class__, (), inst_dict or None, None, iter(self.items())
282 return self.__class__(self)
424 return self.__class__.__name__ + repr_fmt % self
693 return self.__class__(self)
696 return self.__class__, (dict(self),)
705 return '%s()' % self.__class__.__name__
708 return '%s({%s})' % (self.__class__.__name__, items)
711 return '{0}({1!r})'.format(self.__class__.__name__, dict(self)
    [all...]
  /art/tools/checker/file_format/c1visualizer/
struct.py 34 return isinstance(other, self.__class__) \
58 return isinstance(other, self.__class__) \
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
base_symbol.py 20 if (hasattr(self.__class__, name) and
21 isinstance(getattr(self.__class__, name), property)):
  /external/python/pyasn1/pyasn1/type/
tag.py 68 return '<%s object at 0x%x tag %s>' % (self.__class__.__name__, id(self), representation)
107 return self.__class__(self.__tagClass & otherTag.tagClass,
112 return self.__class__(self.__tagClass | otherTag.tagClass,
202 return '<%s object at 0x%x %s>' % (self.__class__.__name__, id(self), representation)
205 return self.__class__(self.__baseTag, *self.__superTags + (superTag,))
208 return self.__class__(self.__baseTag, *(superTag,) + self.__superTags)
211 if i.__class__ is slice:
212 return self.__class__(self.__baseTag, *self.__superTags[i])

Completed in 913 milliseconds

1 2 3 4 5 6 7 8 91011>>