HomeSort by relevance Sort by last modified time
    Searched defs:DECL (Results 1 - 14 of 14) sorted by null

  /bionic/libm/src/
s_fdim.c 32 #define DECL(type, fn) \
44 DECL(double, fdim)
45 DECL(float, fdimf)
46 DECL(long double, fdiml)
s_nearbyint.c 40 #define DECL(type, fn, rint) \
53 DECL(double, nearbyint, rint)
54 DECL(float, nearbyintf, rintf)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 22 #define DECL 4
LangDumpDecl.h 31 #define DECL 4
83 - (void)decl;
LangParser.h 31 #define DECL 4
144 - (LangParser_decl_return *)decl;
  /external/clang/include/clang/AST/
DeclVisitor.h 1 //===--- DeclVisitor.h - Visitor for Decl subclasses ------------*- C++ -*-===//
16 #include "clang/AST/Decl.h"
31 RetTy Visit(Decl *D) {
33 #define DECL(DERIVED, BASE) \
34 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl);
35 #define ABSTRACT_DECL(DECL)
38 llvm_unreachable("Decl that isn't part of DeclNodes.inc!");
43 #define DECL(DERIVED, BASE)
    [all...]
RecursiveASTVisitor.h 17 #include "clang/AST/Decl.h"
83 /// Decl, or Type) is reached.
89 /// 1. TraverseDecl(Decl *x) does task #1. It is the entry point
179 /// Traverse*Decl() based on the argument's dynamic type.
183 bool TraverseDecl(Decl *D);
373 // Declare Traverse*() for all concrete Decl classes.
374 #define ABSTRACT_DECL(DECL)
375 #define DECL(CLASS, BASE) \
376 bool Traverse##CLASS##Decl(CLASS##Decl *D)
    [all...]
DeclBase.h 10 // This file defines the Decl and DeclContext interfaces.
75 /// Decl - This represents one declaration (or definition), e.g. a variable,
78 class Decl {
80 /// \brief Lists the kind of concrete classes of Decl.
82 #define DECL(DERIVED, BASE) DERIVED,
83 #define ABSTRACT_DECL(DECL)
92 /// decl-derived type that will be filled in later (e.g., by some
106 /// Decl currently provides 15 bits of IDNS bits.
203 llvm::PointerIntPair<Decl *, 2, unsigned> NextInContextAndBits;
216 /// the DeclContext where the Decl was declared
    [all...]
  /external/javassist/src/main/javassist/compiler/
TokenId.java 121 int DECL = 'D'; // declaration statement
  /external/clang/lib/AST/
DeclBase.cpp 10 // This file implements the Decl and DeclContext classes.
15 #include "clang/AST/Decl.h"
38 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0;
39 #define ABSTRACT_DECL(DECL)
42 void *Decl::AllocateDeserializedDecl(const ASTContext &Context,
61 const char *Decl::getDeclKindName() const {
64 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED;
65 #define ABSTRACT_DECL(DECL)
70 void Decl::setInvalidDecl(bool Invalid) {
83 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED
    [all...]
DumpXML.cpp 10 // This file defines the Decl::dumpXML() method, a debugging tool to
20 #include "clang/AST/Decl.h"
66 void dispatch(Decl *D) {
68 #define DECL(DERIVED, BASE) \
69 case Decl::DERIVED: \
70 DISPATCH(dispatch##DERIVED##DeclAttrs, DERIVED##Decl); \
72 DISPATCH(dispatch##DERIVED##DeclChildren, DERIVED##Decl); \
73 DISPATCH(dispatch##DERIVED##DeclAsContext, DERIVED##Decl); \
75 #define ABSTRACT_DECL(DECL)
80 #define DECL(DERIVED, BASE)
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 255 void Sema::AddAnyMethodToGlobalPool(Decl *D) {
258 // If we don't have a valid method decl, simply return.
269 void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
273 // If we don't have a valid method decl, simply return.
281 // Create Decl objects for each parameter, entrring them in the scope for
374 Decl *Sema::
378 Decl * const *ProtoRefs, unsigned NumProtoRefs,
450 // The previous declaration was not a class decl. Check if we have a
506 Decl *Sema::ActOnCompatiblityAlias(SourceLocation AtLoc,
581 Decl *
    [all...]
SemaExpr.cpp 63 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable)
112 void Sema::NoteDeletedFunction(FunctionDecl *Decl) {
113 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl);
118 Diag(Decl->getLocation(), diag::note_implicitly_deleted);
129 Diag(Decl->getLocation(), diag::note_unavailable_here)
130 << 1 << Decl->isDeleted();
150 llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >::iterator
    [all...]
  /external/libxml2/
HTMLparser.c 763 #define DECL (const char**)
768 DECL html_inline , NULL , DECL a_attrs , DECL target_attr, NULL
771 DECL html_inline , NULL , DECL html_attrs, NULL, NULL
774 DECL html_inline , NULL , DECL html_attrs, NULL, NULL
777 DECL inline_p , NULL , DECL html_attrs, NULL, NUL
    [all...]

Completed in 244 milliseconds