|
| __init__ (self, *args, **kwargs) |
|
"uval_t" | touval (self, "void *" ud) |
| touval(self, ud) -> uval_t Map the location to a number.
|
|
"place_t *" | clone (self) |
| clone(self) -> place_t Clone the location.
|
|
"void" | copyfrom (self, "place_t" _from) |
| copyfrom(self, _from) Copy the specified location object to the current object.
|
|
"place_t *" | makeplace (self, "void *" ud, "uval_t" x, "int" lnnum) |
| makeplace(self, ud, x, lnnum) -> place_t Map a number to a location.
|
|
"int" | compare (self, "place_t" t2) |
| compare(self, t2) -> int Deprecated.
|
|
"void" | adjust (self, "void *" ud) |
| adjust(self, ud) Adjust the current location to point to a displayable object.
|
|
"bool" | prev (self, "void *" ud) |
| prev(self, ud) -> bool Move to the previous displayable location.
|
|
"bool" | next (self, "void *" ud) |
| next(self, ud) -> bool Move to the next displayable location.
|
|
"bool" | beginning (self, "void *" ud) |
| beginning(self, ud) -> bool Are we at the first displayable object?.
|
|
"bool" | ending (self, "void *" ud) |
| ending(self, ud) -> bool Are we at the last displayable object?.
|
|
"void" | serialize (self) |
| serialize(self) Serialize this instance.
|
|
"int" | id (self) |
| id(self) -> int Get the place's ID (i.e., the value returned by register_place_class())
|
|
"char const *" | name (self) |
| name(self) -> char const * Get this place type name.
|
|
"ea_t" | toea (self) |
| toea(self) -> ea_t Map the location to an ea_t.
|
|
"bool" | rebase (self, "segm_move_infos_t const &" arg2) |
| rebase(self, arg2) -> bool Rebase the place instance
|
|
"place_t *" | enter (self, "uint32 *" arg2) |
| enter(self, arg2) -> place_t Visit this place, possibly 'unhiding' a section of text.
|
|
"void" | leave (self, "uint32" arg2) |
| leave(self, arg2) Leave this place, possibly 'hiding' a section of text that was previously expanded (at enter()-time.)
|
|
"int" | compare2 (self, "place_t" t2, "void *" arg3) |
| compare2(self, t2, arg3) -> int Compare two locations except line numbers (lnnum).
|
|
"bool" | deserialize (self, "bytevec_t const &" _in) |
| deserialize(self, _in) -> bool De-serialize into this instance.
|
|
"PyObject *" | generate (self, "void *" ud, "int" maxsize) |
| generate(self, ud, maxsize) -> ([str, ...], int, int, int) Generate text lines for the current location.
|
|