Home
last modified time | relevance | path

Searched refs:boolean_values (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Df-exp.y821 static const struct f77_boolean_val boolean_values[] = variable
945 for (i = 0; boolean_values[i].name != NULL; i++) in yylex()
947 if (strncmp (tokstart, boolean_values[i].name, in yylex()
948 strlen (boolean_values[i].name)) == 0) in yylex()
950 lexptr += strlen (boolean_values[i].name); in yylex()
951 yylval.lval = boolean_values[i].value; in yylex()
H A Df-exp.c2216 static const struct f77_boolean_val boolean_values[] = variable
2340 for (i = 0; boolean_values[i].name != NULL; i++) in yylex()
2342 if (strncmp (tokstart, boolean_values[i].name, in yylex()
2343 strlen (boolean_values[i].name)) == 0) in yylex()
2345 lexptr += strlen (boolean_values[i].name); in yylex()
2346 yylval.lval = boolean_values[i].value; in yylex()
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A D118_boolean_values.t44 my $ret = $json->boolean_values($false, $true);
72 $ret = $json->boolean_values();
H A Dcore_bools.t17 $json->boolean_values(!!0, !!1);
25 $json->boolean_values(!!1, !!0);
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/lib/JSON/
H A DPP.pm202 sub boolean_values { subroutine