Searched refs:boolean_values (Results 1 – 5 of 5) sorted by relevance
821 static const struct f77_boolean_val boolean_values[] = variable945 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()
2216 static const struct f77_boolean_val boolean_values[] = variable2340 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()
44 my $ret = $json->boolean_values($false, $true);72 $ret = $json->boolean_values();
17 $json->boolean_values(!!0, !!1);25 $json->boolean_values(!!1, !!0);
202 sub boolean_values { subroutine