Home
last modified time | relevance | path

Searched refs:escape_null (Results 1 – 11 of 11) sorted by relevance

/dports/textproc/p5-Text-CSV_XS/Text-CSV_XS-1.47/t/
H A D55_combi.t146 { ok (my $csv = Text::CSV_XS->new ({ binary => 1, escape_null => 0 }), "New CSV no escape_null");
154 { ok (my $csv = Text::CSV_XS->new ({ binary => 1, escape_char => "", escape_null => 0 }), "New CS…
H A D12_acc.t39 is ($csv->escape_null, 1, "escape_null");
101 is ($csv->escape_null (1), 1, "escape_null (1)");
116 is ($csv->escape_null (0), 0, "escape_null (0)");
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/t/
H A D55_combi.t147 { ok (my $csv = Text::CSV->new ({ binary => 1, escape_null => 0 }), "New CSV no escape_null");
155 { ok (my $csv = Text::CSV->new ({ binary => 1, escape_char => "", escape_null => 0 }), "New CSV n…
H A D12_acc.t40 is ($csv->escape_null, 1, "escape_null");
102 is ($csv->escape_null (1), 1, "escape_null (1)");
117 is ($csv->escape_null (0), 0, "escape_null (0)");
/dports/multimedia/v4l_compat/linux-5.13-rc2/lib/
H A Dstring_helpers.c379 static bool escape_null(unsigned char c, char **dst, char *end) in escape_null() function
528 if (flags & ESCAPE_NULL && escape_null(c, &p, end)) in string_escape_mem()
/dports/multimedia/libv4l/linux-5.13-rc2/lib/
H A Dstring_helpers.c379 static bool escape_null(unsigned char c, char **dst, char *end) in escape_null() function
528 if (flags & ESCAPE_NULL && escape_null(c, &p, end)) in string_escape_mem()
/dports/multimedia/v4l-utils/linux-5.13-rc2/lib/
H A Dstring_helpers.c379 static bool escape_null(unsigned char c, char **dst, char *end) in escape_null() function
528 if (flags & ESCAPE_NULL && escape_null(c, &p, end)) in string_escape_mem()
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/lib/Text/
H A DCSV_PP.pm199 escape_null => 1,
392 escape_null => 31,
554 sub escape_null { subroutine
557 $self->{escape_null};
560 sub quote_null { goto &escape_null; }
1391 defined $attr{escape_null} or $attr{escape_null} = 0;
1749 $ctx->{escape_null} = 0;
2031 if ($ctx->{escape_null}) {
/dports/textproc/p5-Text-CSV_XS/Text-CSV_XS-1.47/
H A DCSV_XS.xs187 byte escape_null; member
475 case CACHE_ID_escape_null: csv->escape_null = bv; break; in cx_xs_cache_set()
592 _cache_show_byte ("escape_null", csv->escape_null); in cx_xs_cache_diag()
741 csv->escape_null = bool_opt_def ("escape_null", 1); in cx_SetupCsv()
756 unless (csv->escape_char) csv->escape_null = 0; in cx_SetupCsv()
1090 if (c == (char)0 && csv->escape_null) { in cx_Combine()
H A DCSV_XS.pm416 sub escape_null { subroutine
421 sub quote_null { goto &escape_null; }
H A DChangeLog144 * Disable escape_null for undefined escape_char
161 * Default for escape_null in csv () is now false
261 * Rename quote_null to escape_null