/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_compile.py | 502 ast = compile(code, '%s2' % fname, 'exec', _ast.PyCF_ONLY_AST) 503 self.assertTrue(type(ast) == _ast.Module) 504 co2 = compile(ast, '%s3' % fname, 'exec') 511 self.assertRaises(TypeError, compile, co1, '<ast>', 'eval') 514 self.assertRaises(TypeError, compile, _ast.If(), '<ast>', 'exec') 517 ast = _ast.Module() 518 ast.body = [_ast.BoolOp()] 519 self.assertRaises(TypeError, compile, ast, '<ast>', 'exec')
|
test_compiler.py | 3 from compiler.ast import flatten 265 NOLINENO = (compiler.ast.Module, compiler.ast.Stmt, compiler.ast.Discard)
|
/external/chromium_org/build/win/importlibs/ |
create_importlib_win.py | 7 import ast namespace 66 return ast.literal_eval(open(imports_file).read())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_compiler.py | 3 from compiler.ast import flatten 265 NOLINENO = (compiler.ast.Module, compiler.ast.Stmt, compiler.ast.Discard)
|
/external/chromium_org/ppapi/generators/ |
idl_parser.py | 22 # In this way an AST is built (reduced) depth first. 355 # AST. A list of extended attributes are denoted by a brackets '[' ... ']' [all...] |
idl_c_header.py | 30 # A specialized visitor which traverses the AST, building a mapping of 32 # The mapping is applied to the File nodes within the AST. 327 ast = ParseFiles(filenames) 328 if hgen.GenerateRelease(ast, 'M14', {}): 339 ast = ParseFiles(filenames) 340 if hgen.GenerateRange(ast, ['M13', 'M14', 'M15'], {}):
|
idl_c_proto.py | 714 # Build and resolve the AST and compare each file individual. 722 ast = ParseFiles(filenames) 725 for filenode in ast.GetListOf('File'): 742 ast = ParseFiles(filenames) 744 for f in ast.GetListOf('File'): 749 print cgen.Define(node, ast.releases, comment=True, prefix='tst_')
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.jasper_5.5.17.v201004212143.jar | |
/external/chromium_org/tools/metrics/histograms/ |
update_policies.py | 14 from ast import literal_eval
|
/external/javassist/src/main/javassist/compiler/ast/ |
ASTList.java | 16 package javassist.compiler.ast;
|
Declarator.java | 16 package javassist.compiler.ast;
|
IntConst.java | 16 package javassist.compiler.ast;
|
/external/javassist/src/main/javassist/expr/ |
Cast.java | 21 import javassist.compiler.ast.ASTList;
|
Instanceof.java | 21 import javassist.compiler.ast.ASTList;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
visitor.py | 1 from compiler import ast namespace 7 """Performs a depth-first walk of the AST 9 The ASTVisitor will walk the AST, performing either a preorder or 15 tree: an instance of ast.Node
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
visitor.py | 1 from compiler import ast namespace 7 """Performs a depth-first walk of the AST 9 The ASTVisitor will walk the AST, performing either a preorder or 15 tree: an instance of ast.Node
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
main.cpp | 34 #include "ast.h" 114 { "dump-ast", 0, &dump_ast, 1 }, 158 ast_node *ast = exec_node_data(ast_node, n, link); local 159 ast->print();
|
/external/chromium_org/third_party/skia/src/effects/ |
SkBitmapAlphaThresholdShader.cpp | 232 GrAutoScratchTexture ast(context, maskDesc, GrContext::kApprox_ScratchTexMatch); 233 GrTexture* maskTexture = ast.texture();
|
SkXfermodeImageFilter.cpp | 127 GrAutoScratchTexture ast(context, desc); 128 SkAutoTUnref<GrTexture> dst(ast.detach());
|
/external/chromium_org/tools/idl_parser/ |
idl_ppapi_parser.py | 22 # In this way an AST is built (reduced) depth first. 293 ast = IDLNode('AST', '__AST__', 0, 0, nodes) 295 print '\n'.join(ast.Tree(accept_props=['PROD', 'TYPE', 'VALUE']))
|
/external/chromium_org/tools/ |
nocompile_driver.py | 16 import ast namespace 112 raw_expectation = ast.literal_eval(match.group(1))
|
/external/mesa3d/src/glsl/ |
main.cpp | 34 #include "ast.h" 114 { "dump-ast", 0, &dump_ast, 1 }, 158 ast_node *ast = exec_node_data(ast_node, n, link); local 159 ast->print();
|
/external/skia/src/effects/ |
SkBitmapAlphaThresholdShader.cpp | 232 GrAutoScratchTexture ast(context, maskDesc, GrContext::kApprox_ScratchTexMatch); 233 GrTexture* maskTexture = ast.texture();
|
SkXfermodeImageFilter.cpp | 127 GrAutoScratchTexture ast(context, desc); 128 SkAutoTUnref<GrTexture> dst(ast.detach());
|
/external/chromium_org/third_party/skia/src/core/ |
SkMaskFilter.cpp | 330 GrAutoScratchTexture ast(context, desc, GrContext::kExact_ScratchTexMatch); 331 if (NULL == ast.texture()) { 336 ast.texture()->writePixels(0, 0, srcBM.width(), srcBM.height(), 340 src.reset(ast.detach());
|