/prebuilts/tools/common/proguard/proguard4.7/examples/annotations/src/proguard/annotation/ |
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 | 23 class CheckerManager; 24 class CheckerRegistry; 27 #define CHECKER(FULLNAME,CLASS,CXXFILE,HELPTEXT,GROUPINDEX,HIDDEN) \ 28 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...] |
CFGRecStmtVisitor.h | 10 // This file implements the template class CFGRecStmtVisitor, which extends 22 class CFGRecStmtVisitor : public CFGStmtVisitor<ImplClass,void> { 38 #define CONDVAR_CASE(CLASS) \ 39 case Stmt::CLASS ## Class:\ 40 CondVar = cast<CLASS>(S)->getConditionVariable();\
|
/cts/tools/signature-tools/src/signature/model/ |
Kind.java | 20 * Type of the modeled class. 23 CLASS("class"), INTERFACE("interface"), ANNOTATION("@interface"), ENUM(
|
/external/proguard/examples/annotations/src/proguard/annotation/ |
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)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
libc-lock.h | 64 /* Define a lock variable NAME with storage class CLASS. The lock must be 66 with __libc_lock_define_initialized, below). Use `extern' for CLASS to 71 #define __libc_lock_define(CLASS,NAME) \ 72 CLASS __libc_lock_t NAME; 73 #define __libc_rwlock_define(CLASS,NAME) \ 74 CLASS __libc_rwlock_t NAME; 75 #define __libc_lock_define_recursive(CLASS,NAME) \ 76 CLASS __libc_lock_recursive_t NAME; 77 #define __rtld_lock_define_recursive(CLASS,NAME) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
libc-lock.h | 64 /* Define a lock variable NAME with storage class CLASS. The lock must be 66 with __libc_lock_define_initialized, below). Use `extern' for CLASS to 71 #define __libc_lock_define(CLASS,NAME) \ 72 CLASS __libc_lock_t NAME; 73 #define __libc_rwlock_define(CLASS,NAME) \ 74 CLASS __libc_rwlock_t NAME; 75 #define __libc_lock_define_recursive(CLASS,NAME) \ 76 CLASS __libc_lock_recursive_t NAME; 77 #define __rtld_lock_define_recursive(CLASS,NAME) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
libc-lock.h | 64 /* Define a lock variable NAME with storage class CLASS. The lock must be 66 with __libc_lock_define_initialized, below). Use `extern' for CLASS to 71 #define __libc_lock_define(CLASS,NAME) \ 72 CLASS __libc_lock_t NAME; 73 #define __libc_rwlock_define(CLASS,NAME) \ 74 CLASS __libc_rwlock_t NAME; 75 #define __libc_lock_define_recursive(CLASS,NAME) \ 76 CLASS __libc_lock_recursive_t NAME; 77 #define __rtld_lock_define_recursive(CLASS,NAME) [all...] |
/external/clang/lib/AST/ |
TypeLoc.cpp | 27 class TypeLocRanger : public TypeLocVisitor<TypeLocRanger, SourceRange> { 29 #define ABSTRACT_TYPELOC(CLASS, PARENT) 30 #define TYPELOC(CLASS, PARENT) \ 31 SourceRange Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 44 class TypeSizer : public TypeLocVisitor<TypeSizer, unsigned> { 46 #define ABSTRACT_TYPELOC(CLASS, PARENT) 47 #define TYPELOC(CLASS, PARENT) \ 48 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { [all...] |
/external/clang/include/clang/AST/ |
DeclVisitor.h | 28 /// \brief A simple visitor class that helps create declaration visitors. 29 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void> 30 class Base { 33 #define PTR(CLASS) typename Ptr<CLASS>::type 34 #define DISPATCH(NAME, CLASS) \ 35 return static_cast<ImplClass*>(this)->Visit##NAME(static_cast<PTR(CLASS)>(D)) 61 /// \brief A simple visitor class that helps create declaration visitors. 63 /// This class does not preserve constness of Decl pointers (see also 66 class DeclVisito [all...] |
/external/jsr305/ri/src/main/java/javax/annotation/concurrent/ |
GuardedBy.java | 23 * The string literal "this" means that this field is guarded by the class in 24 * which it is defined. class-name.this : For inner classes, it may be necessary 25 * to disambiguate 'this'; the class-name.this designation allows you to specify 29 * class-name.field-name : The lock object is reference by the static field 30 * specified by class-name.field-name. method-name() : The lock object is 31 * returned by calling the named nil-ary method. class-name.class : The Class 32 * object for the specified class should be used as the lock object. 35 @Retention(RetentionPolicy.CLASS) [all...] |
Immutable.java | 19 * The class to which this annotation is applied is immutable. This means that 34 @Retention(RetentionPolicy.CLASS)
|
NotThreadSafe.java | 19 * The class to which this annotation is applied is not thread-safe. This 20 * annotation primarily exists for clarifying the non-thread-safety of a class 22 * is a bad idea to assume a class is thread-safe without good reason. 28 @Retention(RetentionPolicy.CLASS)
|
ThreadSafe.java | 12 * The class to which this annotation is applied is thread-safe. This means that 20 @Retention(RetentionPolicy.CLASS)
|
/frameworks/base/core/java/com/android/internal/annotations/ |
GuardedBy.java | 29 @Retention(RetentionPolicy.CLASS)
|
Immutable.java | 25 * Annotation type used to mark a class which is immutable. 28 @Retention(RetentionPolicy.CLASS)
|