Searched refs:interned (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython2/Doc/c-api/ |
D | string.rst | 251 interned string that is the same as *\*string*, it sets *\*string* to it 253 reference count of the interned string object), otherwise it leaves *\*string* 268 been interned, or a new ("owned") reference to an earlier interned string object
|
D | marshal.rst | 17 historical version, version ``1`` (new in Python 2.4) shares interned strings in
|
/external/python/cpython2/Objects/ |
D | stringobject.c | 24 static PyObject *interned; variable 586 if (PyDict_DelItem(interned, op) != 0) in string_dealloc() 4759 if (interned == NULL) { in PyString_InternInPlace() 4760 interned = PyDict_New(); in PyString_InternInPlace() 4761 if (interned == NULL) { in PyString_InternInPlace() 4766 t = PyDict_GetItem(interned, (PyObject *)s); in PyString_InternInPlace() 4773 if (PyDict_SetItem(interned, (PyObject *)s, (PyObject *)s) < 0) { in PyString_InternInPlace() 4820 if (interned == NULL || !PyDict_Check(interned)) in _Py_ReleaseInternedStrings() 4822 keys = PyDict_Keys(interned); in _Py_ReleaseInternedStrings() 4859 PyDict_Clear(interned); in _Py_ReleaseInternedStrings() [all …]
|
D | dictnotes.txt | 24 Size 126 interned strings (as of Py2.3b1).
|
/external/python/cpython2/Doc/library/ |
D | marshal.rst | 121 version 1 (added in Python 2.4) shares interned strings and version 2 (added in
|
D | xml.sax.handler.rst | 76 local names are interned using the built-in intern function. 77 | false: Names are not necessarily interned, although they may be (default).
|
D | functions.rst | 1739 Enter *string* in the table of "interned" strings and return the interned string 1742 interned, and the lookup key is interned, the key comparisons (after hashing) 1744 names used in Python programs are automatically interned, and the dictionaries 1745 used to hold module, class or instance attributes have interned keys.
|
/external/skia/site/dev/design/ |
D | pdftheory.md | 242 The SkPDFCanon object owns the interned objects. For obvious reasons, 244 that interned classes are immutable is needed. See [issue 305 SkPDFGraphicState (interned) with the rest (color, font size, etc)
|
/external/libxml2/os400/libxmlrpg/ |
D | parser.rpgle | 286 * pre-interned strings
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.4.rst | 1189 * The :mod:`marshal` module now shares interned strings on unpacking a data
|
D | 2.3.rst | 1183 interned strings. (Implemented by Oren Tirosh.)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 2528 - Subclasses of string can no longer be interned. The semantics of 3011 - marshal now shares interned strings. This change introduces 5044 interned strings are no longer immortal. You must keep a reference 5782 incremented. The apparently unused feature of "indirect interned 5785 PyString_InternImmortal() that creates immortal interned strings. 13425 "interned" strings. Most names generated by the interpreter are now 13426 automatically interned, and there's a new built-in function intern(s) 13427 that returns the interned version of a string. Interned strings are
|
D | cheatsheet | 980 intern(aString) Enters aString in the table of "interned strings"
|
D | NEWS | 50 - Issue #28350: String constants with null character no longer interned. 52 - Issue #27942: String constants now interned recursively in tuples and frozensets. 3299 the module name that was not interned.
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|
/external/libxml2/ |
D | ChangeLog | 9508 xmlTextReaderConstString() to get an interned string from
|