Home
last modified time | relevance | path

Searched refs:InstanceType (Results 1 – 23 of 23) sorted by relevance

/external/skia/modules/skottie/src/effects/
DGradientEffect.cpp57 enum class InstanceType { enum in skottie::internal::__anona84dad1b0111::GradientRampEffectAdapter
72 auto update_gradient = [this] (InstanceType new_type) { in onSync()
74 fGradient = new_type == InstanceType::kLinear in onSync()
88 ? InstanceType::kLinear in onSync()
89 : InstanceType::kRadial; in onSync()
97 if (instance_type == InstanceType::kLinear) { in onSync()
102 SkASSERT(instance_type == InstanceType::kRadial); in onSync()
116 InstanceType fInstanceType = InstanceType::kNone;
/external/python/cpython2/Lib/
Dnew.py13 from types import InstanceType as instance
Dtypes.py56 InstanceType = type(_x) variable
Dcopy.py141 d[types.InstanceType] = _copy_inst
304 d[types.InstanceType] = _deepcopy_inst
Ddis.py25 if isinstance(x, types.InstanceType):
Dtraceback.py171 isinstance(etype, types.InstanceType) or
Dxmlrpclib.py659 f = self.dispatch[InstanceType]
763 dispatch[InstanceType] = dump_instance
Dpickle.py734 dispatch[InstanceType] = save_inst
Dpydoc.py1509 if type(thing) is types.InstanceType:
/external/skqp/src/gpu/ccpr/
DGrCCStroker.cpp774 template<int GrCCStrokeGeometry::InstanceTallies::* InstanceType>
781 int baseInstance = fBaseInstances[(int)GrScissorTest::kDisabled].*InstanceType; in drawConnectingGeometry()
782 int startIdx = startIndices[(int)GrScissorTest::kDisabled]->*InstanceType; in drawConnectingGeometry()
783 int endIdx = batch.fNonScissorEndInstances->*InstanceType; in drawConnectingGeometry()
792 baseInstance = fBaseInstances[(int)GrScissorTest::kEnabled].*InstanceType; in drawConnectingGeometry()
793 startIdx = startIndices[(int)GrScissorTest::kEnabled]->*InstanceType; in drawConnectingGeometry()
796 endIdx = subBatch.fEndInstances->*InstanceType; in drawConnectingGeometry()
DGrCCStroker.h102 template<int GrCCStrokeGeometry::InstanceTallies::* InstanceType>
/external/python/cpython2/Lib/idlelib/
DObjectBrowser.py125 InstanceType: InstanceTreeItem,
Drpc.py572 if type(obj) == types.InstanceType:
/external/python/cpython2/Lib/bsddb/test/
Dtest_dbshelve.py241 from types import InstanceType
242 self.assertEqual(type(value), InstanceType)
/external/python/cpython2/Lib/plat-mac/
Daetools.py175 elif type(signature) == InstanceType and hasattr(signature, '__aepack__'):
Daetypes.py524 if type(start) == InstanceType == type(stop) and \
Dfindertools.py491 if type(pos) == InstanceType:
/external/python/cpython2/Doc/library/
Dtypes.rst148 .. data:: InstanceType
/external/python/futures/concurrent/futures/
D_base.py407 if isinstance(self._exception, types.InstanceType):
/external/protobuf/python/
Dmox.py155 _USE_MOCK_OBJECT = [types.ClassType, types.InstanceType, types.ModuleType,
/external/python/cpython2/Tools/webchecker/
Dwebchecker.py623 isinstance(msg[3], InstanceType):
/external/python/cpython2/Lib/test/support/
D__init__.py165 elif isinstance(obj, types.InstanceType):
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst3427 Marshal new-style objects like InstanceType in xmlrpclib.