/external/clang/include/clang/AST/ |
TypeVisitor.h | 21 #define DISPATCH(CLASS) \ 23 Visit##CLASS(static_cast<const CLASS*>(T)) 26 class TypeVisitor { 31 default: llvm_unreachable("Unknown type class!"); 32 #define ABSTRACT_TYPE(CLASS, PARENT) 33 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type); 40 #define TYPE(CLASS, PARENT) RetTy Visit##CLASS##Type(const CLASS##Type *T) { [all...] |
TypeLocVisitor.h | 27 class TypeLocVisitor { 31 #define ABSTRACT_TYPELOC(CLASS, PARENT) 32 #define TYPELOC(CLASS, PARENT) \ 33 case TypeLoc::CLASS: DISPATCH(CLASS##TypeLoc); 36 llvm_unreachable("unexpected type loc class!"); 41 #define ABSTRACT_TYPELOC(CLASS, PARENT) 42 #define TYPELOC(CLASS, PARENT) \ 43 case TypeLoc::CLASS: DISPATCH(CLASS##TypeLoc) [all...] |
/libcore/luni/src/main/java/java/lang/annotation/ |
RetentionPolicy.java | 33 * Annotation is available in the source code and in the class file, but not 36 CLASS, 38 * Annotation is available in the source code, the class file and is
|
/external/llvm/include/llvm/ |
OperandTraits.h | 1 //===-- llvm/OperandTraits.h - OperandTraits class definition ---*- C++ -*-===// 23 // FixedNumOperand Trait Class 44 // OptionalOperand Trait Class 58 // VariadicOperand Trait Class 79 // HungoffOperand Trait Class 85 /// Assumes that the User subclass that is determined by this traits class 89 /// This is the traits class that is needed when the Use array must be 105 /// Macro for generating in-class operand accessor declarations. 122 /// Macro for generating out-of-class operand accessor definitions 123 #define DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CLASS, VALUECLASS) [all...] |
/dalvik/tests/004-annotations/src/android/test/anno/ |
AnnoSimpleTypeInvis.java | 6 @Retention(RetentionPolicy.CLASS)
|
/external/proguard/examples/annotations/src/proguard/annotation/ |
KeepApplication.java | 12 * This annotation specifies to keep the annotated class as an application, 16 @Retention(RetentionPolicy.CLASS)
|
KeepClassMemberNames.java | 12 * This annotation specifies to keep all class members of the annotated class 16 @Retention(RetentionPolicy.CLASS)
|
KeepClassMembers.java | 12 * This annotation specifies to keep all class members of the annotated class 16 @Retention(RetentionPolicy.CLASS)
|
KeepGettersSetters.java | 13 * class from being shrunk, optimized, or obfuscated as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepImplementations.java | 13 * annotated class as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepPublicClassMemberNames.java | 12 * This annotation specifies to keep all public class members of the annotated 13 * class from being optimized or obfuscated as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepPublicClassMembers.java | 12 * This annotation specifies to keep all public class members of the annotated 13 * class from being shrunk, optimized, or obfuscated as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepPublicGettersSetters.java | 13 * annotated class from being shrunk, optimized, or obfuscated as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepPublicImplementations.java | 13 * of the annotated class as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepPublicProtectedClassMemberNames.java | 12 * This annotation specifies to keep all public or protected class members of 13 * the annotated class from being optimized or obfuscated as entry points. 16 @Retention(RetentionPolicy.CLASS)
|
KeepPublicProtectedClassMembers.java | 12 * This annotation specifies to keep all public or protected class members of 13 * the annotated class from being shrunk, optimized, or obfuscated as entry 17 @Retention(RetentionPolicy.CLASS)
|
Keep.java | 12 * This annotation specifies not to optimize or obfuscate the annotated class or 13 * class member as an entry point. 16 @Retention(RetentionPolicy.CLASS)
|
KeepName.java | 12 * This annotation specifies not to optimize or obfuscate the annotated class or 13 * class member as an entry point. 16 @Retention(RetentionPolicy.CLASS)
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
ClangCheckers.cpp | 14 // functions that do additional work besides mgr.registerChecker<CLASS>(). 28 #define CHECKER(FULLNAME,CLASS,DESCFILE,HELPTEXT,GROUPINDEX,HIDDEN) \ 29 registry.addChecker(register##CLASS, FULLNAME, HELPTEXT);
|
ClangSACheckers.h | 21 class CheckerManager; 22 class CheckerRegistry; 25 #define CHECKER(FULLNAME,CLASS,CXXFILE,HELPTEXT,GROUPINDEX,HIDDEN) \ 26 void register##CLASS(CheckerManager &mgr);
|
/external/clang/test/Index/ |
annotate-macro-args.h | 12 #define INVOKE(METHOD, CLASS) [CLASS METHOD]
|
get-cursor-macro-args.h | 12 #define INVOKE(METHOD, CLASS) [CLASS METHOD]
|
/external/clang/include/clang/Analysis/Visitors/ |
CFGRecStmtDeclVisitor.h | 10 // This file implements the template class CFGRecStmtDeclVisitor, which extends 25 #define DISPATCH_CASE(CLASS) \ 26 case Decl::CLASS: \ 27 static_cast<ImplClass*>(this)->Visit##CLASS##Decl( \ 28 static_cast<CLASS##Decl*>(D)); \ 31 #define DEFAULT_DISPATCH(CLASS) void Visit##CLASS##Decl(CLASS##Decl *D) {} 32 #define DEFAULT_DISPATCH_VARDECL(CLASS) void Visit##CLASS##Decl(CLASS##Decl *D) [all...] |
/cts/tools/signature-tools/src/signature/model/ |
Kind.java | 20 * Type of the modeled class. 23 CLASS("class"), INTERFACE("interface"), ANNOTATION("@interface"), ENUM(
|
/external/clang/lib/AST/ |
TypeLoc.cpp | 25 class TypeLocRanger : public TypeLocVisitor<TypeLocRanger, SourceRange> { 27 #define ABSTRACT_TYPELOC(CLASS, PARENT) 28 #define TYPELOC(CLASS, PARENT) \ 29 SourceRange Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 42 class TypeSizer : public TypeLocVisitor<TypeSizer, unsigned> { 44 #define ABSTRACT_TYPELOC(CLASS, PARENT) 45 #define TYPELOC(CLASS, PARENT) \ 46 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { [all...] |