Lines Matching refs:entityB
121 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];
157 entityB = null;
166 var entities_equal = entitiesEqual(entityA, entityB);
168 comparison.push([entities_equal, address, entityA, entityB]);