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

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
32011   lldb::ValueType arg3 ;
32058   lldb::ValueType arg3 ;
74279   lldb::ValueType result;
tools/lldb/include/lldb/API/SBFrame.h
  180   lldb::SBValue FindValue(const char *name, ValueType value_type);
  182   lldb::SBValue FindValue(const char *name, ValueType value_type,
tools/lldb/include/lldb/API/SBValue.h
   65   ValueType GetValueType();
tools/lldb/include/lldb/Core/ValueObject.h
  364   virtual lldb::ValueType GetValueType() const = 0;
tools/lldb/include/lldb/Core/ValueObjectCast.h
   37   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Core/ValueObjectChild.h
   41   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Core/ValueObjectConstResult.h
   67   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
   48   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Core/ValueObjectMemory.h
   51   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Core/ValueObjectRegister.h
   39   lldb::ValueType GetValueType() const override {
   78   lldb::ValueType GetValueType() const override {
  125   lldb::ValueType GetValueType() const override {
tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
   53   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Core/ValueObjectVariable.h
   50   lldb::ValueType GetValueType() const override;
tools/lldb/include/lldb/Symbol/Variable.h
   33            const lldb::SymbolFileTypeSP &symfile_type_sp, lldb::ValueType scope,
   65   lldb::ValueType GetScope() const { return m_scope; }
  116   lldb::ValueType m_scope;
tools/lldb/include/lldb/Symbol/VariableList.h
   43                                 lldb::ValueType value_type,
   58   size_t AppendVariablesWithScope(lldb::ValueType type, VariableList &var_list,
tools/lldb/include/lldb/Target/StackFrameRecognizer.h
  131   static lldb::ValueObjectSP Create(ValueObject &parent, lldb::ValueType type) {
  135                                         lldb::ValueType type)
  141   lldb::ValueType GetValueType() const override { return m_type; }
  156   lldb::ValueType m_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,
   53                              const Tail &... tail) {
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  208   template <typename T> void AddObjectForIndex(unsigned idx, T *object) {
  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());
  285   template <typename T> void HandleReplayResult(const T &t) {
  287     if (std::is_fundamental<T>::value)
  290     m_index_to_object.AddObjectForIndex(result, new T(t));
  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) {
  375     static Result doit(Deserializer &deserializer,
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  377                        Deserialized... d) {
  378       return DeserializationHelper<Tail...>::
  379           template deserialized<Result, Deserialized..., Head>::doit(
  379           template deserialized<Result, Deserialized..., Head>::doit(
  379           template deserialized<Result, Deserialized..., Head>::doit(
  380               deserializer, f, d..., deserializer.Deserialize<Head>());
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  388                        Deserialized... d) {
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  412   Result (*f)(Args...);
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
  652             typename std::remove_reference<Result>::type>::type>::value) {
tools/lldb/source/API/SBFrame.cpp
  552 SBValue SBFrame::FindValue(const char *name, ValueType value_type) {
  570 SBValue SBFrame::FindValue(const char *name, ValueType value_type,
tools/lldb/source/API/SBValue.cpp
  369 ValueType SBValue::GetValueType() {
  372   ValueType result = eValueTypeInvalid;
tools/lldb/source/Core/ValueObjectCast.cpp
   57 lldb::ValueType ValueObjectCast::GetValueType() const {
tools/lldb/source/Core/ValueObjectChild.cpp
   48 lldb::ValueType ValueObjectChild::GetValueType() const {
tools/lldb/source/Core/ValueObjectConstResult.cpp
  194 lldb::ValueType ValueObjectConstResult::GetValueType() const {
tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  110 lldb::ValueType ValueObjectDynamicValue::GetValueType() const {
tools/lldb/source/Core/ValueObjectMemory.cpp
  143 lldb::ValueType ValueObjectMemory::GetValueType() const {
tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  124 lldb::ValueType ValueObjectSynthetic::GetValueType() const {
tools/lldb/source/Core/ValueObjectVariable.cpp
  117 lldb::ValueType ValueObjectVariable::GetValueType() const {
tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
 3316       ValueType scope = eValueTypeInvalid;
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
  748   lldb::ValueType scope = eValueTypeInvalid;
 1351   ValueType var_scope =
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  922   ValueType scope = eValueTypeInvalid;
tools/lldb/source/Symbol/Variable.cpp
   40                    ValueType scope, SymbolContextScope *context,
tools/lldb/source/Symbol/VariableList.cpp
   88                                       lldb::ValueType value_type,
  128 size_t VariableList::AppendVariablesWithScope(lldb::ValueType type,
usr/include/c++/7.4.0/bits/alloc_traits.h
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  475 	{ __a.construct(__p, std::forward<_Args>(__args)...); }
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/bits/shared_ptr.h
  343 		   _Args&&... __args)
  344 	: __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
  688     allocate_shared(const _Alloc& __a, _Args&&... __args)
  691 			     std::forward<_Args>(__args)...);
  703     make_shared(_Args&&... __args)
  707 				       std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/bits/shared_ptr_base.h
 1317 		     _Args&&... __args)
 1328 			      std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/ext/new_allocator.h
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
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;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1979     { typedef _Tp     type; };
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>