HomeSort by relevance Sort by last modified time
    Searched refs:AST (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
ast-builder.rb 19 AST::CommonTreeAdaptor.new( token_class )
29 AST::RewriteRuleSubtreeStream.new( @adaptor, desc, element )
33 AST::RewriteRuleTokenStream.new( @adaptor, desc, element )
37 AST::RewriteRuleNodeStream.new( @adaptor, desc, element )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
tree-rewrite.rb 12 output=AST;
24 output=AST;
36 output=AST;
48 output=AST;
59 output=AST;
71 output=AST;
82 output=AST;
94 output=AST;
105 output=AST;
117 output=AST;
    [all...]
rewrites.rb 62 options {language=Ruby;output=AST;}
75 options {language=Ruby;output=AST;}
89 options {language=Ruby;output=AST;}
103 options {language=Ruby;output=AST;}
117 options {language=Ruby;output=AST;}
130 options {language=Ruby;output=AST;}
144 options {language=Ruby;output=AST;}
158 options {language=Ruby;output=AST;}
173 options {language=Ruby;output=AST;}
187 options {language=Ruby;output=AST;}
    [all...]
auto-ast.rb 63 options {language=Ruby;output=AST;}
75 options {language=Ruby;output=AST;}
87 options {language=Ruby;output=AST;}
99 options {language=Ruby;output=AST;}
111 options {language=Ruby;output=AST;}
124 options {language=Ruby;output=AST;}
136 options {language=Ruby;output=AST;}
148 options {language=Ruby;output=AST;}
160 options {language=Ruby;output=AST;}
172 options {language=Ruby;output=AST;}
    [all...]
hetero-nodes.rb 13 output=AST;
32 output=AST;
51 output=AST;
70 output=AST;
89 output=AST;
109 output=AST;
129 output=AST;
149 output=AST;
169 output=AST;
189 output=AST;
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
AstNodes.java 16 package com.google.currysrc.api.process.ast;
18 import org.eclipse.jdt.core.dom.AST;
29 public static TagElement createTextTagElement(AST ast, String text) {
30 TagElement element = (TagElement) ast.createInstance(TagElement.class);
31 TextElement textElement = createTextElement(ast, text);
36 public static TextElement createTextElement(AST ast, String text) {
37 TextElement textElement = ast.newTextElement();
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
ReplaceIcuTags.java 19 import com.google.currysrc.api.process.ast.AstNodes;
22 import org.eclipse.jdt.core.dom.AST;
38 AST ast = tag.getAST(); local
45 rewrite.replace(tag, createIcuMarker(ast), null /* editGroup */);
49 rewrite.replace(tag, createIcuUsageText(ast), null /* editGroup */);
59 rewrite.replace(tag, createIcuEnhancementText(ast, element), null /* editGroup */);
63 rewrite.replace(tag, createIcuNoteText(ast), null /* editGroup */);
70 private static TagElement createIcuEnhancementText(AST ast, IDocElement fragment)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
SimpleExpression.g3 38 output=AST;
FastSimpleExpression.g3 39 output=AST;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/experimental/parser/
pyprotobuf.g 22 output = AST;
  /external/llvm/include/llvm/Transforms/Utils/
PromoteMemToReg.h 42 /// If AST is specified, the specified tracker is updated to reflect changes
45 AliasSetTracker *AST = nullptr,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoringTest.java 23 import org.eclipse.jdt.core.dom.AST;
121 final AST astValidator = AST.newAST(AST.JLS3);
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 84 AliasSet *getAliasSet(AliasSetTracker &AST) {
88 AS = OldAS->getForwardedTarget(AST);
90 OldAS->dropRef(AST);
150 void dropRef(AliasSetTracker &AST) {
153 removeFromTracker(AST);
178 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
242 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
245 AliasSet *Dest = Forward->getForwardedTarget(AST);
248 Forward->dropRef(AST);
254 void removeFromTracker(AliasSetTracker &AST);
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 15 #include "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/DeclVisitor.h"
18 #include "clang/AST/StmtVisitor.h"
19 #include "clang/AST/TypeOrdering.h"
235 // If we loaded from an AST file, balance out the BeginSourceFile call.
646 ASTUnit &AST, bool CaptureDiagnostics) {
649 Diags->setClient(new StoredDiagnosticConsumer(AST.StoredDiagnostics));
659 std::unique_ptr<ASTUnit> AST(new ASTUnit(true));
663 ASTUnitCleanup(AST.get())
    [all...]
  /external/clang/lib/
Makefile 12 PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis Frontend \
  /external/clang/unittests/
Makefile 17 PARALLEL_DIRS = CodeGen Basic Lex Driver Format ASTMatchers AST Tooling \
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
JavadocUtils.java 18 import com.google.currysrc.api.process.ast.AstNodes;
20 import org.eclipse.jdt.core.dom.AST;
39 AST ast = node.getAST(); local
40 javadoc = (Javadoc) ast.createInstance(Javadoc.class);
47 AST ast = javadoc.getAST(); local
48 TagElement tagElement = AstNodes.createTextTagElement(ast, tagText);
  /external/clang/
clang-tblgen-rules.mk 25 LOCAL_GENERATED_SOURCES += $(generated_sources)/include/clang/AST/AttrDump.inc
26 $(generated_sources)/include/clang/AST/AttrDump.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
27 $(generated_sources)/include/clang/AST/AttrDump.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
32 LOCAL_GENERATED_SOURCES += $(generated_sources)/include/clang/AST/AttrImpl.inc
33 $(generated_sources)/include/clang/AST/AttrImpl.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
34 $(generated_sources)/include/clang/AST/AttrImpl.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
74 LOCAL_GENERATED_SOURCES += $(generated_sources)/include/clang/AST/Attrs.inc
75 $(generated_sources)/include/clang/AST/Attrs.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
76 $(generated_sources)/include/clang/AST/Attrs.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
88 LOCAL_GENERATED_SOURCES += $(generated_sources)/include/clang/AST/AttrVisitor.in
    [all...]
  /external/clang/unittests/AST/
Makefile 1 ##===- unittests/AST/Makefile ------------------------------*- Makefile -*-===##
11 TESTNAME = AST
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammar.g3 38 output=AST;
ProfileGrammar.g3 38 output=AST;
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 229 AliasSetTracker *AST;
272 AliasSetTracker *AST, AssumptionCache *AC)
275 AST(AST), AC(AC) {}
339 AliasSetTracker *AST) {
391 if (AST && LI->getType()->isPointerTy())
392 AST->deleteValue(LI);
413 if (AST)
414 AST->deleteValue(AI);
438 AliasSetTracker *AST) {
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
basic.rb 13 output=AST;
37 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
49 output=AST;
73 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
85 output=AST;
112 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
124 output=AST;
150 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
162 output=AST;
187 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ast.py 3 ast
6 The `ast` module helps Python applications to process trees of the Python
11 An abstract syntax tree can be generated by passing `ast.PyCF_ONLY_AST` as
14 classes all inherit from `ast.AST`.
34 Parse the source into an AST node.
93 if isinstance(node, AST):
108 if not isinstance(node, AST):
109 raise TypeError('expected AST, got %r' % node.__class__.__name__)
179 if isinstance(field, AST)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ast.py 3 ast
6 The `ast` module helps Python applications to process trees of the Python
11 An abstract syntax tree can be generated by passing `ast.PyCF_ONLY_AST` as
14 classes all inherit from `ast.AST`.
34 Parse the source into an AST node.
93 if isinstance(node, AST):
108 if not isinstance(node, AST):
109 raise TypeError('expected AST, got %r' % node.__class__.__name__)
179 if isinstance(field, AST)
    [all...]

Completed in 588 milliseconds

1 2 3 4 5 6 7