Searched refs:identical (Results 1 - 6 of 6) sorted by relevance

/openjdk10/nashorn/test/script/maptests/
H A Dmaputil.js29 if (! Debug.identical(Debug.map(obj1), Debug.map(obj2))) {
35 if (Debug.identical(Debug.map(obj1), Debug.map(obj2))) {
42 fail(obj1.constructor + " and " + obj2.constructor + " instances don't have identical (without considering property types) maps");
/openjdk10/nashorn/test/script/trusted/
H A DJDK-8032060.js34 if (! Debug.identical(Debug.map(e1), Debug.map(e2))) {
52 if (! Debug.identical(m1, m2)) {
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeDebug.java140 public static boolean identical(final Object self, final Object obj1, final Object obj2) { method in class:NativeDebug
145 * Returns true if if the two objects are both property maps, and they have identical properties in the same order,
150 * @return true if they have identical properties in same order, with possibly different types.
/openjdk10/hotspot/src/share/vm/opto/
H A Dcompile.cpp3307 // Loop over all nodes with identical inputs edges as m
3324 // Replace all nodes with identical edges as m with m
4364 // and check for at least two nodes of identical kind with same data
4389 int identical = 0; local
4395 identical++;
4399 if (identical > 0) {
4401 identical = 0;
4409 if (identical > 0) {
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DScriptRuntime.java901 return ScriptObjectMirror.identical(x, y);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/scripting/
H A DScriptObjectMirror.java804 * @return true if obj1 and obj2 are identical script objects or mirrors of it.
806 public static boolean identical(final Object obj1, final Object obj2) { method in class:ScriptObjectMirror

Completed in 179 milliseconds