Home
last modified time | relevance | path

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

/external/v8/test/cctest/
Dlog-eq-of-logging-and-traversal.js121 function entityNamesEqual(entityA, entityB) { argument
122 if ("getRawName" in entityB &&
123 entityNamesEqual.builtins.indexOf(entityB.getRawName()) !== -1) {
126 if (entityNamesEqual.builtins.indexOf(entityB.getName()) !== -1) return true;
127 return entityA.getName() === entityB.getName();
133 function entitiesEqual(entityA, entityB) { argument
134 if ((entityA === null && entityB !== null) ||
135 (entityA !== null && entityB === null)) return true;
136 return entityA.size === entityB.size && entityNamesEqual(entityA, entityB);
153 var entityA = entryA[1], entityB = entryB[1];
[all …]