Home
last modified time | relevance | path

Searched refs:arg_repeat_type (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp489 bool CommandObject::IsPairType(ArgumentRepetitionType arg_repeat_type) { in IsPairType() argument
490 return (arg_repeat_type == eArgRepeatPairPlain) || in IsPairType()
491 (arg_repeat_type == eArgRepeatPairOptional) || in IsPairType()
492 (arg_repeat_type == eArgRepeatPairPlus) || in IsPairType()
493 (arg_repeat_type == eArgRepeatPairStar) || in IsPairType()
494 (arg_repeat_type == eArgRepeatPairRange) || in IsPairType()
495 (arg_repeat_type == eArgRepeatPairRangeOptional); in IsPairType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h242 static bool IsPairType(ArgumentRepetitionType arg_repeat_type);