From 9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Wed, 6 Jan 2016 20:12:03 +0000 Subject: Vendor import of lldb trunk r256945: https://llvm.org/svn/llvm-project/lldb/trunk@256945 --- www/python_reference/lldb.SBDeclaration-class.html | 755 +++++++++++++++++++++ 1 file changed, 755 insertions(+) create mode 100644 www/python_reference/lldb.SBDeclaration-class.html (limited to 'www/python_reference/lldb.SBDeclaration-class.html') diff --git a/www/python_reference/lldb.SBDeclaration-class.html b/www/python_reference/lldb.SBDeclaration-class.html new file mode 100644 index 000000000000..0bdfd3734efe --- /dev/null +++ b/www/python_reference/lldb.SBDeclaration-class.html @@ -0,0 +1,755 @@ + + + + + lldb.SBDeclaration + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Package lldb :: + Class SBDeclaration + + + + + + +
[hide private]
[frames] | no frames]
+
+ +

Class SBDeclaration

source code

+
+
+ + + + + + + + + + + + + + + + + + + + + + +
+
+
+

Specifies an association with a line and column for a variable.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
Instance Methods[hide private]
+
+   + + + + + + +
__setattr__(self, + name, + value)
+ x.__setattr__('name', value) <==> x.name = value
+ source code + +
+ +
+   + + + + + + +
__getattr__(self, + name) + source code + +
+ +
+   + + + + + + +
__repr__(self)
+ repr(x)
+ source code + +
+ +
+   + + + + + + +
__init__(self, + *args)
+ __init__(lldb::SBDeclaration self) -> SBDeclaration + __init__(lldb::SBDeclaration self, SBDeclaration rhs) -> + SBDeclaration
+ source code + +
+ +
+   + + + + + + +
__swig_destroy__(...)
+ delete_SBDeclaration(SBDeclaration self)
+ + +
+ +
+   + + + + + + +
__del__(self) + source code + +
+ +
+   + + + + + + +
__nonzero__(self) + source code + +
+ +
+   + + + + + + +
IsValid(self)
+ IsValid(SBDeclaration self) -> bool
+ source code + +
+ +
+   + + + + + + +
GetFileSpec(self)
+ GetFileSpec(SBDeclaration self) -> SBFileSpec
+ source code + +
+ +
+   + + + + + + +
GetLine(self)
+ GetLine(SBDeclaration self) -> uint32_t
+ source code + +
+ +
+   + + + + + + +
GetColumn(self)
+ GetColumn(SBDeclaration self) -> uint32_t
+ source code + +
+ +
+   + + + + + + +
GetDescription(self, + *args)
+ GetDescription(SBDeclaration self, SBStream description) -> bool
+ source code + +
+ +
+   + + + + + + +
SetFileSpec(self, + *args)
+ SetFileSpec(SBDeclaration self, SBFileSpec filespec)
+ source code + +
+ +
+   + + + + + + +
SetLine(self, + *args)
+ SetLine(SBDeclaration self, uint32_t line)
+ source code + +
+ +
+   + + + + + + +
SetColumn(self, + *args)
+ SetColumn(SBDeclaration self, uint32_t column)
+ source code + +
+ +
+   + + + + + + +
__str__(self)
+ __str__(SBDeclaration self) -> PyObject *
+ source code + +
+ +
+   + + + + + + +
__eq__(self, + rhs) + source code + +
+ +
+   + + + + + + +
__ne__(self, + rhs) + source code + +
+ +
+

Inherited from object: + __delattr__, + __format__, + __getattribute__, + __hash__, + __new__, + __reduce__, + __reduce_ex__, + __sizeof__, + __subclasshook__ +

+
+ + + + + + + + + + + + +
+ + + + + +
Class Variables[hide private]
+
+   + + __swig_setmethods__ = {} +
+   + + __swig_getmethods__ = {} +
+ + + + + + + + + + + + + + + + + + +
+ + + + + +
Properties[hide private]
+
+   + + column
+ A read only property that returns the 1 based column number for this + line entry, a return value of zero indicates that no column + information is available. +
+   + + file
+ A read only property that returns an lldb object that represents the + file (lldb.SBFileSpec) for this line entry. +
+   + + ling
+ A read only property that returns the 1 based line number for this + line entry, a return value of zero indicates that no line information + is available. +
+

Inherited from object: + __class__ +

+
+ + + + + + +
+ + + + + +
Method Details[hide private]
+
+ +
+ +
+ + +
+

__setattr__(self, + name, + value) +

+
source code  +
+ +

x.__setattr__('name', value) <==> x.name = value

+
+
Overrides: + object.__setattr__ +
(inherited documentation)
+ +
+
+
+ +
+ +
+ + +
+

__repr__(self) +
(Representation operator) +

+
source code  +
+ +

repr(x)

+
+
Overrides: + object.__repr__ +
(inherited documentation)
+ +
+
+
+ +
+ +
+ + +
+

__init__(self, + *args) +
(Constructor) +

+
source code  +
+ +

__init__(lldb::SBDeclaration self) -> SBDeclaration + __init__(lldb::SBDeclaration self, SBDeclaration rhs) -> + SBDeclaration

+
+
Overrides: + object.__init__ +
+
+
+
+ +
+ +
+ + +
+

__str__(self) +
(Informal representation operator) +

+
source code  +
+ +

__str__(SBDeclaration self) -> PyObject *

+
+
Overrides: + object.__str__ +
+
+
+
+
+ + + + + + +
+ + + + + +
Property Details[hide private]
+
+ +
+ +
+

column

+

A read only property that returns the 1 based column number for this + line entry, a return value of zero indicates that no column information + is available.

+
+
Get Method:
+
GetColumn(self) + - GetColumn(SBDeclaration self) -> uint32_t +
+
+
+
+ +
+ +
+

file

+

A read only property that returns an lldb object that represents the + file (lldb.SBFileSpec) for this line entry.

+
+
Get Method:
+
GetFileSpec(self) + - GetFileSpec(SBDeclaration self) -> SBFileSpec +
+
+
+
+ +
+ +
+

ling

+

A read only property that returns the 1 based line number for this + line entry, a return value of zero indicates that no line information is + available.

+
+
Get Method:
+
GetLine(self) + - GetLine(SBDeclaration self) -> uint32_t +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + +
+ + + + -- cgit v1.3