Lines Matching defs:element
11 * This class is a table with one element for eack basic block.
21 * a "search" method that scans an array until an element is found), but in
27 class Element {
43 * Initializes the table element for a given loop (identified by its
67 Element()
85 Element* at(int index) const { return &(elements_.at(index)); }
86 Element* at(HBasicBlock* block) const { return at(block->block_id()); }
137 Element* successor = at(current->end()->SuccessorAt(i));
181 Element element;
182 element.set_block(graph->blocks()->at(i));
183 elements_.Add(element, graph->zone());
367 ZoneList<Element> elements_;