Home
last modified time | relevance | path

Searched refs:undef_str (Results 1 – 14 of 14) sorted by relevance

/dports/textproc/p5-Text-CSV/Text-CSV-2.01/t/
H A D76_magic.t63 ok (defined ($csv->undef_str ($us)),"Set undef_str with method");
70 ok ($csv->undef_str ($us), "Set undef_str from tied scalar");
74 ok ($csv->undef_str ($us), "Set undef_str from tied scalar");
78 is ($csv->undef_str ($us), undef, "Set undef_str from tied scalar");
83 $csv = Text::CSV->new ({ undef_str => "\\N" });
H A D12_acc.t45 is ($csv->undef_str, undef, "undef_str");
111 is ($csv->undef_str ("-"), "-", "undef_str");
125 is ($csv->undef_str (undef), undef, "undef_str");
/dports/textproc/p5-Text-CSV_XS/Text-CSV_XS-1.47/t/
H A D76_magic.t62 ok (defined ($csv->undef_str ($us)),"Set undef_str with method");
69 ok ($csv->undef_str ($us), "Set undef_str from tied scalar");
73 ok ($csv->undef_str ($us), "Set undef_str from tied scalar");
77 is ($csv->undef_str ($us), undef, "Set undef_str from tied scalar");
82 $csv = Text::CSV_XS->new ({ undef_str => "\\N" });
H A D12_acc.t44 is ($csv->undef_str, undef, "undef_str");
110 is ($csv->undef_str ("-"), "-", "undef_str");
124 is ($csv->undef_str (undef), undef, "undef_str");
/dports/security/libdecaf/libdecaf-1.0.0/test/
H A Dtest_ct.cxx24 const char *undef_str = "Valgrind thinks this string is undefined."; variable
25 const Block undef_block(undef_str);
152 VALGRIND_MAKE_MEM_UNDEFINED(undef_str, strlen(undef_str)); in main()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/NOMAD/src/
H A DDouble.hpp222 static void set_undef_str ( const std::string & undef_str ) in set_undef_str() argument
224 NOMAD::Double::_undef_str = undef_str; in set_undef_str()
H A DParameters.hpp672 void set_UNDEF_STR ( const std::string & undef_str ) in set_UNDEF_STR() argument
674 NOMAD::Double::set_undef_str ( undef_str ); in set_UNDEF_STR()
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/lib/Text/
H A DCSV_PP.pm204 undef_str => undef,
400 undef_str => 46,
689 sub undef_str { subroutine
694 $self->_cache_set ($_cache_id{undef_str}, $self->{undef_str});
696 $self->{undef_str};
1706 if (defined $self->{undef_str}) {
1707 $ctx->{undef_str} = $self->{undef_str};
1710 $ctx->{undef_str} = undef;
1832 $cache->{undef_str} = $value;
1835 $cache->{undef_str} = undef;
[all …]
/dports/math/coxeter3/coxeter-7b5a1f0/
H A Dschubert.cpp92 const char* undef_str = "undefined"; variable
669 io::append(str,undef_str); in append()
681 return io::append(str,undef_str); in append()
693 fprintf(file,"%s",undef_str); in print()
705 fprintf(file,"%s",undef_str); in print()
/dports/textproc/p5-Text-CSV_XS/Text-CSV_XS-1.47/
H A DCSV_XS.xs226 byte * undef_str; member
516 csv->undef_str = (byte *)cp; in cx_xs_cache_set()
521 csv->undef_str = NULL; in cx_xs_cache_set()
707 csv->undef_str = (byte *)SvPV_nolen (*svp); in cx_SetupCsv()
712 csv->undef_str = NULL; in cx_SetupCsv()
1108 if (csv->undef_str) { in cx_Combine()
1109 byte *ptr = csv->undef_str; in cx_Combine()
H A DCSV_XS.pm550 sub undef_str { subroutine
H A DChangeLog97 * Add undef_str attribute
/dports/textproc/p5-Text-CSV/Text-CSV-2.01/
H A DChanges28 - Added undef_str and keep_headers attributes
/dports/lang/v8/v8-9.6.180.12/test/cctest/
H A Dtest-api.cc439 Local<String> undef_str = undef->ToString(env.local()).ToLocalChecked(); in THREADED_TEST() local
440 char* value = i::NewArray<char>(undef_str->Utf8Length(isolate) + 1); in THREADED_TEST()
441 undef_str->WriteUtf8(isolate, value); in THREADED_TEST()