summaryrefslogtreecommitdiffstats
path: root/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h')
-rw-r--r--lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h76
1 files changed, 38 insertions, 38 deletions
diff --git a/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h b/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
index d2c1876c44b..1aa3022960b 100644
--- a/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
+++ b/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
@@ -8,15 +8,15 @@
//===----------------------------------------------------------------------===//
//++
-// File: MICmnLLDBUtilSBValue.h
+// File: MICmnLLDBUtilSBValue.h
//
-// Overview: CMICmnLLDBUtilSBValue interface.
+// Overview: CMICmnLLDBUtilSBValue interface.
//
-// Environment: Compilers: Visual C++ 12.
-// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
-// Libraries: See MIReadmetxt.
+// Environment: Compilers: Visual C++ 12.
+// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
+// Libraries: See MIReadmetxt.
//
-// Copyright: None.
+// Copyright: None.
//--
#pragma once
@@ -31,41 +31,41 @@
class CMIUtilString;
//++ ============================================================================
-// Details: Utility helper class to lldb::SBValue. Using a lldb::SBValue extract
-// value object information to help form verbose debug information.
-// Gotchas: None.
-// Authors: Illya Rudkin 08/07/2014.
-// Changes: None.
+// Details: Utility helper class to lldb::SBValue. Using a lldb::SBValue extract
+// value object information to help form verbose debug information.
+// Gotchas: None.
+// Authors: Illya Rudkin 08/07/2014.
+// Changes: None.
//--
class CMICmnLLDBUtilSBValue
{
-// Methods:
-public:
- /* ctor */ CMICmnLLDBUtilSBValue( const lldb::SBValue & vrValue, const bool vbHandleCharType = false );
- /* dtor */ ~CMICmnLLDBUtilSBValue( void );
- //
- CMIUtilString GetName( void ) const;
- CMIUtilString GetValue( void ) const;
- CMIUtilString GetValueCString( void ) const;
- CMIUtilString GetChildValueCString( void ) const;
- CMIUtilString GetTypeName( void ) const;
- CMIUtilString GetTypeNameDisplay( void ) const;
- bool IsCharType( void ) const;
- bool IsChildCharType( void ) const;
- bool IsLLDBVariable( void ) const;
- bool IsNameUnknown( void ) const;
- bool IsValueUnknown( void ) const;
- bool IsValid( void ) const;
- bool HasName( void ) const;
+ // Methods:
+ public:
+ /* ctor */ CMICmnLLDBUtilSBValue(const lldb::SBValue &vrValue, const bool vbHandleCharType = false);
+ /* dtor */ ~CMICmnLLDBUtilSBValue(void);
+ //
+ CMIUtilString GetName(void) const;
+ CMIUtilString GetValue(void) const;
+ CMIUtilString GetValueCString(void) const;
+ CMIUtilString GetChildValueCString(void) const;
+ CMIUtilString GetTypeName(void) const;
+ CMIUtilString GetTypeNameDisplay(void) const;
+ bool IsCharType(void) const;
+ bool IsChildCharType(void) const;
+ bool IsLLDBVariable(void) const;
+ bool IsNameUnknown(void) const;
+ bool IsValueUnknown(void) const;
+ bool IsValid(void) const;
+ bool HasName(void) const;
-// Methods:
-private:
- CMIUtilString ReadCStringFromHostMemory( const lldb::SBValue & vrValueObj ) const;
+ // Methods:
+ private:
+ CMIUtilString ReadCStringFromHostMemory(const lldb::SBValue &vrValueObj) const;
-// Attributes:
-private:
- lldb::SBValue & m_rValue;
- const MIchar * m_pUnkwn;
- bool m_bValidSBValue; // True = SBValue is a valid object, false = not valid.
- bool m_bHandleCharType; // True = Yes return text molding to char type, false = just return data.
+ // Attributes:
+ private:
+ lldb::SBValue &m_rValue;
+ const MIchar *m_pUnkwn;
+ bool m_bValidSBValue; // True = SBValue is a valid object, false = not valid.
+ bool m_bHandleCharType; // True = Yes return text molding to char type, false = just return data.
};
OpenPOWER on IntegriCloud