/external/tensorflow/tensorflow/python/tpu/ |
D | tpu_sharding.py | 38 self._frozen = False 60 if not self._frozen: 62 self._frozen = True 82 if self._frozen: 114 if self._frozen:
|
D | tpu_feed.py | 160 self._frozen = False 235 if self._frozen: 281 if self._frozen: 399 if not self._frozen: 440 self._frozen = True
|
/external/python/cpython2/Python/ |
D | frozen.c | 26 static struct _frozen _PyImport_FrozenModules[] = { 38 struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules;
|
D | import.c | 1160 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/ |
D | frozen.c | 30 static const struct _frozen _PyImport_FrozenModules[] = { 46 const struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules;
|
D | import.c | 1059 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/ |
D | import.h | 57 struct _frozen { struct 66 PyAPI_DATA(struct _frozen *) PyImport_FrozenModules; argument
|
/external/python/cpython3/Include/ |
D | import.h | 136 struct _frozen { struct 145 PyAPI_DATA(const struct _frozen *) PyImport_FrozenModules; argument
|
/external/python/cpython3/Programs/ |
D | _freeze_importlib.c | 19 static const struct _frozen _PyImport_FrozenModules[] = { 27 const struct _frozen *PyImport_FrozenModules;
|
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/ |
D | project.py | 90 self._frozen = False 97 self._frozen = True 100 if self._frozen:
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | TimeZoneGenericNames.java | 112 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/ |
D | TimeZoneGenericNames.java | 116 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/ |
D | import.rst | 220 .. 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/ |
D | import.rst | 261 .. 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/ |
D | TimeZoneFormat.java | 317 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/ |
D | TimeZoneFormat.java | 353 private volatile transient boolean _frozen; field in TimeZoneFormat 3281 return _frozen; 3290 _frozen = true; 3301 copy._frozen = false;
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 1123 "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/ |
D | ctypes.rst | 1085 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/ |
D | HISTORY | 14655 - In Python/import.c, Cast unsigned char * in struct _frozen to char *
|
/external/python/cpython3/Misc/ |
D | HISTORY | 32034 - In Python/import.c, Cast unsigned char * in struct _frozen to char *
|