HomeSort by relevance Sort by last modified time
    Searched refs:CLASS (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/include/clang/AST/
TypeVisitor.h 21 #define DISPATCH(CLASS) \
23 Visit##CLASS(static_cast<const CLASS*>(T))
26 class TypeVisitor {
31 #define ABSTRACT_TYPE(CLASS, PARENT)
32 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type);
35 llvm_unreachable("Unknown type class!");
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...]
CommentVisitor.h 22 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void>
23 class CommentVisitorBase {
25 #define PTR(CLASS) typename Ptr<CLASS>::type
26 #define DISPATCH(NAME, CLASS) \
27 return static_cast<ImplClass*>(this)->visit ## NAME(static_cast<PTR(CLASS)>(C))
36 #define COMMENT(CLASS, PARENT) \
37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS);
    [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/IR/
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)
  /prebuilts/tools/common/proguard/proguard4.7/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)

Completed in 315 milliseconds

1 2 3 4 5 6 7 8 91011