Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dfrozen.c26 static struct _frozen _PyImport_FrozenModules[] = {
38 struct _frozen *PyImport_FrozenModules = _PyImport_FrozenModules;
Dimport.c1138 static struct _frozen *find_frozen(char *name);
2035 static struct _frozen *
2038 struct _frozen *p; in find_frozen()
2052 struct _frozen *p = find_frozen(name); in get_frozen_object()
2081 struct _frozen *p = find_frozen(name); in PyImport_ImportFrozenModule()
3078 struct _frozen *p; in imp_is_frozen()
/external/python/cpython2/Include/
Dimport.h57 struct _frozen { struct
66 PyAPI_DATA(struct _frozen *) PyImport_FrozenModules; argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTimeZoneGenericNames.java114 private transient volatile boolean _frozen; field in TimeZoneGenericNames
923 return _frozen; in isFrozen()
931 _frozen = true; in freeze()
943 copy._frozen = false; in cloneAsThawed()
/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/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/icu/android_icu4j/src/main/java/android/icu/text/
DTimeZoneFormat.java316 private volatile transient boolean _frozen; field in TimeZoneFormat
3190 return _frozen;
3198 _frozen = true;
3208 copy._frozen = false;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneFormat.java352 private volatile transient boolean _frozen; field in TimeZoneFormat
3261 return _frozen;
3270 _frozen = true;
3281 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/cpython2/Misc/
DHISTORY14655 - In Python/import.c, Cast unsigned char * in struct _frozen to char *