Home
last modified time | relevance | path

Searched refs:allow_unquoted_escape (Results 1 – 10 of 10) sorted by relevance

/dports/textproc/p5-Text-CSV_XS/Text-CSV_XS-1.47/t/
H A D12_acc.t27 is ($csv->allow_unquoted_escape, 0, "allow_unquoted_escape");
77 is ($csv->allow_unquoted_escape (1), 1, "allow_unquoted_escape (1)");
H A D65_allow.t419 { my $csv = Text::CSV_XS->new ({ allow_unquoted_escape => 1, escape_char => "=" });
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/t/
H A D12_acc.t28 is ($csv->allow_unquoted_escape, 0, "allow_unquoted_escape");
78 is ($csv->allow_unquoted_escape (1), 1, "allow_unquoted_escape (1)");
H A D71_pp.t348 $csv->allow_unquoted_escape(1);
H A D65_allow.t420 { my $csv = Text::CSV->new ({ allow_unquoted_escape => 1, escape_char => "=" });
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/
H A DChanges80 - add allow_unquoted_escape
85 (except for diag_verbose and allow_unquoted_escape)
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/lib/Text/
H A DCSV_PP.pm194 allow_unquoted_escape => 0,
380 allow_unquoted_escape => 8,
665 sub allow_unquoted_escape { subroutine
668 $self->{allow_unquoted_escape};
2436 if ($ctx->{allow_unquoted_escape}) {
/dports/textproc/p5-Text-CSV_XS/Text-CSV_XS-1.47/
H A DCSV_XS.xs178 byte allow_unquoted_escape; member
480 case CACHE_ID_allow_unquoted_escape: csv->allow_unquoted_escape = bv; break; in cx_xs_cache_set()
587 _cache_show_byte ("allow_unquoted_escape", csv->allow_unquoted_escape); in cx_xs_cache_diag()
745 csv->allow_unquoted_escape = bool_opt ("allow_unquoted_escape"); in cx_SetupCsv()
1608 if (csv->allow_unquoted_escape) { in cx_Parse()
H A DCSV_XS.pm526 sub allow_unquoted_escape { subroutine
H A DChangeLog343 * Introduce allow_unquoted_escape as workaround for RT#81295