Searched refs:subRow (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/trace-viewer/src/tracing/tracks/ |
D | async_slice_group_track.js | 59 var subRow = subRows[j]; 60 var lastSliceInSubRow = subRow[subRow.length - 1]; 69 subRow.push(slice.subSlices[k]); 74 var subRow = []; 77 subRow.push(slice.subSlices[k]); 78 subRows.push(subRow);
|
D | slice_group_track.js | 104 var subRow = subRows[srI]; 105 if (!subRow.length) 107 this.addSliceTrack_(subRow);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | TreeBasedTableTest.java | 428 SortedMap<Integer, Character> subRow = row.tailMap(2); in testSubRowClearAndPut() local 430 assertEquals(ImmutableMap.of(3, 'c'), subRow); in testSubRowClearAndPut() 433 assertEquals(ImmutableMap.of(), subRow); in testSubRowClearAndPut() local 436 assertEquals(ImmutableMap.of(), subRow); in testSubRowClearAndPut() local 439 assertEquals(ImmutableMap.of(2, 'b'), subRow); in testSubRowClearAndPut() 442 assertEquals(ImmutableMap.of(), subRow); in testSubRowClearAndPut() local 445 assertEquals(ImmutableMap.of(5, 'x'), subRow); in testSubRowClearAndPut()
|
/external/chromium_org/chrome/browser/resources/inspect/ |
D | inspect.js | 444 var subRow = document.createElement('div'); 445 subRow.className = 'subrow webview'; 447 subRow.className += ' invisible-view'; 449 subRow.appendChild(formatValue(viewStatus, 'visibility')); 451 subRow.appendChild(formatValue(viewStatus, 'position')); 452 subRow.appendChild(formatValue(viewStatus, 'size')); 454 subrowBox.insertBefore(subRow, row.querySelector('.actions'));
|