Searched defs:Row (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor_table.h37 struct Row { struct in class:predictors::AutocompleteActionPredictorTable
44 Row();
47 Row(const Id& id,
53 Row(const Row& row);
62 typedef std::vector<Row> Rows;
65 void GetRow(const Row::Id& id, Row* row);
67 void AddRow(const Row& row);
68 void UpdateRow(const Row
[all...]
H A Dautocomplete_action_predictor_table.cc24 const predictors::AutocompleteActionPredictorTable::Row& row,
36 predictors::AutocompleteActionPredictorTable::Row* row) {
52 AutocompleteActionPredictorTable::Row::Row() function in class:predictors::AutocompleteActionPredictorTable::Row
57 AutocompleteActionPredictorTable::Row::Row(const Row::Id& id, function in class:predictors::AutocompleteActionPredictorTable::Row
69 AutocompleteActionPredictorTable::Row::Row(const Row function in class:predictors::AutocompleteActionPredictorTable::Row
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/js/photo/
H A Dmosaic_mode.js1306 * @return {Mosaic.Row} The row containing the tile with a given index.
1325 this.newRow_ = new Mosaic.Row(this.getNextTileIndex());
1464 Mosaic.Row = function(firstTileIndex) {
1472 Mosaic.Row.prototype.add = function(tile) {
1480 Mosaic.Row.prototype.getTiles = function() { return this.tiles_ };
1487 Mosaic.Row.prototype.getTileByIndex = function(index) {
1497 Mosaic.Row.prototype.getTileCount = function() { return this.tiles_.length };
1503 Mosaic.Row.prototype.hasTile = function(index) {
1512 Mosaic.Row.prototype.coversY = function(y) {
1519 Mosaic.Row
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp13 constexpr Board addQueen(int Row, int Col) { argument
14 return Board(State | ((uint64_t)Row << (Col * 4)));
19 constexpr bool ok(int Row, int Col) { argument
20 return okRecurse(Row, Col, 0);
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) { argument
24 getQueenRow(CheckCol) == Row ? false :
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false :
26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false :
27 okRecurse(Row, Col, CheckCol + 1);
29 constexpr bool at(int Row, in argument
37 tryBoard(const Board &Try, int N, int Col, int Row, const Board &B) argument
41 buildBoardScan(int N, int Col, int Row, const Board &B) argument
57 check(const char *p, int Row, int Col) argument
[all...]
/external/webrtc/src/system_wrappers/source/
H A Ddata_log.cc31 // A Row contains cells, which are indexed by the column names as std::string.
33 class Row { class in namespace:webrtc
35 Row();
36 ~Row();
95 typedef std::list<Row*> RowList;
101 Row* current_row_;
107 Row::Row() function in class:webrtc::Row
112 Row::~Row() {
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.cpp38 struct Row { struct in class:GrRectanizerPow2
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
86 Row* row = &fRows[HeightToRowIndex(height)];
99 // that row is now "full", so retarget our Row record for
H A DGrRectanizer_fifo.cpp38 struct Row { struct in class:GrRectanizerFIFO
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
86 Row* row = &fRows[HeightToRowIndex(height)];
99 // that row is now "full", so retarget our Row record for
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java56 final Row row = new Row (true);
64 final Row row = new Row (false);
105 private static class Row extends IElement.Factory.ElementImpl class in class:HTMLTable
116 Row (final boolean th) method in class:HTMLTable.Row
/external/skia/src/gpu/
H A DGrRectanizer.cpp38 struct Row { struct in class:GrRectanizerPow2
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
86 Row* row = &fRows[HeightToRowIndex(height)];
99 // that row is now "full", so retarget our Row record for
H A DGrRectanizer_fifo.cpp38 struct Row { struct in class:GrRectanizerFIFO
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
86 Row* row = &fRows[HeightToRowIndex(height)];
99 // that row is now "full", so retarget our Row record for
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java41 private List<Row> rows = new ArrayList<Row>();
91 rows.add(new Row(fieldList));
104 * Adds a new <code>Row</code>.
107 public void addRow(Row row){
125 public Iterator<Row> getRows() {
126 return Collections.unmodifiableList(new ArrayList<Row>(rows)).iterator();
221 public static class Row { class in class:ReportedData
224 public Row(List<Field> fields) { method in class:ReportedData.Row
/external/chromium/chrome/browser/resources/keyboard/
H A Dmain.js425 function Row(position, keys) { class
432 Row.prototype = {
567 * @type {Array.<Row>}
656 allRows.push(new Row(i, KEYS[i]));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.h110 typedef Vector<CellStruct> Row; typedef in class:WebCore::FINAL
119 Row row;
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java361 checkArgument(rowIndex != null, "Row %s not in %s", rowKey, rowList);
559 checkArgument(rowIndex != null, "Row %s not in %s", rowKey, rowList);
675 return (rowIndex == null) ? ImmutableMap.<C, V>of() : new Row(rowIndex);
678 private class Row extends AbstractMap<C, V> { class in class:ArrayTable
681 Row(int rowIndex) { method in class:ArrayTable.Row
773 return (rowIndex == null) ? null : new Row(rowIndex);
794 new Row(index));
H A DStandardTable.java336 return new Row(rowKey);
339 class Row extends AbstractMap<C, V> { class in class:StandardTable
342 Row(R rowKey) { method in class:StandardTable.Row
425 return Row.this;
446 return Row.this;
/external/llvm/lib/DebugInfo/
H A DDWARFContext.cpp357 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; local
358 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
361 Line = Row.Line;
362 Column = Row.Column;
445 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; local
447 getFileNameForCompileUnit(CU, LineTable, Row.File,
449 Lines.push_back(std::make_pair(Row.Address,
451 FuncNameRef, Row
[all...]
H A DDWARFDebugLine.h87 struct Row { struct in class:llvm::DWARFDebugLine
88 Row(bool default_is_stmt = false) { reset(default_is_stmt); } function in struct:llvm::DWARFDebugLine::Row
94 static bool orderByAddress(const Row& LHS, const Row& RHS) {
167 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
194 typedef std::vector<Row> RowVector;
202 struct State : public Row, public Sequence, public LineTable {
215 Row::reset(Prologue.DefaultIsStmt);
/external/opencv/cxcore/include/
H A Dcvwimage.h88 // float* row = im->Row(r);
209 inline const T* Row(int r) const { function in class:cv::WImage
213 inline T* Row(int r) { function in class:cv::WImage
/external/chromium_org/ui/views/layout/
H A Dgrid_layout.cc262 // Row -------------------------------------------------------------
264 class Row : public LayoutElement { class in namespace:views
266 Row(bool fixed_height, int height, float resize_percent, function in class:views::Row
276 virtual ~Row() {}
311 DISALLOW_COPY_AND_ASSIGN(Row);
724 AddRow(new Row(false, 0, vertical_resize, column_set));
728 AddRow(new Row(true, pixel_count, vertical_resize, NULL));
927 Row* row = rows_[view_state->start_row];
995 void GridLayout::AddRow(Row* row) {
/external/chromium_org/third_party/icu/source/common/
H A Duresdata.c636 typedef struct Row { struct
638 } Row; typedef in typeref:struct:Row
643 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex,
644 keyChars+((const Row *)right)->keyIndex);
649 Row *rows;
842 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
956 Row rows[STACK_ROW_CAPACITY];
1096 tempTable.rows=(Row *)uprv_malloc(maxTableLength*sizeof(Row)+maxTableLength*4);
/external/icu4c/common/
H A Duresdata.c655 typedef struct Row { struct
657 } Row; typedef in typeref:struct:Row
662 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex,
663 keyChars+((const Row *)right)->keyIndex);
668 Row *rows;
861 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
975 Row rows[STACK_ROW_CAPACITY];
1115 tempTable.rows=(Row *)uprv_malloc(maxTableLength*sizeof(Row)+maxTableLength*4);
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h244 int Row() const { return location.row + 1; } function in class:TiXmlBase
245 int Column() const { return location.col + 1; } ///< See Row()
1475 @sa SetTabSize, Row, Column
1502 @sa Row, Column
/external/tinyxml/
H A Dtinyxml.h198 int Row() const { return location.row + 1; } function in class:TiXmlBase
199 int Column() const { return location.col + 1; } ///< See Row()
1297 @sa SetTabSize, Row, Column
1324 @sa Row, Column
/external/chromium_org/third_party/skia/src/core/
H A DSkAAClip.cpp878 struct Row { struct in class:SkAAClip::Builder
883 SkTDArray<Row> fRows;
884 Row* fCurrRow;
898 Row* row = fRows.begin();
899 Row* stop = fRows.end();
916 Row* row = fCurrRow;
1004 const Row* row = fRows.begin();
1005 const Row* stop = fRows.end();
1058 const Row& row = fRows[y];
1079 const Row
[all...]
/external/skia/src/core/
H A DSkAAClip.cpp878 struct Row { struct in class:SkAAClip::Builder
883 SkTDArray<Row> fRows;
884 Row* fCurrRow;
898 Row* row = fRows.begin();
899 Row* stop = fRows.end();
916 Row* row = fCurrRow;
1004 const Row* row = fRows.begin();
1005 const Row* stop = fRows.end();
1058 const Row& row = fRows[y];
1079 const Row
[all...]

Completed in 861 milliseconds

12