コード例 #1
0
    def __init__(self, cursor, of_root):
        self.data = {}
        self.cursor = cursor

        self.data['file'] = cursor.location.file.name.replace(of_root, '', 1)

        split = cursor.location.file.name.split('/')
        self.data['filename'] = self.filename   = split[-1]
        self.data['folder']   = self.folder     = split[-2]

        # Addons should take parents parents folder name
        if self.folder == 'src' and self.data['file'].startswith('/addons'):
            self.data['folder']   = self.folder     = split[-3]

        self.data['line']                       = cursor.location.line

        self.data['name']     = self.name       = cursor.spelling

        # Parse documentation
        self.data['documentation'] = clang_documentation_parser.parse_docs(cursor)

        # Parse visible
        self.data['visible'] = True
        if self.data['documentation']['internal']:
            self.data['visible'] = False
コード例 #2
0
    def __init__(self, cursor, of_root):
        self.data = {}
        self.cursor = cursor

        self.data['file'] = cursor.location.file.name.replace(of_root, '', 1)

        split = cursor.location.file.name.split('/')
        self.data['filename'] = self.filename = split[-1]
        self.data['folder'] = self.folder = split[-2]

        # Addons should take parents parents folder name
        if self.folder == 'src' and self.data['file'].startswith('/addons'):
            self.data['folder'] = self.folder = split[-3]

        self.data['line'] = cursor.location.line

        self.data['name'] = self.name = cursor.spelling

        # Parse documentation
        self.data['documentation'] = clang_documentation_parser.parse_docs(
            cursor)

        # Parse visible
        self.data['visible'] = True
        if self.data['documentation']['internal']:
            self.data['visible'] = False
コード例 #3
0
    def __init__(self, cursor, of_root):
        DocBase.__init__(self, cursor, of_root)

        self.data["type"] = "enum"

        self.data["options"] = []
        for c in cursor.get_children():
            if c.kind == CursorKind.ENUM_CONSTANT_DECL:
                doc = clang_documentation_parser.parse_docs(c)

                if len(self.data["options"]) > 0 and self.data["options"][-1]["documentation"]["text"] == doc["text"]:
                    doc["text"] = ""

                self.data["options"].append({"name": c.spelling, "value": c.enum_value, "documentation": doc})
コード例 #4
0
    def __init__(self, cursor, of_root):
        DocBase.__init__(self, cursor, of_root)

        self.data['type'] = 'enum'

        self.data['options'] = []
        for c in cursor.get_children():
            if c.kind == CursorKind.ENUM_CONSTANT_DECL:
                doc = clang_documentation_parser.parse_docs(c)

                if len(self.data['options']) > 0 and self.data['options'][-1]['documentation']['text'] == doc['text']:
                    doc['text'] = ''

                self.data['options'].append({
                    'name':c.spelling,
                    'value': c.enum_value,
                    'documentation': doc
                })