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

12 3 4 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
detect_structure.cc 54 if (row.cells.front().block_id >= num_eliminate_blocks) {
57 const int e_block_id = row.cells.front().block_id;
81 if (row.cells.size() > 1) {
82 const int f_block_id = row.cells[1].block_id;
86 for (int c = 1; c < row.cells.size(); ++c) {
87 if (*f_block_size != bs.cols[row.cells[c].block_id].size) {
90 << bs.cols[row.cells[c].block_id].size;
schur_complement_solver.cc 194 int e_block_id = bs->rows[r].cells.front().block_id;
204 if (row.cells.front().block_id != e_block_id) {
210 for (int c = 1; c < row.cells.size(); ++c) {
211 const Cell& cell = row.cells[c];
229 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
230 for (int i = 0; i < row.cells.size(); ++i) {
231 int r_block1_id = row.cells[i].block_id - num_eliminate_blocks;
232 for (int j = 0; j < row.cells.size(); ++j) {
233 int r_block2_id = row.cells[j].block_id - num_eliminate_blocks;
visibility.cc 60 const vector<Cell>& cells = block_structure.rows[i].cells; local
61 int block_id = cells[0].block_id;
67 for (int j = 1; j < cells.size(); ++j) {
68 int camera_block_id = cells[j].block_id - num_eliminate_blocks;
block_random_access_sparse_matrix.h 57 // <row_block_id, col_block_id> pairs to identify the non-zero cells
63 // modifying any cells when the matrix is being destroyed.
100 // The underlying matrix object which actually stores the cells.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.cpp 61 // We ignore height settings on rowspan cells.
120 // Preventively invalidate our cells as we may be re-inserted into
243 c.cells.append(cell);
244 // If cells overlap then we take the slow path for painting.
245 if (c.cells.size() > 1)
268 if (rowSpanCell.cells.isEmpty())
271 if (rowSpanCell.cells[0]->rowSpan() == 1)
407 // Sorting bigger height cell first if cells are at same index with same span because we will skip smaller
434 if (rowSpanCell.cells.size()) {
435 RenderTableCell* cell = rowSpanCell.cells[0]
1006 Vector<RenderTableCell*, 1>& cells = cellAt(r, c).cells; local
1518 Vector<RenderTableCell*> cells; local
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
braille_display_private.idl 47 // Number of braille cells on the currently connected display.
62 // will either be clipped or padded with blank cells on the right.
63 static void writeDots(ArrayBuffer cells);
  /external/chromium_org/chrome/browser/extensions/api/braille_display_private/
braille_controller.h 27 virtual void WriteDots(const std::string& cells) = 0;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpan.java 25 * Exercise table layout with cells spanning.
FixedWidth.java 25 * Exercise table layout with cells having a fixed width and height.
HorizontalGravity.java 25 * Exercise table layout with cells using a horizontal gravity.
VerticalGravity.java 25 * Exercise table layout with cells using a vertical gravity.
Weight.java 25 * Exercise table layout with cells having a weight.
  /external/chromium_org/chrome/common/extensions/docs/server2/
subversion_file_system.py 53 cells = row.getElementsByTagName('td')
64 if len(cells) == 2 and _InnerText(cells[0]) == 'Directory revision:':
65 links = cells[1].getElementsByTagName('a')
69 ' elements, instead %s' % _InnerText(cells[1]))
78 # The version of each file is a list of rows with 5 cells: name, version,
81 if len(cells) != 5:
83 name_element, version_element, _, __, ___ = cells
  /frameworks/base/docs/html/guide/topics/ui/layout/
grid.jd 28 or cells. The table will have as many columns as the row with the most cells. A table can leave
29 cells empty, but cells cannot span columns, as they can in HTML.</p>
32 Each row has zero or more cells, each of which is defined by any kind of other View. So, the cells of a row may be
35 <p>The following sample layout has two rows and two cells in each. The accompanying screenshot shows the
163 but for the cells, you can use any kind of {@link android.view.View} element. In this example, a
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
sonet.h 17 __HANDLE_ITEM(tx_cells); /* cells sent */ \
18 __HANDLE_ITEM(rx_cells); /* cells received */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
sonet.h 17 __HANDLE_ITEM(tx_cells); /* cells sent */ \
18 __HANDLE_ITEM(rx_cells); /* cells received */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
sonet.h 17 __HANDLE_ITEM(tx_cells); /* cells sent */ \
18 __HANDLE_ITEM(rx_cells); /* cells received */
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_matrix.mm 31 // Cells pack with no spacing.
51 NSArray* cells = [self cells];
52 const NSUInteger count = [cells count];
54 if ([[cells objectAtIndex:i] isHighlighted]) {
168 for (NSCell* cell in [self cells]) {
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 128 // cells have borders, or use attributes like headers, abbr, scope or axis
151 // check enough of the cells to find if the table matches our criteria
154 // 2) at least half of cells have borders (or)
155 // 3) at least half of cells have different bg colors than the table, and there is cell spacing
205 // If the empty-cells style is set, we'll call it a data table.
215 // cells have a bottom border, for example.
232 // If we've found 10 "good" cells, we don't need to keep searching.
257 // if there is less than two valid cells, it's not a data table
261 // half of the cells had borders, it's a data table
432 void AXTable::cells(AXObject::AccessibilityChildrenVector& cells function in class:WebCore::AXTable
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
RegularImmutableTableTest.java 29 private static final ImmutableSet<Cell<Character, Integer, String>> CELLS =
42 new SparseImmutableTable<Character, Integer, String>(CELLS, ROW_SPACE,
46 new DenseImmutableTable<Character, Integer, String>(CELLS, ROW_SPACE,
58 assertEquals(CELLS, testInstance.cellSet());
95 assertTrue(RegularImmutableTable.forCells(CELLS) instanceof
  /external/iproute2/tc/
tc_core.c 70 * The align to ATM cells is used for determining the (ATM) SAR
81 int linksize, cells; local
82 cells = size / ATM_CELL_PAYLOAD;
84 cells++;
86 linksize = cells * ATM_CELL_SIZE; /* Use full cell size to add ATM tax */
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
info.js 13 function renderCells(cells, data) {
14 for (var i = 0; i < cells.length; i++) {
15 var cell = cells[i];
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
BrailleDisplayProperties.java 46 * Returns the number of cells on the main display intended for display of
54 * Returns the number of status cells that are separated from the main
56 * status cells.
  /external/iproute2/include/linux/
atm.h 43 #define ATM_AAL0 13 /* "raw" ATM cells */
137 int max_pcr; /* maximum PCR in cells per second */
138 int pcr; /* desired PCR in cells per second */
139 int min_pcr; /* minimum PCR in cells per second */
152 unsigned int nrm :3; /* Max # of Cells for each forward RM cell (3-bit) */
153 unsigned int trm :3; /* Time between forward RM cells (3-bit) */
  /external/kernel-headers/original/linux/
atm.h 46 #define ATM_AAL0 13 /* "raw" ATM cells */
140 int max_pcr; /* maximum PCR in cells per second */
141 int pcr; /* desired PCR in cells per second */
142 int min_pcr; /* minimum PCR in cells per second */
155 unsigned int nrm :3; /* Max # of Cells for each forward RM cell (3-bit) */
156 unsigned int trm :3; /* Time between forward RM cells (3-bit) */

Completed in 866 milliseconds

12 3 4 5 6 7 8 91011>>