Lines Matching +defs:val +defs:names
1674 bool Arguments::verify_interval(uintx val, uintx min,
1678 if (val >= min && val <= max) {
1684 name, val, min, max);
1688 bool Arguments::verify_min_value(intx val, intx min, const char* name) {
1691 if (val >= min ) {
1696 name, val, min);
2028 // Return true if any of the strings in null-terminated array 'names' matches.
2031 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
2033 for (/* empty */; *names != NULL; ++names) {
2034 if (match_option(option, *names, tail)) {