HomeSort by relevance Sort by last modified time
    Searched defs:ast (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/build/win/importlibs/
filter_export_list.py 7 import ast namespace
44 master_exports = ast.literal_eval(f.read())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
syntax.py 1 """Check for errs in the AST.
8 But it seems clearer to write checkers that use the AST to detect
12 from compiler import ast, walk namespace
20 """A visitor to find syntax errors in the AST."""
43 ## if isinstance(target, ast.AssList):
future.py 5 from compiler import ast, walk namespace
9 if not isinstance(stmt, ast.From):
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/
syntax.py 1 """Check for errs in the AST.
8 But it seems clearer to write checkers that use the AST to detect
12 from compiler import ast, walk namespace
20 """A visitor to find syntax errors in the AST."""
43 ## if isinstance(target, ast.AssList):
  /external/javassist/src/main/javassist/compiler/ast/
ArrayInit.java 16 package javassist.compiler.ast;
AssignExpr.java 16 package javassist.compiler.ast;
BinExpr.java 16 package javassist.compiler.ast;
InstanceOfExpr.java 16 package javassist.compiler.ast;
Keyword.java 16 package javassist.compiler.ast;
Member.java 16 package javassist.compiler.ast;
StringL.java 16 package javassist.compiler.ast;
Symbol.java 16 package javassist.compiler.ast;
Variable.java 16 package javassist.compiler.ast;
ASTree.java 16 package javassist.compiler.ast;
CallExpr.java 16 package javassist.compiler.ast;
CastExpr.java 16 package javassist.compiler.ast;
CondExpr.java 16 package javassist.compiler.ast;
FieldDecl.java 16 package javassist.compiler.ast;
MethodDecl.java 16 package javassist.compiler.ast;
Stmnt.java 16 package javassist.compiler.ast;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 6 from compiler import transformer, ast namespace
20 self.assertIsInstance(a, ast.Module)
22 self.assertIsInstance(child1, ast.Stmt)
24 self.assertIsInstance(child2, ast.Assign)
26 # This actually tests the compiler, but it's a way to assure the ast
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 6 from compiler import transformer, ast namespace
20 self.assertIsInstance(a, ast.Module)
22 self.assertIsInstance(child1, ast.Stmt)
24 self.assertIsInstance(child2, ast.Assign)
26 # This actually tests the compiler, but it's a way to assure the ast
  /external/chromium/testing/gmock/scripts/generator/cpp/
gmock_class.py 36 from cpp import ast namespace
52 function_type = ast.FUNCTION_VIRTUAL | ast.FUNCTION_PURE_VIRTUAL
53 ctor_or_dtor = ast.FUNCTION_CTOR | ast.FUNCTION_DTOR
58 if (isinstance(node, ast.Function) and
63 if node.modifiers & ast.FUNCTION_CONST:
109 if (isinstance(node, ast.Class) and node.body and
178 builder = ast.BuilderFromSource(source, filename)
  /external/chromium_org/mojo/public/bindings/generators/
run_cpp_generator.py 6 import ast namespace
16 dict = ast.literal_eval(s)

Completed in 1558 milliseconds

1 2 3 4