/external/javassist/src/main/javassist/compiler/ast/ |
CastExpr.java | 16 package javassist.compiler.ast;
|
CondExpr.java | 16 package javassist.compiler.ast;
|
MethodDecl.java | 16 package javassist.compiler.ast;
|
Pair.java | 16 package javassist.compiler.ast;
|
Stmnt.java | 16 package javassist.compiler.ast;
|
DoubleConst.java | 16 package javassist.compiler.ast;
|
Expr.java | 16 package javassist.compiler.ast;
|
NewExpr.java | 16 package javassist.compiler.ast;
|
Visitor.java | 16 package javassist.compiler.ast; 23 * @see ast.ASTree#accept(Visitor)
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
TemplateCompiler.java | 39 * Takes a template AST and compiles it into a Java class, which executes much faster than the 82 * Compile AST into Java class. 84 * @param ast A template AST. 88 private Template compile(TemplateSyntaxTree ast, String templateName, EscapeMode mode) { 89 CharSequence javaSource = translateAstToJavaSource(ast, mode); 109 private CharSequence translateAstToJavaSource(TemplateSyntaxTree ast, EscapeMode mode) { 113 ast.apply(new TemplateTranslator(PACKAGE_NAME, CLASS_NAME, sourceBuffer, propagateStatus));
|
/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):
|
/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/chromium/testing/gmock/scripts/generator/cpp/ |
gmock_class_test.py | 30 from cpp import ast namespace 52 builder = ast.BuilderFromSource(cpp_source, '<test>') 161 builder = ast.BuilderFromSource(cpp_source, filename)
|
/external/chromium_org/ppapi/generators/ |
idl_lint.py | 29 # Once the AST is build, we need to resolve the namespace and version 106 def Lint(ast): 110 if wnone or GetOption(opt): ast.SetProperty(opt, True) 113 for filenode in ast.GetListOf('File'):
|
idl_gen_wrapper.py | 73 def GenerateRelease(self, ast, release, options): 74 return self.GenerateRange(ast, [release], options) 213 def DetermineInterfaces(self, ast, releases): 217 for filenode in ast.GetListOf('File'): 408 def GenerateRange(self, ast, releases, options): 423 iface_releases = self.DetermineInterfaces(ast, releases)
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ |
FileCheckerCallable.java | 5 import com.google.javascript.rhino.head.ast.AstNode; 6 import com.google.javascript.rhino.head.ast.AstRoot;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
EclipseLintClient.java | 72 import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration; 108 import lombok.ast.TypeReference; 109 import lombok.ast.ecj.EcjTreeConverter; 110 import lombok.ast.grammar.ParseProblem; 111 import lombok.ast.grammar.Source; [all...] |
/prebuilts/misc/common/ecj/ |
ecj.jar | |
/external/chromium_org/third_party/skia/src/gpu/ |
GrSWMaskHelper.cpp | 162 GrAutoScratchTexture ast; local 172 if (!helper.getTexture(&ast)) { 176 helper.toTexture(ast.texture()); 178 return ast.detach();
|
/external/skia/src/gpu/ |
GrSWMaskHelper.cpp | 162 GrAutoScratchTexture ast; local 172 if (!helper.getTexture(&ast)) { 176 helper.toTexture(ast.texture()); 178 return ast.detach();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarAST.java | 160 public void initialize(Tree ast) { 161 GrammarAST t = ((GrammarAST)ast); 421 public boolean equals(Object ast) { 422 if ( this == ast ) { 425 if ( !(ast instanceof GrammarAST) ) { 426 return this.getType() == ((Tree)ast).getType(); 428 GrammarAST t = (GrammarAST)ast;
|
/sdk/build/ |
tools.atree | 26 # manual copy of lombok-ast for now 27 prebuilts/tools/common/lombok-ast/lombok-ast-0.2.1.jar tools/lib/lombok-ast-0.2.1.jar 28 prebuilts/tools/common/lombok-ast/LICENSE.txt tools/lib/lombok-ast-NOTICE.txt
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
jdimodel.jar | |
/prebuilts/python/darwin-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')
|