Lines Matching refs:nodes
205 Node* nodes[] = {T.UndefinedConstant(), T.TheHoleConstant(), T.TrueConstant(),
210 for (size_t i = 0; i < arraysize(nodes); i++) {
211 for (size_t j = 0; j < arraysize(nodes); j++) {
212 if (i != j) CHECK_NE(nodes[i], nodes[j]);
300 static bool Contains(NodeVector* nodes, Node* n) {
301 for (size_t i = 0; i < nodes->size(); i++) {
302 if (nodes->at(i) == n) return true;
309 NodeVector nodes(T->main_zone());
310 T->GetCachedNodes(&nodes);
311 CHECK(Contains(&nodes, n));
468 NodeVector nodes(T.main_zone());
469 T.GetCachedNodes(&nodes);
472 CHECK(Contains(&nodes, constants[i]));