Home
last modified time | relevance | path

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

/external/v8/test/cctest/
Dlog-eq-of-logging-and-traversal.js121 function entityNamesEqual(entityA, entityB) { argument
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];
160 entityA = null;
166 var entities_equal = entitiesEqual(entityA, entityB);
168 comparison.push([entities_equal, address, entityA, entityB]);