[Lldb-commits] [lldb] r139862 - /lldb/trunk/scripts/Python/interface/SBData.i

Johnny Chen johnny.chen at apple.com
Thu Sep 15 15:05:38 PDT 2011


Author: johnny
Date: Thu Sep 15 17:05:38 2011
New Revision: 139862

URL: http://llvm.org/viewvc/llvm-project?rev=139862&view=rev
Log:
Untabify and fix indentations.  Tabs are bad.

Modified:
    lldb/trunk/scripts/Python/interface/SBData.i

Modified: lldb/trunk/scripts/Python/interface/SBData.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBData.i?rev=139862&r1=139861&r2=139862&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBData.i (original)
+++ lldb/trunk/scripts/Python/interface/SBData.i Thu Sep 15 17:05:38 2011
@@ -14,80 +14,80 @@
 {
 public:
 
-	    SBData ();
+    SBData ();
 
-	    SBData (const SBData &rhs);
+    SBData (const SBData &rhs);
 
-	    ~SBData ();
+    ~SBData ();
 
-	    uint8_t
-	    GetAddressByteSize ();
+    uint8_t
+    GetAddressByteSize ();
 
-	    void
-	    Clear ();
+    void
+    Clear ();
 
-	    bool
-	    IsValid();
+    bool
+    IsValid();
 
-	    size_t
-	    GetByteSize ();
+    size_t
+    GetByteSize ();
 
-	    lldb::ByteOrder
-	    GetByteOrder();
+    lldb::ByteOrder
+    GetByteOrder();
 
-	    float
-	    GetFloat (lldb::SBError& error, uint32_t offset);
+    float
+    GetFloat (lldb::SBError& error, uint32_t offset);
 
-	    double
-	    GetDouble (lldb::SBError& error, uint32_t offset);
+    double
+    GetDouble (lldb::SBError& error, uint32_t offset);
 
-	    long double
-	    GetLongDouble (lldb::SBError& error, uint32_t offset);
+    long double
+    GetLongDouble (lldb::SBError& error, uint32_t offset);
 
-	    lldb::addr_t
-	    GetAddress (lldb::SBError& error, uint32_t offset);
+    lldb::addr_t
+    GetAddress (lldb::SBError& error, uint32_t offset);
 
-	    uint8_t
-	    GetUnsignedInt8 (lldb::SBError& error, uint32_t offset);
+    uint8_t
+    GetUnsignedInt8 (lldb::SBError& error, uint32_t offset);
 
-	    uint16_t
-	    GetUnsignedInt16 (lldb::SBError& error, uint32_t offset);
+    uint16_t
+    GetUnsignedInt16 (lldb::SBError& error, uint32_t offset);
 
-	    uint32_t
-	    GetUnsignedInt32 (lldb::SBError& error, uint32_t offset);
+    uint32_t
+    GetUnsignedInt32 (lldb::SBError& error, uint32_t offset);
 
-	    uint64_t
-	    GetUnsignedInt64 (lldb::SBError& error, uint32_t offset);
+    uint64_t
+    GetUnsignedInt64 (lldb::SBError& error, uint32_t offset);
 
-	    int8_t
-	    GetSignedInt8 (lldb::SBError& error, uint32_t offset);
+    int8_t
+    GetSignedInt8 (lldb::SBError& error, uint32_t offset);
 
-	    int16_t
-	    GetSignedInt16 (lldb::SBError& error, uint32_t offset);
+    int16_t
+    GetSignedInt16 (lldb::SBError& error, uint32_t offset);
 
-	    int32_t
-	    GetSignedInt32 (lldb::SBError& error, uint32_t offset);
+    int32_t
+    GetSignedInt32 (lldb::SBError& error, uint32_t offset);
 
-	    int64_t
-	    GetSignedInt64 (lldb::SBError& error, uint32_t offset);
+    int64_t
+    GetSignedInt64 (lldb::SBError& error, uint32_t offset);
 
-	    const char*
-	    GetString (lldb::SBError& error, uint32_t offset);
-	
-		bool
-    	GetDescription (lldb::SBStream &description);
+    const char*
+    GetString (lldb::SBError& error, uint32_t offset);
 
-	    size_t
-	    ReadRawData (lldb::SBError& error,
-	                 uint32_t offset,
-	                 void *buf,
-	                 size_t size);
+    bool
+    GetDescription (lldb::SBStream &description);
 
-	    void
-	    SetData(lldb::SBError& error, const void *buf, size_t size, lldb::ByteOrder endian, uint8_t addr_size);
+    size_t
+    ReadRawData (lldb::SBError& error,
+                 uint32_t offset,
+                 void *buf,
+                 size_t size);
 
-	    bool
-	    Append(const SBData& rhs);
+    void
+    SetData(lldb::SBError& error, const void *buf, size_t size, lldb::ByteOrder endian, uint8_t addr_size);
+
+    bool
+    Append(const SBData& rhs);
 
 
 };





More information about the lldb-commits mailing list