HomeSort by relevance Sort by last modified time
    Searched full:cells (Results 126 - 150 of 516) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpanTest.java 28 * setup to exercise tables in which cells use spanning.
VerticalGravityTest.java 30 * setup to exercise tables in which cells use vertical gravity.
  /external/chromium_org/third_party/sqlite/src/src/
btreeInt.h 92 ** is to limit the maximum cell size so that at least 4 cells will fit
130 ** 3 2 number of cells on this page
145 ** to keep free space after the last cell pointer so that new cells can
164 ** Cells are of variable length. Cells are stored in the cell content area at
165 ** the end of the page. Pointers to the cells are in the cell pointer array
166 ** that immediately follows the page header. Cells is not necessarily
223 /* The maximum number of cells on a single page of the database. This
226 ** small cells will be rare, but they are possible.
284 u16 nCell; /* Number of cells on this page, local and ovfl *
    [all...]
test_stat.c 62 " ncell INTEGER, /* Cells on page (0 for overflow) */" \
65 " mx_payload INTEGER /* Largest payload size of all cells */" \
103 int nCell; /* Number of cells on page */
105 StatCell *aCell; /* Array of parsed cells */
306 int i; /* Used to iterate through cells */
  /external/chromium_org/chrome/browser/resources/net_internals/
test_view.js 98 // We will fill in result cells with actual values (to replace the
100 // save references to these cells.
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableColumn.cpp 125 // also account for cells that have a span
176 // make sure the last one isn't the same as this one (rowspan cells)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 104 // FIXME: Querying the style's border information doesn't work on table cells with collapsing borders.
122 // FIXME: Querying the style's border information doesn't work on table cells with collapsing borders.
AutoTableLayout.cpp 120 // This spanning cell originates in this column. Insert the cell into spanning cells list.
256 effWidth is the same as width for cells without colspans. If we have colspans, they get modified.
437 // treat span ranges consisting of empty cells only as if they had content
448 /* gets all cells that originate in a column and have a cellspan > 1
619 // variable columns with empty cells only don't get any width
632 // Need to reduce cells with the following prioritization:
636 // This is basically the reverse of how we grew the cells.
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.tablesorter.min.js 2 (function($){$.extend({tablesorter:new function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'.',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}var rows=table.tBodies[0].rows;if(table.tBodies[0].rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,cells[i]);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,node){var l=parsers.length;for(var i=1;i<l;i++){if(parsers[i].is($.trim(getElementText(table.config,node)),table,node)){return parsers[i];}}return parsers[0];}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=table.tBodies[0].rows[i],cols=[];cache.row.push($(c));for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c.cells[j]),table,c.cells[j]));}cols.push(i);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){if(!node)return"";var t="";if(config.textExtraction=="simple"){if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){t=node.childNodes[0].innerHTML;}else{t=node.innerHTML;}}else{if(typeof(config.textExtraction)=="function"){t=config.textExtraction(node);}else{t=$(node).text();}}return t;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){rows.push(r[n[i][checkCell]]);if(!table.config.appender){var o=r[n[i][checkCell]];var l=o.length;for(var j=0;j<l;j++){tableBody[0].appendChild(o[j]);}}}if(table.config.appender){table.config.appender(table,rows);}rows=null;if(table.config.debug){benchmark("Rebuilt table:",appendTime);}applyWidget(table);setTimeout(function(){$(table).trigger("sortEnd");},0);};function buildHeaders(table){if(table.config.debug){var time=new Date();}var meta=($.metadata)?true:false,tableHeadersRows=[];for(var i=0;i<table.tHead.rows.length;i++){tableHeadersRows[i]=0;};$tableHeaders=$("thead th",table);$tableHeaders.each(function(index){this.count=0;this.column=index;this.order=formatSortingOrder(table.config.sortInitialOrder);if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(!this.sortDisabled){$(this).addClass(table.config.cssHeader);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table (…)
  /external/chromium_org/ui/views/examples/
table_example.cc 114 const char* const cells[5][4] = { local
121 return ASCIIToUTF16(cells[row % 5][column_id]);
  /frameworks/base/core/java/android/widget/
TableLayout.java 37 * their rows, columns, or cells. Each row has zero or more cells; each cell can
39 * as the row with the most cells. A table can leave cells empty. Cells can span
63 * <p> Cells must be added to a row in increasing column order, both in code and
481 * the largest cell is applied to all the other cells.</p>
492 // but never shrinks. Unused extra cells in the array are just ignored
  /external/opencv/cvaux/src/
cvdpstereo.cpp 105 #define CELL(d,x) cells[(d)+(x)*dispH]
109 _CvDPCell* cells = (_CvDPCell*)cvAlloc(sizeof(_CvDPCell)*imgW*MAX(dispH,(imgH+1)/2)); local
111 int* reliabilities = (int*)cells;
196 _CvDPCell* _cell = cells + x*dispH;
471 cvFree( &cells );
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
options.html 202 var cells = document.getElementsByTagName(TDTAG);
204 // Display the hidden metrics (both headers and data cells).
211 for (i = 0; i < cells.length; i++) {
212 if (cells[i].style.display == NONE_DISPLAY) {
213 cells[i].style.display = CELL_DISPLAY;
221 var cells = document.getElementsByTagName(TDTAG);
230 for (i = 0; i < cells.length; i++) {
231 if (cells[i].style.display == CELL_DISPLAY) {
232 cells[i].style.display = NONE_DISPLAY;
249 var cells = document.getElementsByTagName(TDTAG)
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_mac.mm 478 // cells should use the same font and each should layout in one
668 // Cells pack with no spacing.
692 for (NSCell* cell in [self cells]) {
797 NSArray* cells = [self cells];
798 const NSUInteger count = [cells count];
800 if ([[cells objectAtIndex:i] isHighlighted]) {
  /external/chromium_org/native_client_sdk/src/examples/demo/life/
life.c 52 * Given a count of cells in a 3x3 grid where cells are worth 1 except for
144 /* only plot random cells within the touch area */
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/life/
life.c 56 * Given a count of cells in a 3x3 grid where cells are worth 1 except for
148 /* only plot random cells within the touch area */
  /external/chromium_org/ui/views/controls/table/
table_view.h 42 // The cells in the first column of a table can contain:
196 // Used during painting to determine the range of cells that need to be
251 // Returns the cells that need to be painted for the specified region.
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridDataFactory.java 151 * Sets the GridData span. The span controls how many cells are filled by the control.
166 * Sets the GridData span. The span controls how many cells are filled by the control.
178 * Sets the GridData span. The span controls how many cells are filled by the control.
  /build/tools/
check_builds.sh 29 # in which tree, and how big they are. In that chart, cells for files
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 49 * hover cell to determine when two cells should be swapped. If two cells should
308 * data set change, a layout is invoked to place the cells in the right place.
511 * scrolling takes place, the listview continuously checks if new cells became visible
  /external/ceres-solver/internal/ceres/
block_structure.h 76 vector<Cell> cells; member in struct:ceres::internal::CompressedList
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_text_field_cell.mm 61 // cells. Sets the background color to red if |foundMatches| is YES.
  /external/chromium/chrome/browser/ui/cocoa/
gradient_button_cell.h 17 // Base class for button cells for toolbar and bookmark bar.
  /external/chromium_org/chrome/browser/resources/task_manager/
task_manager.css 80 /* Cells in table. */
  /external/chromium_org/chrome/browser/ui/cocoa/
gradient_button_cell.h 16 // Base class for button cells for toolbar and bookmark bar.

Completed in 2198 milliseconds

1 2 3 4 56 7 8 91011>>