HomeSort by relevance Sort by last modified time
    Searched refs:Declarator (Results 1 - 25 of 42) 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 45 /// isOmittedBlockReturnType - Return true if this declarator is missing a
47 static bool isOmittedBlockReturnType(const Declarator &D) {
48 if (D.getContext() != Declarator::BlockLiteralContext ||
130 /// The declarator being processed.
131 Declarator &declarator; member in class:__anon5576::TypeProcessingState
133 /// The index of the declarator chunk we're currently processing.
152 TypeProcessingState(Sema &sema, Declarator &declarator)
153 : sema(sema), declarator(declarator)
372 Declarator &declarator = state.getDeclarator(); local
426 Declarator &declarator = state.getDeclarator(); local
487 Declarator &declarator = state.getDeclarator(); local
520 Declarator &declarator = state.getDeclarator(); local
568 Declarator &declarator = state.getDeclarator(); local
633 Declarator &declarator = state.getDeclarator(); local
702 Declarator &declarator = state.getDeclarator(); local
1920 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.
ParseDecl.cpp 38 /// specifier-qualifier-list abstract-declarator[opt]
42 Declarator::TheContext Context,
58 // Parse the abstract-declarator, if present.
59 Declarator DeclaratorInfo(DS, Context);
125 Declarator *D) {
340 Declarator *D) {
    [all...]
ParseTemplate.cpp 177 if (Context == Declarator::MemberContext) {
216 // Parse the declarator.
217 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context);
219 // Error parsing the declarator?
238 if (Context != Declarator::FileContext) {
255 // If the declarator-id is not a template-id, issue a diagnostic and
529 Declarator::TemplateTypeArgContext).get();
663 Declarator ParamDecl(DS, Declarator::TemplateParamContext);
713 Declarator &D)
    [all...]
ParseObjc.cpp 460 // Install the property declarator into interfaceDecl.
783 Declarator::TheContext Context) {
784 assert(Context == Declarator::ObjCParameterContext ||
785 Context == Declarator::ObjCResultContext);
790 Context == Declarator::ObjCParameterContext);
833 // destroying the internal invariants of the declarator here,
842 /// declarator and add them to the given list.
844 Declarator &D) {
862 Declarator::TheContext context,
864 assert(context == Declarator::ObjCParameterContext |
    [all...]
Parser.cpp 709 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
719 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
730 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
739 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs);
754 ParseExplicitInstantiation(Declarator::FileContext,
776 /// declarator, continues a declaration or declaration list.
795 /// declarator, indicates the start of a function definition.
796 bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
797 assert(Declarator.isFunctionDeclarator() && "Isn't a function declarator");
    [all...]
ParseExprCXX.cpp 681 /// lambda-introducer lambda-declarator[opt] compound-statement
712 /// lambda-declarator:
    [all...]
ParseExpr.cpp     [all...]
ParseDeclCXX.cpp 538 if (getLangOpts().CPlusPlus11 && Context == Declarator::MemberContext &&
617 ? Declarator::AliasTemplateContext
618 : Declarator::AliasDeclContext,
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 379 TypeSourceInfo *Declarator;
385 TemplateArgumentLocInfo(TypeSourceInfo *TInfo) : Declarator(TInfo) {}
400 return Declarator;
  /external/clang/include/clang/Sema/
Sema.h     [all...]
DeclSpec.h 52 class Declarator;
765 /// \brief Checks if this DeclSpec can stand alone, without a Declarator.
    [all...]

Completed in 342 milliseconds

1 2