/bionic/libm/upstream-freebsd/lib/msun/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 | 44 #define DECL(type, fn, rint) \ 57 DECL(double, nearbyint, rint) 58 DECL(float, nearbyintf, rintf) 59 DECL(long double, nearbyintl, rintl)
|
/external/clang/include/clang/AST/ |
ASTFwd.h | 17 class Decl; 18 #define DECL(DERIVED, BASE) class DERIVED##Decl;
|
DeclVisitor.h | 1 //===--- DeclVisitor.h - Visitor for Decl subclasses ------------*- C++ -*-===// 16 #include "clang/AST/Decl.h" 38 RetTy Visit(PTR(Decl) D) { 40 #define DECL(DERIVED, BASE) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 42 #define ABSTRACT_DECL(DECL) 45 llvm_unreachable("Decl that isn't part of DeclNodes.inc!"); 50 #define DECL(DERIVED, BASE) [all...] |
ASTTypeTraits.h | 20 #include "clang/AST/Decl.h" 85 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl, 134 KIND_TO_KIND_ID(Decl) 137 #define DECL(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Decl) 176 /// (like \c Stmt, \c Decl, \c Type and \c NestedNameSpecifier) the returned 209 /// only Stmt, Decl, Type and NestedNameSpecifier return memoization data). 291 Decl *, Stmt *, Type *, NestedNameSpecifier *, CXXCtorInitializer *> 300 T, typename std::enable_if<std::is_base_of<Decl, T>::value>::type [all...] |
DataRecursiveASTVisitor.h | 18 #include "clang/AST/Decl.h" 83 /// Decl, or Type) is reached. 89 /// 1. TraverseDecl(Decl *x) does task #1. It is the entry point 182 /// Traverse*Decl() based on the argument's dynamic type. 186 bool TraverseDecl(Decl *D); 393 // Declare Traverse*() for all concrete Decl classes. 394 #define ABSTRACT_DECL(DECL) 395 #define DECL(CLASS, BASE) bool Traverse##CLASS##Decl(CLASS##Decl *D) [all...] |
RecursiveASTVisitor.h | 18 #include "clang/AST/Decl.h" 79 /// Decl, or Type) is reached. 85 /// 1. TraverseDecl(Decl *x) does task #1. It is the entry point 186 /// Traverse*Decl() based on the argument's dynamic type. 190 bool TraverseDecl(Decl *D); 395 // Declare Traverse*() for all concrete Decl classes. 396 #define ABSTRACT_DECL(DECL) 397 #define DECL(CLASS, BASE) bool Traverse##CLASS##Decl(CLASS##Decl *D) [all...] |
DeclBase.h | 10 // This file defines the Decl and DeclContext interfaces. 68 /// Decl - This represents one declaration (or definition), e.g. a variable, 71 class Decl { 73 /// \brief Lists the kind of concrete classes of Decl. 75 #define DECL(DERIVED, BASE) DERIVED, 76 #define ABSTRACT_DECL(DECL) 85 /// decl-derived type that will be filled in later (e.g., by some 99 /// Decl currently provides 15 bits of IDNS bits. 201 llvm::PointerIntPair<Decl *, 2, unsigned> NextInContextAndBits; 214 /// the DeclContext where the Decl was declared [all...] |
/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/compiler-rt/test/asan/TestCases/Linux/ |
coverage-direct-large.cc | 37 #define DECL(x) __attribute__((noinline)) void x() {} 40 F4(DECL, f)
|
/external/clang/lib/AST/ |
ASTTypeTraits.cpp | 31 { NKI_None, "Decl" }, 32 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, 77 else if (const Decl *D = get<Decl>()) 88 if (const Decl *D = get<Decl>()) 103 if (const Decl *D = get<Decl>())
|
DeclBase.cpp | 10 // This file implements the Decl and DeclContext classes. 18 #include "clang/AST/Decl.h" 40 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; 41 #define ABSTRACT_DECL(DECL) 44 void Decl::updateOutOfDate(IdentifierInfo &II) const { 48 void *Decl::operator new(std::size_t Size, const ASTContext &Context, 66 void *Decl::operator new(std::size_t Size, const ASTContext &Ctx, 72 Module *Decl::getOwningModuleSlow() const { 77 const char *Decl::getDeclKindName() const { 80 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED [all...] |
ASTDumper.cpp | 52 // Decl kind names (VarDecl, FunctionDecl, etc) 85 // Decl names 155 const Decl *Prev; 167 void dump(const Decl *D, bool Ref = false) { 177 void dumpRef(const Decl *D) { dump(D, true); } 201 void dumpDecl(const Decl *D); 218 void dumpBareDeclRef(const Decl *Node); 219 void dumpDeclRef(const Decl *Node, const char *Label = nullptr); 513 void ASTDumper::dumpBareDeclRef(const Decl *D) { 529 void ASTDumper::dumpDeclRef(const Decl *D, const char *Label) [all...] |
/external/clang/include/clang/Sema/ |
Template.h | 181 typedef SmallVector<Decl *, 4> DeclArgumentPack; 189 const Decl *, llvm::PointerUnion<Decl *, DeclArgumentPack *>, 4> 290 const Decl *D = I->first; 291 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = 293 if (I->second.is<Decl *>()) { 294 Stored = I->second.get<Decl *>(); 324 llvm::PointerUnion<Decl *, DeclArgumentPack *> * 325 findInstantiationOf(const Decl *D); 327 void InstantiatedLocal(const Decl *D, Decl *Inst) [all...] |
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_variance_sse2.c | 341 #define DECL(w, opt) \ 349 DECL(4, opt2); \ 350 DECL(8, opt1); \ 351 DECL(16, opt1) 356 #undef DECL 418 #define DECL(w, opt) \ 428 DECL(4, opt2); \ 429 DECL(8, opt1); \ 430 DECL(16, opt1) 434 #undef DECL [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/ |
vp9_variance_sse2.c | 317 #define DECL(w, opt) \ 325 DECL(4, opt2); \ 326 DECL(8, opt1); \ 327 DECL(16, opt1) 332 #undef DECL 394 #define DECL(w, opt) \ 404 DECL(4, opt2); \ 405 DECL(8, opt1); \ 406 DECL(16, opt1) 410 #undef DECL [all...] |
/external/javassist/src/main/javassist/compiler/ |
TokenId.java | 121 int DECL = 'D'; // declaration statement
|
/external/chromium_org/third_party/smhasher/src/ |
pstdint.h | 751 #define DECL(us,bits) glue3(DECL,us,) (bits) 756 DECL(I,8) 757 DECL(U,8) 758 DECL(I,16) 759 DECL(U,16) 760 DECL(I,32) 761 DECL(U,32) 763 DECL(I,64) 764 DECL(U,64 [all...] |
/external/clang/lib/Sema/ |
SemaDeclObjC.cpp | 272 void Sema::AddAnyMethodToGlobalPool(Decl *D) { 275 // If we don't have a valid method decl, simply return. 305 void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) { 309 // If we don't have a valid method decl, simply return. 317 // Create Decl objects for each parameter, entrring them in the scope for 455 Decl *Sema:: 459 Decl * const *ProtoRefs, unsigned NumProtoRefs, 477 // A previous decl with a different name is because of 483 // A lookup for 'OldImage' will return the 'NewImage' decl. 546 // The previous declaration was not a class decl. Check if we have [all...] |
SemaExpr.cpp | 69 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) 78 const Decl *DC = cast<Decl>(S.getCurObjCLexicalContext()); 139 void Sema::NoteDeletedFunction(FunctionDecl *Decl) { 140 assert(Decl->isDeleted()); 142 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl); 147 Diag(Decl->getLocation(), diag::note_implicitly_deleted); 158 if (CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Decl)) { 161 Diag(Decl->getLocation(), diag::note_inherited_deleted_here); 173 Diag(Decl->getLocation(), diag::note_availability_specified_here [all...] |
/external/chromium_org/third_party/libxml/src/ |
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...] |
/external/clang/lib/Serialization/ |
ASTReaderDecl.cpp | 1 //===--- ASTReaderDecl.cpp - Decl Deserialization ---------------*- C++ -*-===// 11 // entrypoint for loading a decl. 67 Decl *ReadDecl(const RecordData &R, unsigned &I) { 119 Decl::Kind DeclKind; 125 Decl::Kind DeclKind) 202 static void attachPreviousDeclImpl(Redeclarable<DeclT> *D, Decl *Previous); 204 static void attachPreviousDecl(Decl *D, Decl *previous); 207 static void attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest); 209 static void attachLatestDecl(Decl *D, Decl *latest) 1092 VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx); local [all...] |
/external/libxml2/ |
HTMLparser.c | 766 #define DECL (const char**) 771 DECL html_inline , NULL , DECL a_attrs , DECL target_attr, NULL 774 DECL html_inline , NULL , DECL html_attrs, NULL, NULL 777 DECL html_inline , NULL , DECL html_attrs, NULL, NULL 780 DECL inline_p , NULL , DECL html_attrs, NULL, NUL [all...] |