Home
last modified time | relevance | path

Searched defs:csv (Results 1 – 25 of 1261) sorted by relevance

12345678910>>...51

/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/csv/
H A Dchunker_test.cc32 namespace csv { namespace
123 auto csv = MakeCSVData({"\n"}); in TEST_P() local
128 auto csv = MakeCSVData({"\n\n"}); in TEST_P() local
133 auto csv = MakeCSVData({",\n"}); in TEST_P() local
138 auto csv = MakeCSVData({",\n,\n"}); in TEST_P() local
156 auto csv = MakeCSVData({"1,\",3,\",5\n"}); in TEST_P() local
171 auto csv = MakeCSVData({"a,\"c \n d\",e\n"}); in TEST_P() local
204 auto csv = MakeCSVData({"\"\"\n", "a\n"}); in TEST_P() local
209 auto csv = MakeCSVData({",\"\"\n", "a\n"}); in TEST_P() local
214 auto csv = MakeCSVData({"\"\",\n", "a\n"}); in TEST_P() local
[all …]
H A Dparser_test.cc33 namespace csv { namespace
253 auto csv = MakeCSVData({""}); in TEST() local
258 auto csv = MakeCSVData({"\n"}); in TEST() local
266 auto csv = MakeCSVData({",\n"}); in TEST() local
273 auto csv = MakeCSVData({",\n,\n"}); in TEST() local
454 auto csv = MakeCSVData({"\"\"\n"}); in TEST() local
461 auto csv = MakeCSVData({",\"\"\n"}); in TEST() local
468 auto csv = MakeCSVData({"\"\",\n"}); in TEST() local
549 auto csv = MakeCSVData({"a\n"}); in TEST() local
567 auto csv = MakeCSVData({"a\n"}); in TEST() local
[all …]
H A Dparser_benchmark.cc31 namespace csv { namespace
78 const std::string& csv, ParseOptions options) { in BenchmarkCSVChunking()
92 auto csv = BuildCSVData(quoted_example); in ChunkCSVQuotedBlock() local
102 auto csv = BuildCSVData(escaped_example); in ChunkCSVEscapedBlock() local
113 auto csv = BuildCSVData(escaped_example); in ChunkCSVNoNewlinesBlock() local
126 const std::string& csv, int32_t num_rows, in BenchmarkCSVParsing()
155 auto csv = BuildCSVData(example); in BenchmarkCSVParsing() local
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/csv/
H A Dchunker_test.cc32 namespace csv { namespace
93 auto csv = MakeCSVData({"\n"}); in TEST_P() local
98 auto csv = MakeCSVData({"\n\n"}); in TEST_P() local
103 auto csv = MakeCSVData({",\n"}); in TEST_P() local
108 auto csv = MakeCSVData({",\n,\n"}); in TEST_P() local
126 auto csv = MakeCSVData({"1,\",3,\",5\n"}); in TEST_P() local
141 auto csv = MakeCSVData({"a,\"c \n d\",e\n"}); in TEST_P() local
174 auto csv = MakeCSVData({"\"\"\n", "a\n"}); in TEST_P() local
179 auto csv = MakeCSVData({",\"\"\n", "a\n"}); in TEST_P() local
184 auto csv = MakeCSVData({"\"\",\n", "a\n"}); in TEST_P() local
[all …]
H A Dparser_test.cc32 namespace csv { namespace
252 auto csv = MakeCSVData({""}); in TEST() local
257 auto csv = MakeCSVData({"\n"}); in TEST() local
265 auto csv = MakeCSVData({",\n"}); in TEST() local
272 auto csv = MakeCSVData({",\n,\n"}); in TEST() local
453 auto csv = MakeCSVData({"\"\"\n"}); in TEST() local
460 auto csv = MakeCSVData({",\"\"\n"}); in TEST() local
467 auto csv = MakeCSVData({"\"\",\n"}); in TEST() local
540 auto csv = MakeCSVData({"a,b\nc\n"}); in TEST() local
546 auto csv = MakeCSVData({"a\n"}); in TEST() local
[all …]
H A Dparser_benchmark.cc31 namespace csv { namespace
78 const std::string& csv, ParseOptions options) { in BenchmarkCSVChunking()
92 auto csv = BuildCSVData(quoted_example); in ChunkCSVQuotedBlock() local
102 auto csv = BuildCSVData(escaped_example); in ChunkCSVEscapedBlock() local
113 auto csv = BuildCSVData(escaped_example); in ChunkCSVNoNewlinesBlock() local
126 const std::string& csv, int32_t num_rows, in BenchmarkCSVParsing()
155 auto csv = BuildCSVData(example); in BenchmarkCSVParsing() local
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/csv/
H A Dchunker_test.cc32 namespace csv { namespace
93 auto csv = MakeCSVData({"\n"}); in TEST_P() local
98 auto csv = MakeCSVData({"\n\n"}); in TEST_P() local
103 auto csv = MakeCSVData({",\n"}); in TEST_P() local
108 auto csv = MakeCSVData({",\n,\n"}); in TEST_P() local
126 auto csv = MakeCSVData({"1,\",3,\",5\n"}); in TEST_P() local
141 auto csv = MakeCSVData({"a,\"c \n d\",e\n"}); in TEST_P() local
174 auto csv = MakeCSVData({"\"\"\n", "a\n"}); in TEST_P() local
179 auto csv = MakeCSVData({",\"\"\n", "a\n"}); in TEST_P() local
184 auto csv = MakeCSVData({"\"\",\n", "a\n"}); in TEST_P() local
[all …]
H A Dparser_test.cc32 namespace csv { namespace
252 auto csv = MakeCSVData({""}); in TEST() local
257 auto csv = MakeCSVData({"\n"}); in TEST() local
265 auto csv = MakeCSVData({",\n"}); in TEST() local
272 auto csv = MakeCSVData({",\n,\n"}); in TEST() local
453 auto csv = MakeCSVData({"\"\"\n"}); in TEST() local
460 auto csv = MakeCSVData({",\"\"\n"}); in TEST() local
467 auto csv = MakeCSVData({"\"\",\n"}); in TEST() local
540 auto csv = MakeCSVData({"a,b\nc\n"}); in TEST() local
546 auto csv = MakeCSVData({"a\n"}); in TEST() local
[all …]
H A Dparser_benchmark.cc31 namespace csv { namespace
49 const std::string& csv, ParseOptions options) { in BenchmarkCSVChunking()
63 auto csv = BuildCSVData(one_row, num_rows); in ChunkCSVQuotedBlock() local
73 auto csv = BuildCSVData(one_row_escaped, num_rows); in ChunkCSVEscapedBlock() local
84 auto csv = BuildCSVData(one_row_escaped, num_rows); in ChunkCSVNoNewlinesBlock() local
97 const std::string& csv, int32_t rows, in BenchmarkCSVParsing()
125 auto csv = BuildCSVData(one_row, num_rows); in ParseCSVQuotedBlock() local
134 auto csv = BuildCSVData(one_row_escaped, num_rows); in ParseCSVEscapedBlock() local
/dports/net/frr7-pythontools/frr-frr-7.5.1/lib/
H A Dcsv.c77 int csvlen(csv_t *csv) in csvlen()
82 csv_t *csv_init(csv_t *csv, char *buf, int buflen) in csv_init()
99 void csv_clean(csv_t *csv) in csv_clean()
112 void csv_free(csv_t *csv) in csv_free()
125 csv_record_t *csv_record_iter(csv_t *csv) in csv_record_iter()
213 csv_record_t *csv_encode(csv_t *csv, int count, ...) in csv_encode()
275 int csv_num_records(csv_t *csv) in csv_num_records()
432 void csv_remove_record(csv_t *csv, csv_record_t *rec) in csv_remove_record()
566 void csv_decode(csv_t *csv, char *inbuf) in csv_decode()
618 void csv_dump(csv_t *csv) in csv_dump()
[all …]
/dports/net/frr7/frr-frr-7.5.1/lib/
H A Dcsv.c77 int csvlen(csv_t *csv) in csvlen()
82 csv_t *csv_init(csv_t *csv, char *buf, int buflen) in csv_init()
99 void csv_clean(csv_t *csv) in csv_clean()
112 void csv_free(csv_t *csv) in csv_free()
125 csv_record_t *csv_record_iter(csv_t *csv) in csv_record_iter()
213 csv_record_t *csv_encode(csv_t *csv, int count, ...) in csv_encode()
275 int csv_num_records(csv_t *csv) in csv_num_records()
432 void csv_remove_record(csv_t *csv, csv_record_t *rec) in csv_remove_record()
566 void csv_decode(csv_t *csv, char *inbuf) in csv_decode()
618 void csv_dump(csv_t *csv) in csv_dump()
[all …]
/dports/www/grafana8/grafana-8.3.6/packages/grafana-data/src/utils/
H A Dcsv.test.ts49 const csv = fs.readFileSync(path, 'utf8'); constant
59 const csv = fs.readFileSync(path, 'utf8'); constant
74 const csv = fs.readFileSync(path, 'utf8'); constant
101 const csv = toCSV([dataFrame], { useExcelHeader: true }); constant
130 const csv = toCSV([dataFrame]); constant
159 const csv = toCSV([dataFrame]); constant
/dports/math/igraph/igraph-0.9.5/vendor/glpk/mpl/
H A Dmpl6.c33 struct csv struct
38 /* name of csv file */ argument
40 /* stream assigned to csv file */ argument
46 /* used only for input csv file */ argument
58 /* number of fields in the csv file */ argument
71 static void read_char(struct csv *csv) in read_char()
110 static void read_field(struct csv *csv) in read_field()
217 struct csv *csv; in csv_open_file() local
315 static int csv_read_record(TABDCA *dca, struct csv *csv) in csv_read_record()
376 static int csv_write_record(TABDCA *dca, struct csv *csv) in csv_write_record()
[all …]
/dports/math/glpk/glpk-5.0/src/mpl/
H A Dmpl6.c33 struct csv struct
38 /* name of csv file */ argument
40 /* stream assigned to csv file */ argument
46 /* used only for input csv file */ argument
58 /* number of fields in the csv file */ argument
71 static void read_char(struct csv *csv) in read_char()
110 static void read_field(struct csv *csv) in read_field()
217 struct csv *csv; in csv_open_file() local
315 static int csv_read_record(TABDCA *dca, struct csv *csv) in csv_read_record()
376 static int csv_write_record(TABDCA *dca, struct csv *csv) in csv_write_record()
[all …]
/dports/audio/praat/praat-6.2.03/external/glpk/
H A Dglpmpl06.c38 struct csv struct
43 /* name of csv file */ argument
45 /* stream assigned to csv file */ argument
51 /* used only for input csv file */ argument
63 /* number of fields in the csv file */ argument
76 static void read_char(struct csv *csv) in read_char()
111 static void read_field(struct csv *csv) in read_field()
218 struct csv *csv; in csv_open_file() local
308 static int csv_read_record(TABDCA *dca, struct csv *csv) in csv_read_record()
369 static int csv_write_record(TABDCA *dca, struct csv *csv) in csv_write_record()
[all …]
/dports/devel/libgsf/libgsf-1.14.47/gsf/
H A Dgsf-output-csv.c53 GsfOutputCsv *csv = (GsfOutputCsv *)obj; in gsf_output_csv_finalize() local
70 GsfOutputCsv *csv = GSF_OUTPUT_CSV (output); in gsf_output_csv_write() local
79 GsfOutputCsv *csv = GSF_OUTPUT_CSV (output); in gsf_output_csv_seek() local
90 gsf_output_csv_write_field (GsfOutputCsv *csv, char const *field, size_t len) in gsf_output_csv_write_field()
170 gsf_output_csv_write_eol (GsfOutputCsv *csv) in gsf_output_csv_write_eol()
204 GsfOutputCsv *csv = (GsfOutputCsv *)obj; in gsf_output_csv_init() local
220 GsfOutputCsv *csv = (GsfOutputCsv *)object; in gsf_output_csv_get_property() local
254 gsf_output_csv_set_sink (GsfOutputCsv *csv, GsfOutput *sink) in gsf_output_csv_set_sink()
269 GsfOutputCsv *csv = (GsfOutputCsv *)object; in gsf_output_csv_set_property() local
/dports/net/kea/kea-2.0.1/src/lib/util/tests/
H A Dversioned_csv_file_unittest.cc127 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
178 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
244 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
363 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
404 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
419 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
481 boost::scoped_ptr<VersionedCSVFile> csv(new VersionedCSVFile(testfile_)); in TEST_F() local
H A Dcsv_file_unittest.cc293 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
318 CSVFile csv(testfile_); in TEST_F() local
332 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
418 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
460 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
502 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
537 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
566 boost::scoped_ptr<CSVFile> csv(new CSVFile(testfile_)); in TEST_F() local
588 CSVFile csv(testfile_); in TEST_F() local
613 CSVFile csv(testfile_); in TEST_F() local
[all …]
/dports/devel/libphonenumber/libphonenumber-8.12.39/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
H A DCsvTableTest.java80 CsvTable<RangeKey> csv = toCsv(table); in testRangeTableExport() local
97 CsvTable<ExampleNumberKey> csv = ExamplesTableSchema.toCsv(table); in testExampleNumberExport() local
172 CsvTable<RangeKey> csv = toCsv(table); in testOrdering() local
195 CsvTable.Builder<Integer> csv = CsvTable.builder(schema); in testOptionalRowOrdering() local
214 CsvTable<String> csv = in testUnsafeString() local
232 CsvTable<String> csv = in testPerverseEdgeCase() local
237 private static <K> void assertCsv(CsvTable<K> csv, String... lines) throws IOException { in assertCsv()
248 private static String export(CsvTable<?> csv, boolean align) { in export()
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/draft/keyboard/test/
H A DKeycodeMapTest.java10 String csv = "keycode,iso\n50,E03\n80,D10\n4,B00"; in testGetIsoLayoutPosition() local
16 String csv = "keycode,iso\n50,E03\n80,D10\n4,B00"; in testGetIsoLayoutPositionForMissingValue() local
27 String csv = "50,E03\n4,B00"; in testFromCsvMissingHeaders() local
/dports/math/pspp/pspp-1.4.1/src/output/
H A Dcsv.c80 struct csv_driver *csv; in csv_create() local
111 struct csv_driver *csv = csv_driver_cast (driver); in csv_destroy() local
125 struct csv_driver *csv = csv_driver_cast (driver); in csv_flush() local
131 csv_output_field__ (struct csv_driver *csv, struct substring field) in csv_output_field__()
151 csv_output_field (struct csv_driver *csv, const char *field) in csv_output_field()
157 csv_put_separator (struct csv_driver *csv) in csv_put_separator()
164 csv_output_lines (struct csv_driver *csv, const char *text_) in csv_output_lines()
184 csv_output_table_item_text (struct csv_driver *csv, in csv_output_table_item_text()
203 struct csv_driver *csv = csv_driver_cast (driver); in csv_submit() local
/dports/www/matomo/piwik/core/
H A DIP.php114 public static function getFirstIpFromList($csv, $excludedIps = null)
124 public static function getLastIpFromList($csv, $excludedIps = null)
134 private static function getIpsFromList(string $csv, ?array $excludedIps)
/dports/textproc/py-agate/agate-1.6.3/agate/
H A D__init__.py22 import agate.csv_py2 as csv namespace
24 import agate.csv_py3 as csv namespace
/dports/ftp/urlgfe/urlgfe-0.7.1/src/
H A Dcategory_setting_view.c4 void category_setting_view_init (CategorySettingView *csv) in category_setting_view_init()
152 void category_setting_view_set (CategorySettingView* csv, in category_setting_view_set()
189 void category_setting_view_get (CategorySettingView* csv, in category_setting_view_get()
/dports/graphics/vips/vips-8.12.0/libvips/foreign/
H A Dcsvload.c107 VipsForeignLoadCsv *csv = (VipsForeignLoadCsv *) gobject; in vips_foreign_load_csv_dispose() local
120 VipsForeignLoadCsv *csv = (VipsForeignLoadCsv *) object; in vips_foreign_load_csv_build() local
162 vips_foreign_load_csv_skip_white( VipsForeignLoadCsv *csv ) in vips_foreign_load_csv_skip_white()
186 vips_foreign_load_csv_skip_quoted( VipsForeignLoadCsv *csv ) in vips_foreign_load_csv_skip_quoted()
212 vips_foreign_load_csv_fetch_item( VipsForeignLoadCsv *csv ) in vips_foreign_load_csv_fetch_item()
275 vips_foreign_load_csv_read_double( VipsForeignLoadCsv *csv, double *out ) in vips_foreign_load_csv_read_double()
324 VipsForeignLoadCsv *csv = (VipsForeignLoadCsv *) load; in vips_foreign_load_csv_header() local
387 VipsForeignLoadCsv *csv = (VipsForeignLoadCsv *) load; in vips_foreign_load_csv_load() local
517 vips_foreign_load_csv_init( VipsForeignLoadCsv *csv ) in vips_foreign_load_csv_init()
547 VipsForeignLoadCsv *csv = (VipsForeignLoadCsv *) object; in vips_foreign_load_csv_file_build() local
[all …]

12345678910>>...51