/third_party/rust/crates/cxx/gen/build/src/ |
D | intern.rs | 23 Some(interned) => *interned, in intern() 25 let interned = Box::leak(Box::from(s)); in intern() localVariable 26 set.insert(interned); in intern() 27 interned in intern()
|
D | vec.rs | 37 fn unintern(interned: InternedString) -> &'static Self { in unintern() 38 interned.str() in unintern() 47 fn unintern(interned: InternedString) -> &'static Self { in unintern() 48 Path::new(interned.str()) in unintern()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
D | RangeTree.java | 544 Node interned = existingRef.get(); in intern() local 545 if (interned != null) { in intern() 548 return interned; in intern() 577 Node interned = existingRef.get(); in intern() local 578 if (interned != null) { in intern() 581 return interned; in intern()
|
/third_party/libabigail/include/ |
D | Makefile.am | 4 abg-interned-str.h \
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.2.rst | 39 interned strings compatible with subinterpreters: the internal interned
|
D | 3.6.0b2.rst | 104 String constants with null character no longer interned. 122 String constants now interned recursively in tuples and frozensets.
|
D | 3.10.0a4.rst | 186 Make the Unicode dictionary of interned strings compatible with 197 Each interpreter now has an array of identifier objects (interned strings
|
D | 3.6.2rc1.rst | 46 Fixed type.__setattr__() and type.__delattr__() for non-interned attribute
|
D | 3.5.3rc1.rst | 172 String constants with null character no longer interned. 190 String constants now interned recursively in tuples and frozensets.
|
D | 3.5.4rc1.rst | 92 Fixed type.__setattr__() and type.__delattr__() for non-interned attribute
|
D | 3.9.0a2.rst | 42 strengthening the assumption that kwargs are interned strings.
|
D | 3.6.0b1.rst | 89 The __module__ attribute of extension classes and functions now is interned.
|
/third_party/python/Doc/c-api/ |
D | marshal.rst | 17 historical version, version 1 shares interned strings in the file, and upon
|
D | unicode.rst | 1716 existing interned string that is the same as *\*string*, it sets *\*string* to 1718 the reference count of the interned string object), otherwise it leaves 1729 object that has been interned, or a new ("owned") reference to an earlier 1730 interned string object with the same value.
|
/third_party/libabigail/relicensing-scripts/ |
D | files-with-lgplv3.txt | 25 ./include/abg-interned-str.h
|
D | file-licenses.orig.txt | 26 ./include/abg-interned-str.h:1:// SPDX-License-Identifier: LGPL-3.0-or-later
|
/third_party/python/Include/ |
D | unicodeobject.h | 274 (((PyASCIIObject *)(op))->state.interned)
|
/third_party/python/Doc/library/ |
D | marshal.rst | 123 format, version 1 shares interned strings and version 2 uses a binary format
|
D | xml.sax.handler.rst | 83 local names are interned using the built-in intern function. 84 | false: Names are not necessarily interned, although they may be (default).
|
D | sys.rst | 1011 Enter *string* in the table of "interned" strings and return the interned string 1014 interned, and the lookup key is interned, the key comparisons (after hashing) 1016 names used in Python programs are automatically interned, and the dictionaries 1017 used to hold module, class or instance attributes have interned keys.
|
/third_party/python/Objects/ |
D | unicodeobject.c | 228 static PyObject *interned = NULL; variable 546 CHECK(ascii->state.interned == SSTATE_NOT_INTERNED); in _PyUnicode_CheckConsistency() 1256 _PyUnicode_STATE(unicode).interned = 0; in _PyUnicode_New() 1476 _PyUnicode_STATE(unicode).interned = 0; in PyUnicode_New() 1837 assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED); in _PyUnicode_Ready() 1963 if (PyDict_DelItem(interned, unicode) != 0) { in unicode_dealloc() 15659 _PyUnicode_STATE(self).interned = 0; in unicode_subtype_new() 15861 if (interned == NULL) { in PyUnicode_InternInPlace() 15862 interned = PyDict_New(); in PyUnicode_InternInPlace() 15863 if (interned == NULL) { in PyUnicode_InternInPlace() [all …]
|
D | dictnotes.txt | 23 About 150 interned strings (as of Py3.3).
|
/third_party/python/Include/cpython/ |
D | unicodeobject.h | 171 unsigned int interned:2; member
|
/third_party/skia/site/docs/dev/design/ |
D | pdftheory.md | 246 Most of the paint parameters are bundled into an SkPDFGraphicState (interned)
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 143 Objects/unicodeobject.c:interned static PyObject *interned
|