Go to the source code of this file.
Classes | |
class | cpp.ast._GenericDeclaration |
class | cpp.ast._NestedType |
class | cpp.ast._NullDict |
class | cpp.ast.AstBuilder |
class | cpp.ast.Class |
class | cpp.ast.Define |
class | cpp.ast.Delete |
class | cpp.ast.Enum |
class | cpp.ast.Expr |
class | cpp.ast.Friend |
class | cpp.ast.Function |
class | cpp.ast.Goto |
class | cpp.ast.Include |
class | cpp.ast.Method |
class | cpp.ast.Node |
class | cpp.ast.Parameter |
class | cpp.ast.Return |
class | cpp.ast.Struct |
class | cpp.ast.Type |
class | cpp.ast.TypeConverter |
class | cpp.ast.Typedef |
class | cpp.ast.Union |
class | cpp.ast.Using |
class | cpp.ast.VariableDeclaration |
Namespaces | |
cpp.ast | |
Functions | |
def | cpp.ast.BuilderFromSource (source, filename) |
def | cpp.ast.main (argv) |
def | cpp.ast.next (obj) |
def | cpp.ast.PrintAllIndentifiers (filenames, should_print) |
def | cpp.ast.PrintIndentifiers (filename, should_print) |
def | cpp.ast.reversed (seq) |
Variables | |
string | cpp.ast.__author__ = 'nnorwitz@google.com (Neal Norwitz)' |
string | cpp.ast._INTERNAL_TOKEN = 'internal' |
string | cpp.ast._NAMESPACE_POP = 'ns-pop' |
int | cpp.ast.FUNCTION_ATTRIBUTE = 0x20 |
int | cpp.ast.FUNCTION_CONST = 0x01 |
int | cpp.ast.FUNCTION_CTOR = 0x08 |
int | cpp.ast.FUNCTION_DTOR = 0x10 |
int | cpp.ast.FUNCTION_NONE = 0x00 |
int | cpp.ast.FUNCTION_PURE_VIRTUAL = 0x04 |
int | cpp.ast.FUNCTION_THROW = 0x80 |
int | cpp.ast.FUNCTION_UNKNOWN_ANNOTATION = 0x40 |
int | cpp.ast.FUNCTION_VIRTUAL = 0x02 |