/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
Type.java | 26 * class are generally interned and may be usefully compared with each 110 * to happen before the array types below get interned. 534 * Since externally-visible types are interned, this check 872 * Returns a new interned instance which is identical to this one, except 912 * Return the interned value. 914 * @param type {@code non-null;} instance to make interned 915 * @return {@code non-null;} the actual interned object
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
Strings.py | 12 # Make sure the strings are *not* interned
94 # Make sure the strings are *not* interned
176 # Make sure the strings *are* interned
|
Unicode.py | 17 # Make sure the strings are *not* interned
99 # Make sure the strings are *not* interned
|
/external/python/cpython2/Tools/pybench/ |
Strings.py | 12 # Make sure the strings are *not* interned 94 # Make sure the strings are *not* interned 176 # Make sure the strings *are* interned
|
Unicode.py | 17 # Make sure the strings are *not* interned 99 # Make sure the strings are *not* interned
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
FieldIdsSection.java | 96 * @return {@code non-null;} the interned reference
|
MethodIdsSection.java | 96 * @return {@code non-null;} the interned reference
|
ProtoIdsSection.java | 88 * @return {@code non-null;} the interned reference
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldIdsSection.java | 96 * @return {@code non-null;} the interned reference
|
MethodIdsSection.java | 96 * @return {@code non-null;} the interned reference
|
ProtoIdsSection.java | 103 * @return {@code non-null;} the interned reference
|
/libcore/libart/src/main/java/java/lang/ |
DexCache.java | 79 * interpreter semantics. All strings are interned.
|
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatAttributes.java | 38 * interned string pool.
|
/dalvik/dx/src/com/android/dx/rop/type/ |
Type.java | 27 * class are generally interned and may be usefully compared with each 508 * Since externally-visible types are interned, this check 853 * Returns a new interned instance which is identical to this one, except 893 * Return the interned value. 895 * @param type {@code non-null;} instance to make interned 896 * @return {@code non-null;} the actual interned object
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
stringobject.c | 16 /* This dictionary holds all interned strings. Note that references to
18 When the interned string reaches a refcnt of 0 the string deallocation
24 static PyObject *interned;
variable 586 if (PyDict_DelItem(interned, op) != 0)
588 "deletion of interned string failed");
592 Py_FatalError("Immortal interned string died.");
595 Py_FatalError("Inconsistent interned string state.");
[all...] |
/libcore/benchmarks/src/benchmarks/regression/ |
StringEqualsBenchmark.java | 26 * interned strings, and strings of different lengths. 188 // Interned strings are treated like constants, so it is not necessary to 189 // separately benchmark interned strings.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
stringobject.c | 16 /* This dictionary holds all interned strings. Note that references to
18 When the interned string reaches a refcnt of 0 the string deallocation
24 static PyObject *interned;
variable 586 if (PyDict_DelItem(interned, op) != 0)
588 "deletion of interned string failed");
592 Py_FatalError("Immortal interned string died.");
595 Py_FatalError("Inconsistent interned string state.");
[all...] |
/external/python/cpython2/Objects/ |
stringobject.c | 16 /* This dictionary holds all interned strings. Note that references to 18 When the interned string reaches a refcnt of 0 the string deallocation 24 static PyObject *interned; variable 586 if (PyDict_DelItem(interned, op) != 0) 588 "deletion of interned string failed"); 592 Py_FatalError("Immortal interned string died."); 595 Py_FatalError("Inconsistent interned string state."); [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstBaseMethodRef.java | 54 // without being interned to avoid polluting the DEX file with
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
combinerefs.py | 43 it's common for the line showing the dict of interned strings to display
|
/external/python/cpython2/Doc/c-api/ |
marshal.rst | 17 historical version, version ``1`` (new in Python 2.4) shares interned strings in
|
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
|
/external/python/cpython2/Tools/scripts/ |
combinerefs.py | 43 it's common for the line showing the dict of interned strings to display
|
/external/skia/site/dev/design/ |
pdftheory.md | 29 * [Interned objects](#Interned_objects) 230 <span id="Interned_objects">Interned objects</span> 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)
|
/libcore/ojluni/src/main/java/java/lang/invoke/ |
MethodType.java | 297 * Sole factory method to find or create an interned method type. 1202 T interned; local [all...] |