コード例 #1
0
ファイル: cnode.py プロジェクト: xcode2010/bip
    def cstr(self):
        """
            Property which return the C code corresponding to the
            decompilation of this :class:`CNode` as a onliner. This will
            include the children of this object.

            :return str: The human readable C string corresponding to this
                :class:`CNode` as a onliner.
        """
        s = self._citem.print1(self._hxcfunc._cfunc.__ref__())
        return ida_pro.str2user(ida_lines.tag_remove(s))
コード例 #2
0
ファイル: vds5.py プロジェクト: ylkcy/src
 def get_expr_name(self, expr):
     name = expr.print1(None)
     name = ida_lines.tag_remove(name)
     name = ida_pro.str2user(name)
     return name
コード例 #3
0
ファイル: vds5.py プロジェクト: AmesianX/src
 def get_expr_name(self, expr):
     name = expr.print1(None)
     name = ida_lines.tag_remove(name)
     name = ida_pro.str2user(name)
     return name