Searched defs:_ast (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A Dast.h47 typedef struct _ast { struct
48 struct _ast *right, *down;
50 struct _ast *left, *up;
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
60 #define AST_REQUIRED_FIELDS struct _ast *right, *down;
76 #define zzASTVars AST *_ast = NULL, *_sibling = NULL, *_tail = NULL
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A Dast.h47 typedef struct _ast { struct
48 struct _ast *right, *down;
50 struct _ast *left, *up;
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
60 #define AST_REQUIRED_FIELDS struct _ast *right, *down;
76 #define zzASTVars AST *_ast = NULL, *_sibling = NULL, *_tail = NULL
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_compile.py3 import _ast namespace
474 ast = compile(code, '%s2' % fname, 'exec', _ast.PyCF_ONLY_AST)
475 self.assertTrue(type(ast) == _ast.Module)
482 co1 = compile('print 1', '<string>', 'exec', _ast.PyCF_ONLY_AST)
486 self.assertRaises(TypeError, compile, _ast.If(), '<ast>', 'exec')
489 ast = _ast.Module()
490 ast.body = [_ast.BoolOp()]
H A Dtest_sys.py769 # _ast.AST
770 import _ast namespace
771 check(_ast.AST(), size(h + ''))

Completed in 252 milliseconds