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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
ast.h 53 } AST;
67 #define zzchild(t) (((t)==NULL)? (AST *) NULL:(t->down)) /* MR19 */
68 #define zzsibling(t) (((t)==NULL)? (AST *) NULL:(t->right)) /* MR19 */
73 AST *zzastStack[ZZAST_STACKSIZE]; \
76 #define zzASTVars AST *_ast = NULL, *_sibling = NULL, *_tail = NULL
87 extern AST *zzastStack[];
92 AST *zztmake(AST *, ...);
94 AST *zztmake();
98 void zzlink(AST **, AST **, AST **);
    [all...]
ast.c 44 zzlink(AST **_root, AST **_sibling, AST **_tail)
47 AST **_root, **_sibling, **_tail;
57 AST *
64 AST *p = (AST *) calloc(1, sizeof(AST));
65 if ( p == NULL ) fprintf(stderr,"%s(%d): cannot allocate AST node\n",__FILE__,__LINE__);
72 zzsubchild(AST **_root, AST **_sibling, AST **_tail)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
ast.h 53 } AST;
67 #define zzchild(t) (((t)==NULL)? (AST *) NULL:(t->down)) /* MR19 */
68 #define zzsibling(t) (((t)==NULL)? (AST *) NULL:(t->right)) /* MR19 */
73 AST *zzastStack[ZZAST_STACKSIZE]; \
76 #define zzASTVars AST *_ast = NULL, *_sibling = NULL, *_tail = NULL
87 extern AST *zzastStack[];
90 void zzlink(AST **, AST **, AST **);
91 void zzsubchild(AST **, AST **, AST **);
    [all...]
ast.c 44 zzlink(AST **_root, AST **_sibling, AST **_tail)
47 AST **_root, **_sibling, **_tail;
57 AST *
64 AST *p = (AST *) calloc(1, sizeof(AST));
65 if ( p == NULL ) fprintf(stderr,"%s(%d): cannot allocate AST node\n",__FILE__,__LINE__);
72 zzsubchild(AST **_root, AST **_sibling, AST **_tail)
    [all...]
  /system/tools/hidl/c2hal/
AST.cpp 17 #include "AST.h"
37 AST::AST(const std::string &path,
48 AST::~AST() {
73 void *AST::scanner() {
77 void AST::setScanner(void *scanner) {
81 bool AST::isOpenGl() const {
85 const std::string& AST::getFilename() const {
89 void AST::setDeclarations(std::vector<Declaration *> *declarations)
    [all...]
AST.h 37 struct AST {
38 AST(const std::string &path,
42 ~AST();
93 DISALLOW_COPY_AND_ASSIGN(AST);
Include.cpp 44 void Include::processContents(AST &) {
TypeDef.cpp 37 void TypeDef::processContents(AST &ast) {
38 mDeclaration->processContents(ast);
  /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/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
PromoteMemToReg.h 37 /// If AST is specified, the specified tracker is updated to reflect changes
41 DominatorTree &DT, AliasSetTracker *AST = 0);
  /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...]
  /system/tools/hidl/
AST.cpp 17 #include "AST.h"
38 AST::AST(const Coordinator* coordinator, const std::string& path)
43 Scope* AST::getRootScope() {
48 void AST::addSyntaxError() {
52 size_t AST::syntaxErrors() const {
56 const std::string &AST::getFilename() const {
60 bool AST::setPackage(const char *package) {
73 FQName AST::package() const {
77 bool AST::isInterface() const
107 AST* ast = mCoordinator->parse(subFQName, &mImportedASTs, Coordinator::Enforce::NONE); local
496 AST* ast = mCoordinator->parse(name, nullptr \/* imported *\/, Coordinator::Enforce::NONE); local
    [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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
SimpleExpression.g3 38 output=AST;
  /external/llvm/include/llvm/Transforms/Utils/
PromoteMemToReg.h 41 /// If AST is specified, the specified tracker is updated to reflect changes
44 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/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 */);
67 rewrite.replace(tag, createDiscouragedText(ast, fragments), null /* editGroup */);
79 private static TagElement createIcuEnhancementText(AST ast, IDocElement fragment)
    [all...]
  /development/vndk/tools/header-checker/header-abi-dumper/src/
ast_processing.h 24 #include <clang/AST/AST.h>
25 #include <clang/AST/ASTConsumer.h>
26 #include <clang/AST/Mangle.h>
27 #include <clang/AST/RecursiveASTVisitor.h>
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 91 AliasSet *getAliasSet(AliasSetTracker &AST) {
95 AS = OldAS->getForwardedTarget(AST);
97 OldAS->dropRef(AST);
157 void dropRef(AliasSetTracker &AST) {
160 removeFromTracker(AST);
183 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
247 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
250 AliasSet *Dest = Forward->getForwardedTarget(AST);
253 Forward->dropRef(AST);
259 void removeFromTracker(AliasSetTracker &AST);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 91 AliasSet *getAliasSet(AliasSetTracker &AST) {
95 AS = OldAS->getForwardedTarget(AST);
97 OldAS->dropRef(AST);
169 void dropRef(AliasSetTracker &AST) {
172 removeFromTracker(AST);
195 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
261 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
264 AliasSet *Dest = Forward->getForwardedTarget(AST);
267 Forward->dropRef(AST);
273 void removeFromTracker(AliasSetTracker &AST);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 91 AliasSet *getAliasSet(AliasSetTracker &AST) {
95 AS = OldAS->getForwardedTarget(AST);
97 OldAS->dropRef(AST);
169 void dropRef(AliasSetTracker &AST) {
172 removeFromTracker(AST);
195 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
261 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
264 AliasSet *Dest = Forward->getForwardedTarget(AST);
267 Forward->dropRef(AST);
273 void removeFromTracker(AliasSetTracker &AST);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 91 AliasSet *getAliasSet(AliasSetTracker &AST) {
95 AS = OldAS->getForwardedTarget(AST);
97 OldAS->dropRef(AST);
169 void dropRef(AliasSetTracker &AST) {
172 removeFromTracker(AST);
195 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
261 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
264 AliasSet *Dest = Forward->getForwardedTarget(AST);
267 Forward->dropRef(AST);
273 void removeFromTracker(AliasSetTracker &AST);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 91 AliasSet *getAliasSet(AliasSetTracker &AST) {
95 AS = OldAS->getForwardedTarget(AST);
97 OldAS->dropRef(AST);
169 void dropRef(AliasSetTracker &AST) {
172 removeFromTracker(AST);
195 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
261 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
264 AliasSet *Dest = Forward->getForwardedTarget(AST);
267 Forward->dropRef(AST);
273 void removeFromTracker(AliasSetTracker &AST);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 91 AliasSet *getAliasSet(AliasSetTracker &AST) {
95 AS = OldAS->getForwardedTarget(AST);
97 OldAS->dropRef(AST);
169 void dropRef(AliasSetTracker &AST) {
172 removeFromTracker(AST);
195 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
261 AliasSet *getForwardedTarget(AliasSetTracker &AST) {
264 AliasSet *Dest = Forward->getForwardedTarget(AST);
267 Forward->dropRef(AST);
273 void removeFromTracker(AliasSetTracker &AST);
    [all...]

Completed in 718 milliseconds

1 2 3 4 5 6 7 8 91011>>