Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp424 bool CommandObject::IsPairType(ArgumentRepetitionType arg_repeat_type) { in IsPairType() argument
425 return (arg_repeat_type == eArgRepeatPairPlain) || in IsPairType()
426 (arg_repeat_type == eArgRepeatPairOptional) || in IsPairType()
427 (arg_repeat_type == eArgRepeatPairPlus) || in IsPairType()
428 (arg_repeat_type == eArgRepeatPairStar) || in IsPairType()
429 (arg_repeat_type == eArgRepeatPairRange) || in IsPairType()
430 (arg_repeat_type == eArgRepeatPairRangeOptional); in IsPairType()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h219 bool IsPairType(ArgumentRepetitionType arg_repeat_type);