reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
13721   lldb::CommandArgumentType arg1 ;
13747   lldb::CommandArgumentType arg1 ;
tools/lldb/include/lldb/API/SBCommandInterpreter.h
   83   GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type);
   86   GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type);
tools/lldb/include/lldb/Interpreter/CommandObject.h
   82     lldb::CommandArgumentType arg_type;
   91     lldb::CommandArgumentType arg_type;
  118   GetArgumentTypeAsCString(const lldb::CommandArgumentType arg_type);
  121   GetArgumentDescriptionAsCString(const lldb::CommandArgumentType arg_type);
  196   static lldb::CommandArgumentType LookupArgumentName(llvm::StringRef arg_name);
  199   FindArgumentDataByType(lldb::CommandArgumentType arg_type);
  205   static void GetArgumentHelp(Stream &str, lldb::CommandArgumentType arg_type,
  208   static const char *GetArgumentName(lldb::CommandArgumentType arg_type);
  373                                  lldb::CommandArgumentType ID,
  374                                  lldb::CommandArgumentType IDRange);
tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
   24                   lldb::CommandArgumentType argument_type,
   55                       lldb::CommandArgumentType argument_type,
tools/lldb/include/lldb/Interpreter/OptionGroupString.h
   22                     lldb::CommandArgumentType argument_type,
tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
   23                     lldb::CommandArgumentType argument_type,
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   31 inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) {
   47 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) {
   52 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head,
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  245   typedef typename std::conditional<std::is_trivially_copyable<T>::value, ValueTag, NotImplementedTag>::type type;
  277   template <typename T> T Deserialize() {
  281     return Read<T>(typename serializer_tag<T>::type());
  310   template <typename T> T Read(NotImplementedTag) {
  315   template <typename T> T Read(ValueTag) {
  317     T t;
  318     std::memcpy(reinterpret_cast<char *>(&t), m_buffer.data(), sizeof(T));
  319     m_buffer = m_buffer.drop_front(sizeof(T));
  323   template <typename T> T Read(PointerTag) {
  329   template <typename T> T Read(ReferenceTag) {
  340   template <typename T> T Read(FundamentalPointerTag) {
  349   template <typename T> T Read(FundamentalReferenceTag) {
  376                        Result (*f)(Deserialized..., Head, Tail...),
  379           template deserialized<Result, Deserialized..., Head>::doit(
  380               deserializer, f, d..., deserializer.Deserialize<Head>());
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  388                        Deserialized... d) {
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
tools/lldb/include/lldb/lldb-private-types.h
  116   lldb::CommandArgumentType argument_type; // Type of argument this option takes
tools/lldb/source/API/SBCommandInterpreter.cpp
  615     const lldb::CommandArgumentType arg_type) {
  624     const lldb::CommandArgumentType arg_type) {
tools/lldb/source/Commands/CommandObjectHelp.cpp
  184       const CommandArgumentType arg_type =
tools/lldb/source/Interpreter/CommandObject.cpp
  351 CommandObject::FindArgumentDataByType(CommandArgumentType arg_type) {
  361 void CommandObject::GetArgumentHelp(Stream &str, CommandArgumentType arg_type,
  392 const char *CommandObject::GetArgumentName(CommandArgumentType arg_type) {
  522 CommandArgumentType
  524   CommandArgumentType return_type = eArgTypeLastArg;
  884                                        CommandArgumentType ID,
  885                                        CommandArgumentType IDRange) {
  907     const lldb::CommandArgumentType arg_type) {
  914     const lldb::CommandArgumentType arg_type) {
tools/lldb/source/Interpreter/OptionGroupFile.cpp
   19                                  lldb::CommandArgumentType argument_type,
   51     lldb::CommandArgumentType argument_type, const char *usage_text)
tools/lldb/source/Interpreter/OptionGroupString.cpp
   19                                      lldb::CommandArgumentType argument_type,
tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
   19                                      lldb::CommandArgumentType argument_type,
tools/lldb/source/Interpreter/Options.cpp
  576       CommandArgumentType arg_type = opt_defs[i].argument_type;
  764     lldb::CommandArgumentType option_arg_type =
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;