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.cpp496 bool CommandObject::IsPairType(ArgumentRepetitionType arg_repeat_type) { in IsPairType() argument
497 return (arg_repeat_type == eArgRepeatPairPlain) || in IsPairType()
498 (arg_repeat_type == eArgRepeatPairOptional) || in IsPairType()
499 (arg_repeat_type == eArgRepeatPairPlus) || in IsPairType()
500 (arg_repeat_type == eArgRepeatPairStar) || in IsPairType()
501 (arg_repeat_type == eArgRepeatPairRange) || in IsPairType()
502 (arg_repeat_type == eArgRepeatPairRangeOptional); in IsPairType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h241 static bool IsPairType(ArgumentRepetitionType arg_repeat_type);