Home
last modified time | relevance | path

Searched refs:cell_cols (Results 1 – 25 of 47) sorted by relevance

12

/dports/textproc/R-cran-cellranger/cellranger/man/
H A Dcell_cols.Rd3 \name{cell_cols}
4 \alias{cell_cols}
7 cell_cols(x)
26 cell_cols(c(NA, 3))
27 cell_cols(c(7, NA))
28 cell_cols(4:16)
29 cell_cols(c(3, NA, 10))
31 cell_cols("C:G")
32 cell_cols(c("B", NA))
33 cell_cols(LETTERS)
/dports/textproc/R-cran-cellranger/cellranger/tests/testthat/
H A Dtest-cell-specification.R113 expect_identical(cell_cols(c(NA, NA)), cell_limits())
114 expect_identical(cell_cols(c(NA, 3)), cell_limits(lr = c(NA, 3)))
115 expect_identical(cell_cols(c(7, NA)), cell_limits(c(NA, 7)))
116 expect_identical(cell_cols(c(3, NA, 10)), cell_limits(c(NA, 3), c(NA, 10)))
117 expect_identical(cell_cols(c(10, NA, 3)), cell_limits(c(NA, 3), c(NA, 10)))
118 expect_identical(cell_cols(4:16), cell_limits(c(NA, 4), c(NA, 16)))
119 expect_error(cell_cols(c(7, 2)))
121 expect_identical(cell_cols("B:D"), cell_limits(c(NA, 2), c(NA, 4)))
123 expect_identical(cell_cols(c("C", NA)), cell_limits(c(NA, 3)))
124 expect_error(cell_cols("Z:M"))
[all …]
/dports/textproc/R-cran-readxl/readxl/tests/testthat/
H A Dtest-geometry.R157 xls <- read_excel(test_sheet("geometry.xls"), range = cell_cols(2:3))
158 xlsx <- read_excel(test_sheet("geometry.xlsx"), range = cell_cols(2:3))
163 xls <- read_excel(test_sheet("geometry.xls"), range = cell_cols(2:5))
164 xlsx <- read_excel(test_sheet("geometry.xlsx"), range = cell_cols(2:5))
169 xls <- read_excel(test_sheet("geometry.xls"), range = cell_cols(1:3))
170 xlsx <- read_excel(test_sheet("geometry.xlsx"), range = cell_cols(1:3))
175 xls <- read_excel(test_sheet("geometry.xls"), range = cell_cols(1:5))
176 xlsx <- read_excel(test_sheet("geometry.xlsx"), range = cell_cols(1:5))
181 xls <- read_excel(test_sheet("geometry.xls"), range = cell_cols(c(3, NA)))
182 xlsx <- read_excel(test_sheet("geometry.xlsx"), range = cell_cols(c(3, NA)))
/dports/textproc/R-cran-readxl/readxl/man/
H A Dcell-specification.Rd7 \alias{cell_cols}
41 read_excel(path, range = cell_cols("C:D"))
42 read_excel(path, range = cell_cols(2))
47 read_excel(path, range = cell_cols(c("C", NA)))
48 read_excel(path, range = cell_cols(c(NA, 2)))
64 \item \code{\link[cellranger:cell_cols]{cellranger::cell_cols()}}
/dports/textproc/R-cran-openxlsx/openxlsx/src/
H A Dhelper_functions.cpp22 IntegerVector cell_cols = sheet_data.field("cols"); in calc_column_widths() local
47 LogicalVector notNA = !is_na(match(cell_cols, autoColumns)); in calc_column_widths()
48 cell_cols = cell_cols[notNA]; in calc_column_widths()
51 IntegerVector unique_cell_cols = sort_unique(cell_cols); in calc_column_widths()
59 NumericVector wTmp = cell_n_character[cell_cols == unique_cell_cols[i]]; in calc_column_widths()
60 NumericVector thisColWidths = widths[cell_cols == unique_cell_cols[i]]; in calc_column_widths()
/dports/devel/upp/upp/bazaar/plugin/gdal/frmts/blx/
H A Dblx.c989 BLXnotice2("Cell grid %dx%d\n", ctx->cell_cols, ctx->cell_rows); in blxprintinfo()
1012 put_int32(ctx, ctx->cell_xsize*ctx->cell_cols, &hptr); // 4 in blx_generate_header()
1018 put_short(ctx, (short)ctx->cell_cols, &hptr); // 16 in blx_generate_header()
1062 if((cellrow >= ctx->cell_rows) || (cellcol >= ctx->cell_cols)) { in blx_writecell()
1133 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1178 ctx->cell_cols = get_short(ctx, &hptr); in blxopen()
1180 if (ctx->cell_cols <= 0 || ctx->cell_cols > 10000 || in blxopen()
1204 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1210 ci = &ctx->cellindex[i*ctx->cell_cols + j]; in blxopen()
1239 for(j=0;j<ctx->cell_cols;j++) { in blxclose()
[all …]
H A Dblxdataset.cpp351 ctx->cell_cols = nXSize / ctx->cell_xsize; in BLXCreateCopy()
384 for(int j=0; j < ctx->cell_cols; j++) { in BLXCreateCopy()
400 …if ( ! pfnProgress( 1.0 * (i * ctx->cell_cols + j) / (ctx->cell_rows * ctx->cell_cols), NULL, pPro… in BLXCreateCopy()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/blx/
H A Dblx.c1007 BLXnotice2("Cell grid %dx%d\n", ctx->cell_cols, ctx->cell_rows); in blxprintinfo()
1030 put_int32(ctx, ctx->cell_xsize*ctx->cell_cols, &hptr); // 4 in blx_generate_header()
1036 put_short(ctx, (short)ctx->cell_cols, &hptr); // 16 in blx_generate_header()
1080 if((cellrow >= ctx->cell_rows) || (cellcol >= ctx->cell_cols)) { in blx_writecell()
1151 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1198 ctx->cell_cols = get_short(ctx, &hptr); in blxopen()
1200 if (ctx->cell_cols <= 0 || ctx->cell_cols > 10000 || in blxopen()
1224 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1230 ci = &ctx->cellindex[i*ctx->cell_cols + j]; in blxopen()
1262 for(j=0;j<ctx->cell_cols;j++) { in blxclose()
[all …]
H A Dblxdataset.cpp349 ctx->cell_cols = nXSize / ctx->cell_xsize; in BLXCreateCopy()
381 for(int j=0; j < ctx->cell_cols; j++) { in BLXCreateCopy()
396 …if ( ! pfnProgress( 1.0 * (i * ctx->cell_cols + j) / (ctx->cell_rows * ctx->cell_cols), nullptr, p… in BLXCreateCopy()
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/blx/
H A Dblx.c1007 BLXnotice2("Cell grid %dx%d\n", ctx->cell_cols, ctx->cell_rows); in blxprintinfo()
1030 put_int32(ctx, ctx->cell_xsize*ctx->cell_cols, &hptr); // 4 in blx_generate_header()
1036 put_short(ctx, (short)ctx->cell_cols, &hptr); // 16 in blx_generate_header()
1080 if((cellrow >= ctx->cell_rows) || (cellcol >= ctx->cell_cols)) { in blx_writecell()
1151 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1198 ctx->cell_cols = get_short(ctx, &hptr); in blxopen()
1200 if (ctx->cell_cols <= 0 || ctx->cell_cols > 10000 || in blxopen()
1224 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1230 ci = &ctx->cellindex[i*ctx->cell_cols + j]; in blxopen()
1262 for(j=0;j<ctx->cell_cols;j++) { in blxclose()
[all …]
H A Dblxdataset.cpp349 ctx->cell_cols = nXSize / ctx->cell_xsize; in BLXCreateCopy()
381 for(int j=0; j < ctx->cell_cols; j++) { in BLXCreateCopy()
396 …if ( ! pfnProgress( 1.0 * (i * ctx->cell_cols + j) / (ctx->cell_rows * ctx->cell_cols), nullptr, p… in BLXCreateCopy()
/dports/graphics/gdal/gdal-3.3.3/frmts/blx/
H A Dblx.c1007 BLXnotice2("Cell grid %dx%d\n", ctx->cell_cols, ctx->cell_rows); in blxprintinfo()
1030 put_int32(ctx, ctx->cell_xsize*ctx->cell_cols, &hptr); // 4 in blx_generate_header()
1036 put_short(ctx, (short)ctx->cell_cols, &hptr); // 16 in blx_generate_header()
1080 if((cellrow >= ctx->cell_rows) || (cellcol >= ctx->cell_cols)) { in blx_writecell()
1151 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1198 ctx->cell_cols = get_short(ctx, &hptr); in blxopen()
1200 if (ctx->cell_cols <= 0 || ctx->cell_cols > 10000 || in blxopen()
1224 for(j=0;j<ctx->cell_cols;j++) { in blxopen()
1230 ci = &ctx->cellindex[i*ctx->cell_cols + j]; in blxopen()
1262 for(j=0;j<ctx->cell_cols;j++) { in blxclose()
[all …]
H A Dblxdataset.cpp349 ctx->cell_cols = nXSize / ctx->cell_xsize; in BLXCreateCopy()
381 for(int j=0; j < ctx->cell_cols; j++) { in BLXCreateCopy()
396 …if ( ! pfnProgress( 1.0 * (i * ctx->cell_cols + j) / (ctx->cell_rows * ctx->cell_cols), nullptr, p… in BLXCreateCopy()
/dports/textproc/R-cran-readxl/readxl/
H A DNAMESPACE4 export(cell_cols)
18 importFrom(cellranger,cell_cols)
/dports/x11/xfd/xfd-1.1.3/
H A Dgrid.c74 Offset(cell_cols), XtRImmediate, (XtPointer) 0 },
327 *ncolsp = fgw->fontgrid.cell_cols; in GetFontGridCellDimensions()
584 if (reqfg->fontgrid.cell_cols <= 0) in Initialize()
585 newfg->fontgrid.cell_cols = 16; in Initialize()
595 newfg->fontgrid.cell_cols) + 1; in Initialize()
610 newfg->fontgrid.cell_cols + in Initialize()
612 (newfg->fontgrid.cell_cols + 1)); in Initialize()
629 (newfg->fontgrid.cell_cols * in Initialize()
728 int tcols = p->cell_cols; in paint_grid()
983 if (x > (fgw->fontgrid.cell_cols * cw)) { in Notify()
[all …]
H A DgridP.h45 int cell_cols, cell_rows; /* number of cells */ member
108 / (fgw)->fontgrid.cell_cols \
/dports/textproc/R-cran-openxlsx/openxlsx/R/
H A DreadWorkbook.R404 cell_cols <- convert_from_excel_ref(x = cell_info$r) functionVar
416 keep <- keep & (cell_cols %in% cols)
423 cell_cols <- cell_cols[keep]
524 cols_in = cell_cols,
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/gqb/
H A DgqbGridRestTable.cpp202 int cell_rows, cell_cols; in Draw() local
203 attr.GetSize(&cell_rows, &cell_cols); in Draw()
279 int cell_rows, cell_cols; in Draw() local
280 attr.GetSize(&cell_rows, &cell_cols); in Draw()
/dports/textproc/R-cran-readxl/readxl/inst/doc/
H A Dsheet-geometry.Rmd39 read_excel("yo.xlsx", range = cell_cols("B:D"))
152 read_excel(..., range = cell_cols(1:26))
154 read_excel(..., range = cell_cols(c(1, 26)))
155 read_excel(..., range = cell_cols("A:Z"))
156 read_excel(..., range = cell_cols(LETTERS))
157 read_excel(..., range = cell_cols(c("A", "Z"))
/dports/textproc/R-cran-readxl/readxl/vignettes/
H A Dsheet-geometry.Rmd39 read_excel("yo.xlsx", range = cell_cols("B:D"))
152 read_excel(..., range = cell_cols(1:26))
154 read_excel(..., range = cell_cols(c(1, 26)))
155 read_excel(..., range = cell_cols("A:Z"))
156 read_excel(..., range = cell_cols(LETTERS))
157 read_excel(..., range = cell_cols(c("A", "Z"))
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/generic/
H A Dgridctrl.cpp544 int cell_rows, cell_cols; in Draw() local
545 attr.GetSize( &cell_rows, &cell_cols ); // shouldn't get here if <= 0 in Draw()
549 for (i = col+cell_cols; i < cols; i++) in Draw()
579 overflowCols = i - col - cell_cols + 1; in Draw()
590 int col_end = col + cell_cols + overflowCols; in Draw()
593 for (int i = col + cell_cols; i <= col_end; i++) in Draw()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/generic/
H A Dgridctrl.cpp544 int cell_rows, cell_cols; in Draw() local
545 attr.GetSize( &cell_rows, &cell_cols ); // shouldn't get here if <= 0 in Draw()
549 for (i = col+cell_cols; i < cols; i++) in Draw()
579 overflowCols = i - col - cell_cols + 1; in Draw()
590 int col_end = col + cell_cols + overflowCols; in Draw()
593 for (int i = col + cell_cols; i <= col_end; i++) in Draw()
/dports/textproc/R-cran-cellranger/cellranger/R/
H A Dcell-rows-cell-cols.R65 cell_cols <- function(x) { function
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/generic/
H A Dgridctrl.cpp649 int cell_rows, cell_cols; in Draw() local
650 attr.GetSize( &cell_rows, &cell_cols ); // shouldn't get here if <= 0 in Draw()
654 for (i = col+cell_cols; i < cols; i++) in Draw()
684 overflowCols = i - col - cell_cols + 1; in Draw()
695 int col_end = col + cell_cols + overflowCols; in Draw()
698 for (int i = col + cell_cols; i <= col_end; i++) in Draw()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/generic/
H A Dgrid.cpp1988 int cell_rows, cell_cols; in Draw() local
6071 int cell_rows, cell_cols; in ProcessGridCellMouseEvent() local
7596 int row, col, cell_rows, cell_cols; in DrawGridCellArea() local
7987 int i, j, cell_rows, cell_cols; in DrawAllGridLines() local
8015 int i, j, cell_rows, cell_cols; in DrawAllGridLines() local
8543 int cell_rows, cell_cols; in ShowCellEditControl() local
8548 col += cell_cols; in ShowCellEditControl()
8945 int i, cell_rows, cell_cols; in CellToRect() local
8951 if (cell_cols < 0) in CellToRect()
8952 col += cell_cols; in CellToRect()
[all …]

12