Searched refs:AST (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DASTRefCount.cpp8 #include "antlr/AST.hpp"
14 ASTRef::ASTRef(AST* p)
26 ASTRef* ASTRef::getRef(const AST* p)
29 AST* pp = const_cast<AST*>(p);
H A DBaseAST.cpp12 #include "antlr/AST.hpp"
274 extern ANTLR_API AST* const nullASTptr = 0;
276 ANTLR_API AST* const nullASTptr = 0;
H A Ddll.cpp44 // these come from AST.hpp
45 template class ANTLR_API ASTRefCount< AST >;
48 //template ANTLR_API int operator<( ASTRefCount< AST >, ASTRefCount< AST > );
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DASTRefCount.hpp17 class AST;
21 AST* const ptr;
24 ASTRef(AST* p);
36 static ASTRef* getRef(const AST* p);
49 ASTRefCount(const AST* p=0)
62 ASTRefCount<T>& operator=(AST* other)
92 typedef ASTRefCount<AST> RefAST;
H A DAST.hpp8 * $Id: //depot/code/org.antlr/release/antlr-2.7.7/lib/cpp/antlr/AST.hpp#2 $
23 class ANTLR_API AST { class in namespace:antlr
25 AST() : ref(0) {} function in class:antlr::AST
26 AST(const AST&) : ref(0) {} argument
27 virtual ~AST() {}
29 /// Return the type name for this AST node. (for XML output)
31 /// Clone this AST node.
80 * an AST element.
88 * @param in the stream to read the AST attribute
[all...]
H A DASTArray.hpp12 #include <antlr/AST.hpp>
H A DBaseAST.hpp12 #include <antlr/AST.hpp>
25 class ANTLR_API BaseAST : public AST {
27 BaseAST() : AST()
31 : AST(other)
41 /// Clone this AST node.
126 down = static_cast<BaseAST*>(static_cast<AST*>(nullAST));
132 down = static_cast<BaseAST*>(static_cast<AST*>(c));
138 right = static_cast<BaseAST*>(static_cast<AST*>(n));
154 * @param out the stream to write the AST attributes to.
158 * output for AST derive
[all...]
H A DNoViableAltException.hpp14 #include <antlr/AST.hpp>
H A DASTPair.hpp12 #include <antlr/AST.hpp>
19 * representing the current AST root and current AST sibling.
H A DASTNULLType.hpp12 #include <antlr/AST.hpp>
23 class ANTLR_API ASTNULLType : public AST {
H A DMismatchedTokenException.hpp15 #include <antlr/AST.hpp>
94 /// The offending AST node if tree walking
H A DASTFactory.hpp12 #include <antlr/AST.hpp>
28 /** AST Super Factory shared by TreeParser and Parser.
29 * This super factory maintains a map of all AST node types to their respective
30 * AST factories. One instance should be shared among a parser/treeparser
42 /* The mapping of AST node type to factory..
50 * factory_node_name should be the name of the AST node type the factory
60 /// Set the maximum node (AST) type this factory may encounter
63 /// Add a child to the current AST
65 /// Create new empty AST node. The right default type shou
67 /// Create AST nod
[all...]
H A DTreeParser.hpp12 #include <antlr/AST.hpp>
43 /// Get the AST return value squirreled away in the parser
57 /** Specify the AST factory to be used during tree building. (Compulsory)
59 * the tree in the treeparser). The AST Factory is shared between
60 * parser (who builds the initial AST) and treeparser.
91 /** The AST Null object; the parsing cursor is set to this when
113 /** AST support code; parser and treeparser delegate to this object */
H A DMakefile.in17 @abs_top_srcdir@/lib/cpp/antlr/AST.hpp \
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DPromoteMemToReg.h36 /// If AST is specified, the specified tracker is updated to reflect changes
40 DominatorTree &DT, AliasSetTracker *AST = 0);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DAliasSetTracker.h83 AliasSet *getAliasSet(AliasSetTracker &AST) { argument
87 AS = OldAS->getForwardedTarget(AST);
89 OldAS->dropRef(AST);
143 void dropRef(AliasSetTracker &AST) { argument
146 removeFromTracker(AST);
171 void mergeSetIn(AliasSet &AS, AliasSetTracker &AST);
238 AliasSet *getForwardedTarget(AliasSetTracker &AST) { argument
241 AliasSet *Dest = Forward->getForwardedTarget(AST);
244 Forward->dropRef(AST);
250 void removeFromTracker(AliasSetTracker &AST);
285 AliasSetTracker *AST; member in class:llvm::AliasSetTracker::ASTCallbackVH
431 operator <<(raw_ostream &OS, const AliasSetTracker &AST) argument
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp207 /// AST - An AliasSetTracker object to update. If null, don't update it.
209 AliasSetTracker *AST; member in struct:__anon10460::PromoteMem2Reg
250 : Allocas(A), DT(dt), DIB(0), AST(ast) {}
390 if (AST) PointerAllocaValues.resize(Allocas.size());
408 if (AST) AST->deleteValue(AI);
440 if (AST) AST->deleteValue(AI);
474 if (AST) AST
1135 PromoteMemToReg(const std::vector<AllocaInst*> &Allocas, DominatorTree &DT, AliasSetTracker *AST) argument
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DAliasSetTracker.cpp31 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) { argument
44 AliasAnalysis &AA = AST.getAliasAnalysis();
90 void AliasSet::removeFromTracker(AliasSetTracker &AST) { argument
92 AST.removeAliasSet(this);
95 void AliasSet::addPointer(AliasSetTracker &AST, PointerRec &Entry, argument
103 AliasAnalysis &AA = AST.getAliasAnalysis();
236 /// this alias set, false otherwise. This does not modify the AST object or
368 void AliasSetTracker::add(const AliasSetTracker &AST) { argument
369 assert(&AA == &AST.AA &&
372 // Loop over all of the alias sets in AST, addin
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/tzcode/
H A Dicuzones27 Zone SystemV/AST4 -4:00 - AST
45 Link America/Anchorage AST
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLICM.cpp219 assert(InnerAST && "Where is my AST?");
224 // Once we've incorporated the inner loop's AST into ours, we don't need the
236 // Because subloops have already been incorporated into AST, we skip blocks in
506 // This instruction is no longer in the AST for the current loop, because
663 AliasSetTracker &AST; member in class:__anon10388::LoopPromoter
675 AST(ast), DL(dl), Alignment(alignment) {}
704 AST.copyValue(LI, V);
707 AST.deleteValue(I);
776 assert(!load->isVolatile() && "AST broken");
784 assert(!store->isVolatile() && "AST broke
865 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); local
875 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dconf.tab9 # standard: AST, C, POSIX, SVID, XOPEN, <vendor> { SCO, SGI, SUN, ... }
343 OPEN_MAX_CEIL AST XX 1 L OPEN_MAX
441 RELEASE AST XX 1 L
461 SF_BUFSIZE AST XX 1 MUX sh{
464 SH AST CS 1 MU sh{
545 TMP AST CS 1 MU "/tmp"
578 VERSION AST XX 1 MS _AST_VERSION
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/
H A DMakefile221 .MAKEINIT : .AST.INIT
222 .AST.INIT : .MAKE
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dgetdate.c2478 { "AST", tZONE, -HOUR ( 4) }, /* Atlantic Standard */
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dparse.tcl56 set t [struct::tree AST]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/
H A Dparse.tcl55 set t [struct::tree AST]

Completed in 424 milliseconds

12