/development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/ |
FixedGridLayout.java | 30 * cells is set by the {@link #setCellSize} method and the 35 * in {@link #addViewAt}. Views can not span multiple cells.
|
/external/ceres-solver/internal/ceres/ |
block_random_access_crs_matrix.h | 55 // <row_block_id, col_block_id> pairs to identify the non-zero cells 61 // modifying any cells when the matrix is being destroyed.
|
visibility_based_preconditioner.cc | 247 // of non-zero cells contibuted by this e_block. 253 int e_block_id = bs.rows[r].cells.front().block_id; 262 if (row.cells.front().block_id != e_block_id) { 269 for (int c = 1; c < row.cells.size(); ++c) { 270 const Cell& cell = row.cells[c]; 293 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks); 294 for (int i = 0; i < row.cells.size(); ++i) { 295 const int block1 = row.cells[i].block_id - num_eliminate_blocks; 296 for (int j = 0; j < row.cells.size(); ++j) { 297 const int block2 = row.cells[j].block_id - num_eliminate_blocks [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
testview.js | 70 // We will fill in result cells with actual values (to replace the 72 // save references to these cells.
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AccessibilityARIAGridCell.cpp | 98 // as far as I can tell, grid cells cannot span rows 120 // as far as I can tell, grid cells cannot span columns
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableElement.h | 94 bool m_borderAttr; // Sets a precise border width and creates an outset border for the table and for its cells. 95 bool m_borderColorAttr; // Overrides the outset border and makes it solid for the table and cells instead.
|
CollectionType.h | 48 TRCells, // all cells in this row
|
HTMLTableRowElement.h | 49 PassRefPtr<HTMLCollection> cells();
|
HTMLTableRowElement.cpp | 123 RefPtr<HTMLCollection> children = cells(); 146 RefPtr<HTMLCollection> children = cells(); 158 PassRefPtr<HTMLCollection> HTMLTableRowElement::cells() function in class:WebCore::HTMLTableRowElement
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
term_break_iterator.cc | 26 // Each col represents new state from input char. Cells with true value
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_input_field.h | 38 // cells, so inherits from AutofillInputCell.
|
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/ |
FixedWidthTest.java | 28 * setup to exercise tables in which cells use fixed width and height.
|
HorizontalGravityTest.java | 29 * setup to exercise tables in which cells use horizontal gravity.
|
WeightTest.java | 28 * setup to exercise tables in which cells use a weight.
|
/frameworks/base/docs/html/reference/renderscript/ |
structrs__script__call.html | 32 <div class="textblock"><p>Structure to provide extra information to a rsForEach call. Primarly used to restrict the call to a subset of cells in the allocation. </p>
|
/frameworks/base/telephony/java/android/telephony/ |
NeighboringCellInfo.java | 73 * NeighboringCellInfo is one time shot for the neighboring cells based on 91 * NeighboringCellInfo is one time shot for the neighboring cells based on 232 * NeighboringCellInfo is a one time shot for the neighboring cells based on 247 * NeighboringCellInfo is a one time shot for the neighboring cells based on
|
/packages/apps/Launcher2/res/layout-sw720dp/ |
workspace.xml | 17 <!-- The workspace contains 5 screens of cells -->
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Table_Suite.py | 30 cells = cell variable
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/ |
info.html | 69 function renderCells(cells, data) { 70 for (var i = 0; i < cells.length; i++) { 71 var cell = cells[i];
|
/external/chromium_org/content/browser/resources/media/ |
stats_table.js | 87 table.rows[0].cells[0].textContent = 'Statistics ' + report.id; 92 table.rows[1].cells[0], GetSsrcFromReport(report)); 132 trElement.cells[1].textContent = value;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/ |
jquery.tablesorter.min.js | 3 function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',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="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(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,rows,-1,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,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}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=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){var text="";if(!node)return"";if(!config.supportsTextContent)config.supportsTextContent=node.textContent||false;if(config.textExtraction=="simple"){if(config.supportsTextContent){text=node.textContent;}else{if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){text=node.childNodes[0].innerHTML;}else{text=node.innerHTML;}}}else{if(typeof(config.textExtraction)=="function"){text=config.textExtraction(node);}else{text=$(node).text();}}return text;}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++){var pos=n[i][checkCell];rows.push(r[pos]);if(!table.config.appender){var l=r[pos].length;for(var j=0;j<l;j++){tableBody[0].appendChild(r[pos][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;var header_index=computeTableHeaderCellIndexes(table);$tableHeaders=$(table.config.selectorHeaders,table).each(function(index){this.column=header_index[this.parentNode.rowIndex+"-"+this.cellIndex];this.order=formatSortingOrder(table.config.sortInitialOrder);this.count=this.order;if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(checkHeaderOptionsSortingLocked(table,index))this.order=this.lockedOrder=checkHeaderOptionsSortingLocked(table,index);if(!this.sortDisabled){var $th=$(this).addClass(table.config.cssHeader);if(table.config.onRenderHeader)table.config.onRenderHeader.apply($th);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};var thead=t.getElementsByTagName('THEAD')[0];var trs=thead.getElementsByTagName('TR');for(var i=0;i<trs.length;i++){var cells=trs[i].cells;for(var j=0;j<cells.length;j++){var c=cells[j];var rowIndex=c.parentNode.rowIndex;var cellId=rowIndex+"-"+c.cellIndex; (…) [all...] |
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/ |
TranslatorManager.java | 33 * performing translation between text and braille cells. 205 public String backTranslate(byte[] cells) { 209 return localService.backTranslate(cells, mTable);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableRow.cpp | 81 // If the border width changes on a row, we need to make sure the cells in the row know to lay out again. 179 // We only ever need to repaint if our cells didn't, which menas that they didn't need 183 // parent table, and being mid-layout, that is invalid. Instead, we repaint our cells. 204 // FIXME: Find a better way to do this, e.g., need to repaint all the cells that we 264 // FIXME: Examine cells and repaint only the rect the image paints in.
|
/frameworks/support/v7/gridlayout/res/values/ |
attrs.xml | 116 The row boundary delimiting the top of the group of cells 122 boundaries delimiting the group of cells occupied by this view. 128 The column boundary delimiting the left of the group of cells 134 boundaries delimiting the group of cells occupied by this view. 140 Gravity specifies how a component should be placed in its group of cells.
|
/sdk/testapps/gridlayoutTest/v7-gridlayout/res/values/ |
attrs.xml | 127 The row boundary delimiting the top of the group of cells 133 boundaries delimiting the group of cells occupied by this view. 139 The column boundary delimiting the left of the group of cells 145 boundaries delimiting the group of cells occupied by this view. 151 Gravity specifies how a component should be placed in its group of cells.
|