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

1 2

  /external/javassist/src/main/javassist/compiler/ast/
Variable.java 24 protected Declarator declarator; field in class:Variable
26 public Variable(String sym, Declarator d) {
28 declarator = d;
31 public Declarator getDeclarator() { return declarator; }
34 return identifier + ":" + declarator.getType();
FieldDecl.java 27 public Declarator getDeclarator() { return (Declarator)tail().head(); }
Declarator.java 22 * Variable declarator.
24 public class Declarator extends ASTList implements TokenId {
30 public Declarator(int type, int dim) {
38 public Declarator(ASTList className, int dim) {
48 public Declarator(int type, String jvmClassName, int dim,
59 public Declarator make(Symbol sym, int dim, ASTree init) {
60 Declarator d = new Declarator(this.varType, this.arrayDim + dim);
MethodDecl.java 34 public Declarator getReturn() { return (Declarator)tail().head(); }
Visitor.java 32 public void atDeclarator(Declarator n) throws CompileError {}
  /external/javassist/src/main/javassist/compiler/
SymbolTable.java 19 import javassist.compiler.ast.Declarator;
33 public Declarator lookup(String name) {
34 Declarator found = (Declarator)get(name);
41 public void append(String name, Declarator value) {
Parser.java 44 Declarator d;
47 d = new Declarator(VOID, 0);
75 Declarator d) throws CompileError
104 ASTList mods, Declarator d)
183 private Declarator parseFormalType(SymbolTable tbl) throws CompileError {
188 return new Declarator(t, dim);
193 return new Declarator(name, dim);
204 private Declarator parseFormalParam(SymbolTable tbl)
207 Declarator d = parseFormalType(tbl);
480 Declarator d = parseFormalParam(tbl2)
    [all...]
JvstCodeGen.java 514 Declarator decl
515 = new Declarator(CLASS, MemberResolver.javaToJvmName(target),
559 Declarator decl
560 = new Declarator(exprType, className, arrayDim,
590 Declarator decl
591 = new Declarator(type, cname, dim, varNo, new Symbol(varName));
Javac.java 131 Declarator d = fd.getDeclarator();
161 Declarator r = md.getReturn();
MemberResolver.java 326 return lookupClass(Declarator.astToClassName(name, '.'), false);
333 public CtClass lookupClass(Declarator decl) throws CompileError {
MemberCodeGen.java 221 Declarator decl = (Declarator)p.getLeft();
326 atNewArrayExpr2(type, sizeExpr, Declarator.astToClassName(classname, '/'), init);
    [all...]
CodeGen.java 128 protected int getLocalVar(Declarator d) {
268 atDeclarator((Declarator)params.head());
709 public void atDeclarator(Declarator d) throws CompileError {
777 Declarator d, ASTree right,
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp 37 /// isOmittedBlockReturnType - Return true if this declarator is missing a
39 static bool isOmittedBlockReturnType(const Declarator &D) {
40 if (D.getContext() != Declarator::BlockLiteralContext ||
118 /// The declarator being processed.
119 Declarator &declarator; member in class:__anon5914::TypeProcessingState
121 /// The index of the declarator chunk we're currently processing.
140 TypeProcessingState(Sema &sema, Declarator &declarator)
141 : sema(sema), declarator(declarator)
376 Declarator &declarator = state.getDeclarator(); local
430 Declarator &declarator = state.getDeclarator(); local
491 Declarator &declarator = state.getDeclarator(); local
524 Declarator &declarator = state.getDeclarator(); local
577 Declarator &declarator = state.getDeclarator(); local
638 Declarator &declarator = state.getDeclarator(); local
706 Declarator &declarator = state.getDeclarator(); local
1782 Declarator &declarator = state.getDeclarator(); local
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 193 /// A class for parsing a declarator.
194 class ParsingDeclarator : public Declarator {
199 : Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
203 return static_cast<const ParsingDeclSpec&>(Declarator::getDeclSpec());
211 Declarator::clear();
220 /// A class for parsing a field declarator.
ParseTemplate.cpp 193 if (Context == Declarator::MemberContext) {
232 // Parse the declarator.
233 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);
235 // Error parsing the declarator?
507 Declarator::TemplateTypeArgContext).get();
629 Declarator ParamDecl(DS, Declarator::TemplateParamContext);
    [all...]
ParseDecl.cpp 35 /// specifier-qualifier-list abstract-declarator[opt]
39 Declarator::TheContext Context,
55 // Parse the abstract-declarator, if present.
56 Declarator DeclaratorInfo(DS, Context);
    [all...]
ParseObjc.cpp 325 // Install the property declarator into interfaceDecl.
797 Declarator::TheContext Context) {
798 assert(Context == Declarator::ObjCParameterContext ||
799 Context == Declarator::ObjCResultContext);
804 Context == Declarator::ObjCParameterContext);
847 // destroying the internal invariants of the declarator here,
856 /// declarator and add them to the given list.
858 Declarator &D) {
876 Declarator::TheContext context,
878 assert(context == Declarator::ObjCParameterContext |
    [all...]
Parser.cpp 690 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
701 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
713 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
723 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
738 ParseExplicitInstantiation(Declarator::FileContext,
761 /// declarator, continues a declaration or declaration list.
780 /// declarator, indicates the start of a function definition.
781 bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
782 assert(Declarator.isFunctionDeclarator() && "Isn't a function declarator");
    [all...]
ParseExprCXX.cpp 573 /// lambda-introducer lambda-declarator[opt] compound-statement
596 /// lambda-declarator:
793 // Parse lambda-declarator[opt].
795 Declarator D(DS, Declarator::LambdaExprContext);
    [all...]
ParseExpr.cpp     [all...]
ParseDeclCXX.cpp 545 Declarator::AliasTemplateContext :
546 Declarator::AliasDeclContext, AS, OwnedType,
836 // Fake up a Declarator to use with ActOnTypeName.
841 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
926 // Fake up a Declarator to use with ActOnTypeName.
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 361 TypeSourceInfo *Declarator;
367 TemplateArgumentLocInfo(TypeSourceInfo *TInfo) : Declarator(TInfo) {}
382 return Declarator;
  /external/clang/include/clang/Sema/
DeclSpec.h 51 class Declarator;
715 /// \brief Checks if this DeclSpec can stand alone, without a Declarator.
    [all...]
Sema.h     [all...]

Completed in 120 milliseconds

1 2