Home
last modified time | relevance | path

Searched refs:nsheets (Results 1 – 25 of 29) sorted by relevance

12

/dports/math/scilab/scilab-6.1.1/scilab/modules/spreadsheet/sci_gateway/cpp/
H A Dsci_xls_open.cpp64 int nsheets = 0; in sci_xls_open() local
206 xls_open(&iErr, &iId, &sst , &ns, &Sheetnames, &Abspos, &nsheets); in sci_xls_open()
273 if (nsheets) in sci_xls_open()
276 types::String* pStrSheets = new types::String(1, nsheets); in sci_xls_open()
277 for (int i = 0; i < nsheets; i++) in sci_xls_open()
283 freeArrayOfString(Sheetnames, nsheets); in sci_xls_open()
288 types::Double* pDblAbsPos = new types::Double(1, nsheets); in sci_xls_open()
289 for (int i = 0; i < nsheets; i++) in sci_xls_open()
/dports/www/hotcrp/hotcrp-2.102/lib/
H A Dxlsx.php13 private $nsheets = 0; variable in XlsxGenerator
81 ++$this->nsheets;
82 $this->zip->add_as($t, "xl/worksheets/sheet" . $this->nsheets . ".xml");
95 for ($i = 1; $i <= $this->nsheets; ++$i)
122 for ($i = 1; $i <= $this->nsheets; ++$i)
135 for ($i = 1; $i <= $this->nsheets; ++$i)
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bpro/core/brad_pro/processes/
H A Dbrad_get_image_footprint_process.cxx48 unsigned int nsheets = footprint.num_sheets(); in brad_get_image_footprint_process() local
52 for (unsigned int s = 0; s < nsheets; ++s) { in brad_get_image_footprint_process()
73 pro.set_output_val<unsigned int>(i++, nsheets); in brad_get_image_footprint_process()
/dports/math/octave-forge-io/io-2.6.4/inst/private/
H A D__OCT_spsh_open__.m160 nsheets = numel (shtidx); variable
170 sh_names = cell (1, nsheets);
171 for ii=1:nsheets
179 xls.sheets.type = repmat (1, 1, nsheets); # Dummy sheet type for ods
180 xls.sheets.shId = [1 : nsheets]; # Dummy sheet nr enumeration
200 nsheets = numel (xls.sheets.sh_names); variable
201 xls.sheets.type = repmat (1, 1, nsheets);
202 xls.sheets.shId = [1 : nsheets];
H A D__OCT_getusedrange__.m31 nsheets = numel (spptr.sheets.sh_names); variable
32 if (ii > nsheets)
33 error ("getusedrange: sheet index (%d) out of range (1 - %d)", ii, nsheets);
/dports/math/gretl/gretl-2021d/plugin/
H A Dworkbook.c418 *bounds = g_realloc(*bounds, (book->nsheets + 1) * sizeof **bounds); in ms_excel_read_workbook()
419 (*bounds)[book->nsheets] = ans; in ms_excel_read_workbook()
420 book->nsheets += 1; in ms_excel_read_workbook()
570 if (book->nsheets == 0 || bounds == NULL) { in excel_book_get_info()
574 book->sheetnames = g_malloc(book->nsheets * sizeof *book->sheetnames); in excel_book_get_info()
577 book->byte_offsets = g_malloc(book->nsheets * sizeof *book->byte_offsets); in excel_book_get_info()
580 for (i=0; i<book->nsheets; i++) { in excel_book_get_info()
H A Dimport_common.c376 fprintf(stderr, "Found %d sheet%s\n", book->nsheets, in wbook_print_info()
377 (book->nsheets > 1)? "s" : ""); in wbook_print_info()
379 for (i=0; i<book->nsheets; i++) { in wbook_print_info()
393 for (i=0; i<book->nsheets; i++) { in wbook_free()
408 for (i=0; i<book->nsheets; i++) { in wbook_check_params()
419 if (book->selected < 0 || book->selected >= book->nsheets) { in wbook_check_params()
447 book->nsheets = 0; in wbook_init()
595 for (i=0; i<book->nsheets; i++) { in wsheet_menu_make_list()
H A Dgnumeric_import.c534 int ns = book->nsheets + 1; in wbook_record_name()
542 book->nsheets = ns; in wbook_record_name()
659 if (book->nsheets == 0) { in gnumeric_get_data()
666 if (book->nsheets > 1) { in gnumeric_get_data()
H A Dimporter.h61 int nsheets; member
H A Dods_import.c1105 book->nsheets = sheet->n_tables; in ods_book_init()
1195 if (book.nsheets > 1) { in ods_sheet_dialog()
H A Dxlsx_import.c1390 book->nsheets = xinfo->n_sheets; in xlsx_book_init()
1441 if (book.nsheets > 1) { in xlsx_sheet_dialog()
/dports/math/scilab/scilab-6.1.1/scilab/modules/spreadsheet/src/c/
H A Dxls.c41 static void getBoundsheets(int * fd, char ***Sheetnames, int** Abspos, int *nsheets, long long *cur…
393 …d xls_open(int *err, int *fd, char ***sst, int *ns, char ***Sheetnames, int** Abspos, int *nsheets) in xls_open() argument
418 *nsheets = 0; in xls_open()
479 getBoundsheets(fd, Sheetnames, Abspos, nsheets, &cur_pos, err); in xls_open()
480 for (k = 0; k < *nsheets; k++) in xls_open()
979 static void getBoundsheets(int * fd, char ***Sheetnames, int** Abspos, int *nsheets, long long *cur… in getBoundsheets() argument
1042 *nsheets = ns; in getBoundsheets()
H A Dxls.h30 … xls_open(int *err, int *fd, char ***sst, int *ns, char ***Sheetnames, int** Abspos, int *nsheets);
/dports/textproc/py-xlrd/xlrd-2.0.1/scripts/
H A Drunxlrd.py110 print("Number of data sheets: %d" % bk.nsheets)
155 for shx in range(bk.nsheets):
184 shxrange = range(bk.nsheets)
212 for shx in range(bk.nsheets):
/dports/textproc/py-xlrd/xlrd-2.0.1/xlrd/
H A Dbook.py108 bk.nsheets = len(bk._sheet_list)
109 if biff_version == 45 and bk.nsheets > 1:
114 bk.nsheets
282 nsheets = 0 variable in Book
440 for sheetx in xrange(self.nsheets):
457 for i in range(self.nsheets):
569 self.nsheets = 0
H A Dformula.py497 nsheets = len(bk._all_sheets_map)
498 if not(0 <= ref_first_sheetx <= ref_last_sheetx < nsheets):
501 print("--- first/last sheet not in range(%d)" % nsheets, file=bk.logfile)
517 nsheets = len(bk._all_sheets_map)
518 if not(0 <= ref_first_sheetx <= ref_last_sheetx < nsheets):
522 print("--- first/last sheet not in range(%d)" % nsheets, file=bk.logfile)
/dports/textproc/py-xlutils/xlutils-2.0.0/xlutils/tests/
H A Dfixtures.py50 self.nsheets = len(self._sheet_list)
H A Dtest_filter.py124 book.nsheets=2
875 for sheet_x in range(a.nsheets):
1180 self.assertEqual(a.nsheets,1)
/dports/textproc/py-xlrd/xlrd-2.0.1/
H A DREADME.rst44 print("The number of worksheets is {0}".format(book.nsheets))
H A DPKG-INFO52 print("The number of worksheets is {0}".format(book.nsheets))
/dports/textproc/py-xlutils/xlutils-2.0.0/xlutils/
H A Dmargins.py88 shxrange = range(book.nsheets)
/dports/graphics/argyllcms/Argyll_V1.9.2/spectro/
H A Dchartread.c820 int nsheets, sheet; /* Total sheets/current sheet (sheet == pass) */ in read_strips() local
830 for (nsheets = 0; pis[nsheets] != 0; nsheets++) { in read_strips()
831 if (pis[nsheets] > lpaist) in read_strips()
832 lpaist = pis[nsheets]; in read_strips()
891 printf("Please place sheet %d of %d on table, then\n",sheet, nsheets); in read_strips()
893 …rintf("\nPlease remove previous sheet, then place sheet %d of %d on table, then\n",sheet, nsheets); in read_strips()
1079 printf("Sheet %d of %d read OK\n",sheet, nsheets); in read_strips()
/dports/textproc/py-xlrd/xlrd-2.0.1/xlrd.egg-info/
H A DPKG-INFO52 print("The number of worksheets is {0}".format(book.nsheets))
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bpro/core/pyscripts/
H A Dbrad_adaptor.py399 nsheets = batch.get_output_unsigned(id)
413 for i in range(nsheets):
/dports/math/gnumeric/gnumeric-1.12.50/plugins/fn-info/
H A Dfunctions.c1353 int nsheets = 1; in gnumeric_countblank() local
1363 nsheets = 1 + abs (end_sheet->index_in_wb - in gnumeric_countblank()
1367 count *= nsheets; in gnumeric_countblank()

12