| /external/chromium_org/chrome/browser/resources/chromeos/ |
| network.js | 98 * Create a row in the network state table. 106 var row = document.createElement('tr'); 107 row.className = 'network-status-table-row'; 108 row.appendChild(createStatusTableCell(path)); 109 row.appendChild(createStatusTableCell(status['GUID'].slice(1, 9))); 111 row.appendChild(createStatusTableCell(status[NETWORK_STATE_FIELDS[i]])); 113 return row; 123 var oldRows = table.querySelectorAll('.network-status-table-row');
|
| /external/chromium_org/chrome/browser/resources/extensions/chromeos/ |
| kiosk_apps.css | 22 /* TODO(xiyuan): The .row-delete-button rules probably should live somewhere 24 list .row-delete-button { 38 list > *:not(:hover):not([selected]):not([lead]) .row-delete-button, 39 list:not([hasElementFocus]) > *:not(:hover):not([selected]) .row-delete-button, 40 list[disabled] .row-delete-button, 41 list .row-delete-button[disabled] { 46 list .row-delete-button:hover { 54 list .row-delete-button:active { 62 #kiosk-app-id-edit-row {
|
| /external/chromium_org/chrome/browser/resources/options/chromeos/ |
| display_options.html | 10 <div class="selected-display-option-row"> 20 <div class="selected-display-option-row"> 28 <div class="selected-display-option-row"> 40 <div class="selected-display-option-row">
|
| /external/chromium_org/content/browser/resources/accessibility/ |
| accessibility.css | 22 .row {
|
| /external/chromium_org/skia/ext/ |
| convolver.cc | 40 // by calling AdvanceRow. It will keep track of which row in the buffer it 44 // The number of pixels in each row is given in |source_row_pixel_width|. 60 // Moves to the next row in the buffer, returning a pointer to the beginning 63 unsigned char* row = &buffer_[next_row_ * row_byte_width_]; local 66 // Set the pointer to the next row to use, wrapping around if necessary. 70 return row; 81 // Row 0 Coord 8 82 // Row 1 Coord 9 83 // Row 2 Coord 6 <- next_row_ = 2, next_row_coordinate_ = 10. 84 // Row 3 Coord [all...] |
| /external/chromium_org/third_party/WebKit/ManualTests/ |
| submit-form-with-target-twice.html | 11 <p>This tests that calling form.submit() twice in a row from JavaScript, on a form with a custom target and with at least one text field does not cause an assertion in a debug build of Safari.
|
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
| ResourceWebSocketFrameView.js | 56 var row = { 65 row.data = payload.errorMessage; 70 row.data = payload.payloadData; 91 row.data = WebInspector.UIString("%s (Opcode %d%s)", opcodeMeaning, payload.opcode, (payload.mask ? ", mask" : "")); 94 var node = new WebInspector.DataGridNode(row, false); 98 node.element.classList.add("resource-websocket-row-" + rowClass); 126 * @param {!Object} row 128 _copyMessage: function(row) 130 InspectorFrontendHost.copyText(row.data);
|
| /external/chromium_org/third_party/skia/src/images/ |
| SkScaledBitmapSampler.h | 42 // call with row of src pixels, for y = 0...scaledHeight-1. 43 // returns true if the row had non-opaque alpha in it 46 // Like next(), but specifies the y value of the source row, so the 47 // rows can come in any order. If the row is not part of the output
|
| /external/chromium_org/ui/base/models/ |
| table_model.h | 39 virtual base::string16 GetText(int row, int column_id) = 0; 45 virtual gfx::ImageSkia GetIcon(int row); 47 // Returns the tooltip, if any, to show for a particular row. If there are 48 // multiple columns in the row, this will only be shown when hovering over 50 virtual base::string16 GetTooltip(int row); 52 // If true, this row should be indented. 53 virtual bool ShouldIndent(int row); 67 // Returns the group id of the specified row. 69 virtual int GetGroupID(int row);
|
| /external/chromium_org/ui/keyboard/resources/webui/ |
| constants.js | 22 // TODO(bshe): The number of rows should equal to the number of kb-row elements
|
| /external/chromium_org/ui/views/controls/table/ |
| table_view_row_background_painter.h | 17 // TableViewRowBackgroundPainter is used to paint the background of a row in the
|
| /external/chromium_org/ui/webui/resources/js/cr/ui/table/ |
| table_list.js | 49 for (var row = this.firstElementChild; row; 50 row = row.nextElementSibling) { 51 if (row.tagName != 'LI') 55 row.children[i].style.width = cm.getWidth(i) + 'px'; 57 row.style.width = cm.totalWidth + 'px'; 170 listItem.className = 'table-row'; 175 cell.className = 'table-row-cell';
|
| /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
| PropertyTooltipProvider.java | 31 * Show tooltip directly on property row. 35 * Show tooltip below property row. 60 * Returns position for tooltip control. Usually we should show directly on same row, because we 62 * hierarchy, so it is better show it below and allow user see also property row.
|
| /external/eigen/Eigen/src/SparseCore/ |
| SparseTranspose.h | 42 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } function in class:Eigen::TransposeImpl::InnerIterator 43 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); } 55 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } function in class:Eigen::TransposeImpl::ReverseInnerIterator 56 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
|
| /external/eigen/doc/snippets/ |
| TopicStorageOrders_example.cpp | 14 cout << "In memory (row-major):" << endl;
|
| /external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
| Scaling.h | 20 * NOTE It is assumed that the matrix does not have empty row or column, 88 { // Iterate until the infinite norm of each row and column is approximately 1 89 // Get the maximum value in each row and column 95 if ( Dr(it.row()) < abs(it.value()) ) 96 Dr(it.row()) = abs(it.value()); 119 it.valueRef() = it.value()/( Dr(it.row()) * Dc(it.col()) ); 120 // Accumulate the norms of the row and column vectors 121 if ( DrRes(it.row()) < abs(it.value()) ) 122 DrRes(it.row()) = abs(it.value());
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| AbstractTableTest.java | 158 Map<Integer, Character> row = table.row("foo"); local 159 assertEquals(ImmutableMap.of(1, 'a', 3, 'c'), row); 161 assertEquals(ImmutableMap.of(1, 'a'), row); 163 assertEquals(ImmutableMap.of(), row); local 165 assertEquals(ImmutableMap.of(2, 'b'), row); 166 row.clear(); 167 assertEquals(ImmutableMap.of(), row); local 169 assertEquals(ImmutableMap.of(5, 'x'), row);
|
| TransposedTableTest.java | 66 assertEquals(original.row(1), transpose.column(1)); 67 assertEquals(original.row(2), transpose.column(2)); 68 assertEquals(original.column("foo"), transpose.row("foo")); 69 assertEquals(original.column("bar"), transpose.row("bar"));
|
| /external/javasqlite/src/main/java/SQLite/ |
| TableResult.java | 57 * Rows of the result set. Each row is stored as a String array. 150 String row[] = (String[]) rows.elementAt(i); local 152 sb.append(row[k] == null ? "NULL" : row[k]);
|
| /external/libvpx/libvpx/vp8/common/ |
| mv.h | 18 short row; member in struct:__anon23930
|
| /external/linux-tools-perf/util/ui/browsers/ |
| hists.c | 365 unsigned short row, 370 int first_row = row, width, offset = level * LEVEL_OFFSET_STEP; 421 if (ui_browser__is_current_entry(&self->b, row)) { 428 ui_browser__gotorc(&self->b, row, 0); 434 if (++row == self->b.height) 443 row += hist_browser__show_callchain_node_rb_tree(self, child, new_total, 444 new_level, row, row_offset, 447 if (row == self->b.height) 452 return row - first_row; 457 int level, unsigned short row, 590 unsigned row = 0; local [all...] |
| /external/llvm/lib/DebugInfo/ |
| DWARFDebugLine.cpp | 53 void DWARFDebugLine::Row::postAppend() { 59 void DWARFDebugLine::Row::reset(bool default_is_stmt) { 72 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { 90 for (std::vector<Row>::const_iterator pos = Rows.begin(), 103 Sequence::FirstRowIndex = row; 105 ++row; // Increase the row number. 110 Sequence::LastRowIndex = row; 115 Row::postAppend(); 119 row = DoneParsingLineTable 562 DWARFDebugLine::Row row; local 580 DWARFDebugLine::Row row; local [all...] |
| /external/qemu/pc-bios/keymaps/ |
| common | 4 # Top row 19 # QWERTY first row 35 # QWERTY second row 49 # QWERTY third row
|
| /external/skia/src/images/ |
| SkScaledBitmapSampler.h | 42 // call with row of src pixels, for y = 0...scaledHeight-1. 43 // returns true if the row had non-opaque alpha in it 46 // Like next(), but specifies the y value of the source row, so the 47 // rows can come in any order. If the row is not part of the output
|
| /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
| eventhistory.cpp | 34 if (index.row() >= timeList.size()) 36 return timeList.at(index.row()); 38 if (index.row() >= msgList.size()) 40 return msgList.at(index.row());
|