Home
last modified time | relevance | path

Searched refs:_frozen (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/python/tpu/
Dtpu_sharding.py38 self._frozen = False
60 if not self._frozen:
62 self._frozen = True
82 if self._frozen:
114 if self._frozen:
Dtpu_feed.py160 self._frozen = False
235 if self._frozen:
281 if self._frozen:
399 if not self._frozen:
440 self._frozen = True
/external/python/cpython2/Python/
Dfrozen.c26 static struct _frozen _PyImport_FrozenModules[] = {
38 struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules;
Dimport.c1160 static struct _frozen *find_frozen(char *name);
2057 static struct _frozen *
2060 struct _frozen *p; in find_frozen()
2074 struct _frozen *p = find_frozen(name); in get_frozen_object()
2103 struct _frozen *p = find_frozen(name); in PyImport_ImportFrozenModule()
3100 struct _frozen *p; in imp_is_frozen()
/external/python/cpython3/Python/
Dfrozen.c30 static const struct _frozen _PyImport_FrozenModules[] = {
46 const struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules;
Dimport.c1059 static const struct _frozen * find_frozen(PyObject *);
1233 static const struct _frozen *
1236 const struct _frozen *p; in find_frozen()
1253 const struct _frozen *p = find_frozen(name); in get_frozen_object()
1277 const struct _frozen *p = find_frozen(name); in is_frozen_package()
1304 const struct _frozen *p; in PyImport_ImportFrozenModuleObject()
2079 const struct _frozen *p; in _imp_is_frozen_impl()
/external/python/cpython2/Include/
Dimport.h57 struct _frozen { struct
66 PyAPI_DATA(struct _frozen *) PyImport_FrozenModules; argument
/external/python/cpython3/Include/
Dimport.h136 struct _frozen { struct
145 PyAPI_DATA(const struct _frozen *) PyImport_FrozenModules; argument
/external/python/cpython3/Programs/
D_freeze_importlib.c19 static const struct _frozen _PyImport_FrozenModules[] = {
27 const struct _frozen *PyImport_FrozenModules;
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
Dproject.py90 self._frozen = False
97 self._frozen = True
100 if self._frozen:
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTimeZoneGenericNames.java112 private transient volatile boolean _frozen; field in TimeZoneGenericNames
921 return _frozen; in isFrozen()
929 _frozen = true; in freeze()
941 copy._frozen = false; in cloneAsThawed()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTimeZoneGenericNames.java116 private transient volatile boolean _frozen; field in TimeZoneGenericNames
926 return _frozen; in isFrozen()
934 _frozen = true; in freeze()
946 copy._frozen = false; in cloneAsThawed()
/external/python/cpython2/Doc/c-api/
Dimport.rst220 .. c:type:: struct _frozen
229 struct _frozen {
236 .. c:var:: struct _frozen* PyImport_FrozenModules
238 This pointer is initialized to point to an array of :c:type:`struct _frozen`
/external/python/cpython3/Doc/c-api/
Dimport.rst261 .. c:type:: struct _frozen
270 struct _frozen {
277 .. c:var:: const struct _frozen* PyImport_FrozenModules
279 This pointer is initialized to point to an array of :c:type:`struct _frozen`
/external/icu/android_icu4j/src/main/java/android/icu/text/
DTimeZoneFormat.java317 private volatile transient boolean _frozen; field in TimeZoneFormat
3210 return _frozen;
3218 _frozen = true;
3228 copy._frozen = false;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneFormat.java353 private volatile transient boolean _frozen; field in TimeZoneFormat
3281 return _frozen;
3290 _frozen = true;
3301 copy._frozen = false;
/external/python/cpython2/Doc/library/
Dctypes.rst1123 "struct _frozen" records, terminated by one whose members are all NULL or zero.
1140 We have defined the ``struct _frozen`` data type, so we can get the pointer to
/external/python/cpython3/Doc/library/
Dctypes.rst1085 This pointer is initialized to point to an array of :c:type:`struct _frozen`
1102 We have defined the :c:type:`struct _frozen` data type, so we can get the pointer
/external/python/cpython2/Misc/
DHISTORY14655 - In Python/import.c, Cast unsigned char * in struct _frozen to char *
/external/python/cpython3/Misc/
DHISTORY32034 - In Python/import.c, Cast unsigned char * in struct _frozen to char *