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

1 23 4 5 6 7 8 91011

  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 19 public final class EmptyArray {
28 public static final Class<?>[] CLASS = new Class[0];
  /external/dropbear/libtommath/
dep.pl 9 #open class file and write preamble
10 open(CLASS, ">tommath_class.h") or die "Couldn't open tommath_class.h for writing\n";
11 print CLASS "#if !(defined(LTM1) && defined(LTM2) && defined(LTM3))\n#if defined(LTM2)\n#define LTM3\n#endif\n#if defined(LTM1)\n#define LTM2\n#endif\n#define LTM1\n\n#if defined(LTM_ALL)\n";
21 print CLASS "#define $define\n";
50 print CLASS "#endif\n\n";
61 print CLASS "#if defined($filename)\n";
76 print CLASS " #define $a\n";
84 print CLASS "#endif\n\n";
88 print CLASS "#ifdef LTM3\n#define LTM_LAST\n#endif\n#include <tommath_superclass.h>\n#include <tommath_class.h>\n#else\n#define LTM_LAST\n#endif\n";
89 close CLASS;
    [all...]
  /libcore/luni/src/main/java/java/lang/
FindBugsSuppressWarnings.java 26 import static java.lang.annotation.RetentionPolicy.CLASS;
31 * any annotation that has class retention and whose name ends with
37 @Retention(CLASS)
Void.java 24 * Placeholder class for the Java keyword {@code void}.
28 public final class Void {
31 * The {@link Class} object that represents the primitive type {@code void}.
33 public static final Class<Void> TYPE = lookupType();
34 // Note: Void.TYPE can't be set to "void.class", since *that* is
38 private static Class<Void> lookupType() {
40 Method method = Runnable.class.getMethod("run", EmptyArray.CLASS);
41 return (Class<Void>) method.getReturnType();
  /external/guava/guava/src/com/google/common/annotations/
GwtCompatible.java 35 * class Lists {
64 @Retention(RetentionPolicy.CLASS)
GwtIncompatible.java 38 @Retention(RetentionPolicy.CLASS)
48 * "Class.isInstance".
Beta.java 26 * Signifies that a public API (public class, method or field) is subject to
33 @Retention(RetentionPolicy.CLASS)
  /frameworks/base/core/java/android/annotation/
TargetApi.java 29 @Retention(RetentionPolicy.CLASS)
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticInfos.h 20 #define DIAG(ENUM, CLASS, ADDRMSG, LINEMSG) ENUM,
32 class LinkerConfig;
33 class DiagnosticEngine;
35 /** \class DiagnosticInfos
38 class DiagnosticInfos
  /packages/apps/Contacts/src/com/android/contacts/test/
NeededForReflection.java 25 * Denotes that the class, constructor, method or field is used by tests and therefore cannot be
28 @Retention(RetentionPolicy.CLASS)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/test/
NeededForTesting.java 25 * Denotes that the class, constructor, method or field is used by tests and therefore cannot be
28 @Retention(RetentionPolicy.CLASS)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
NeededForTesting.java 25 * Denotes that the class, constructor, method or field is used by tests and therefore cannot be
28 @Retention(RetentionPolicy.CLASS)
  /sdk/annotations/src/android/annotation/
TargetApi.java 29 @Retention(RetentionPolicy.CLASS)
  /external/clang/lib/AST/
Comment.cpp 25 #define COMMENT(CLASS, PARENT) \
26 case CLASS##Kind: \
27 return #CLASS;
54 #define COMMENT(CLASS, PARENT) \
55 ASSERT_IMPLEMENTS_child_begin(&CLASS::child_begin); \
56 ASSERT_IMPLEMENTS_child_begin(&CLASS::child_end);
70 #define COMMENT(CLASS, PARENT) \
71 case CLASS##Kind: \
72 return static_cast<const CLASS *>(this)->child_begin();
84 #define COMMENT(CLASS, PARENT)
    [all...]
  /external/llvm/lib/Analysis/
InstCount.cpp 30 #define HANDLE_INST(N, OPCODE, CLASS) \
37 class InstCount : public FunctionPass, public InstVisitor<InstCount> {
38 friend class InstVisitor<InstCount>;
43 #define HANDLE_INST(N, OPCODE, CLASS) \
44 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /external/clang/include/clang/AST/
StmtVisitor.h 27 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 template<template <typename> class Ptr, typename ImplClass, typename RetTy=void>
31 class StmtVisitorBase {
34 #define PTR(CLASS) typename Ptr<CLASS>::type
35 #define DISPATCH(NAME, CLASS) \
36 return static_cast<ImplClass*>(this)->Visit ## NAME(static_cast<PTR(CLASS)>(S))
102 #define STMT(CLASS, PARENT) \
103 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
RecursiveASTVisitor.h 76 /// \brief A class that does preorder depth-first traversal on the
79 /// This class performs three distinct tasks:
81 /// 2. at a given node, walk up the class hierarchy, starting from
82 /// the node's dynamic type, until the top-most class (e.g. Stmt,
84 /// 3. given a (node, class) combination, where 'class' is some base
85 /// class of the dynamic type of 'node', call a user-overridable
98 /// where Bar is the direct parent class of Foo (unless Foo has
108 /// is Foo's super class) before calling VisitFoo(), the result is
129 /// is to descend into the 'pattern' class or function body, not an
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
machmode.h 24 /* Make an enum class that gives all the machine modes. */
166 /* Nonzero if CLASS modes can be widened. */
167 #define CLASS_HAS_WIDER_MODES_P(CLASS) \
168 (CLASS == MODE_INT \
169 || CLASS == MODE_FLOAT \
170 || CLASS == MODE_DECIMAL_FLOAT \
171 || CLASS == MODE_COMPLEX_FLOAT \
172 || CLASS == MODE_FRACT \
173 || CLASS == MODE_UFRACT \
174 || CLASS == MODE_ACCUM
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
machmode.h 24 /* Make an enum class that gives all the machine modes. */
166 /* Nonzero if CLASS modes can be widened. */
167 #define CLASS_HAS_WIDER_MODES_P(CLASS) \
168 (CLASS == MODE_INT \
169 || CLASS == MODE_FLOAT \
170 || CLASS == MODE_DECIMAL_FLOAT \
171 || CLASS == MODE_COMPLEX_FLOAT \
172 || CLASS == MODE_FRACT \
173 || CLASS == MODE_UFRACT \
174 || CLASS == MODE_ACCUM
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
machmode.h 24 /* Make an enum class that gives all the machine modes. */
166 /* Nonzero if CLASS modes can be widened. */
167 #define CLASS_HAS_WIDER_MODES_P(CLASS) \
168 (CLASS == MODE_INT \
169 || CLASS == MODE_FLOAT \
170 || CLASS == MODE_DECIMAL_FLOAT \
171 || CLASS == MODE_COMPLEX_FLOAT \
172 || CLASS == MODE_FRACT \
173 || CLASS == MODE_UFRACT \
174 || CLASS == MODE_ACCUM
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
machmode.h 24 /* Make an enum class that gives all the machine modes. */
166 /* Nonzero if CLASS modes can be widened. */
167 #define CLASS_HAS_WIDER_MODES_P(CLASS) \
168 (CLASS == MODE_INT \
169 || CLASS == MODE_FLOAT \
170 || CLASS == MODE_DECIMAL_FLOAT \
171 || CLASS == MODE_COMPLEX_FLOAT \
172 || CLASS == MODE_FRACT \
173 || CLASS == MODE_UFRACT \
174 || CLASS == MODE_ACCUM
    [all...]
  /external/clang/include/clang/Analysis/Visitors/
CFGStmtVisitor.h 25 #define DISPATCH_CASE(CLASS) \
26 case Stmt::CLASS ## Class: return \
27 static_cast<ImplClass*>(this)->BlockStmt_Visit ## CLASS(static_cast<CLASS*>(S));
29 #define DEFAULT_BLOCKSTMT_VISIT(CLASS) RetTy BlockStmt_Visit ## CLASS(CLASS *S)\
35 class CFGStmtVisitor : public StmtVisitor<ImplClass,RetTy> {
  /cts/tools/dex-tools/test/dex/reader/util/
MemoryByteCode.java 29 /* package */ class MemoryByteCode extends SimpleJavaFileObject {
34 super(URI.create("byte:///" + name.replace(".", "/") + ".class"),
35 Kind.CLASS);
  /external/elfutils/lib/
fixedsizehash.h 67 CLASS can be defined to `static' to avoid exporting the functions
86 #ifndef CLASS
87 # define CLASS
114 CLASS struct CONCAT(PREFIX,fshash) *
145 CLASS void
189 CLASS int
215 CLASS int
239 CLASS int
261 CLASS const TYPE *
284 #undef CLASS
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
dbreg.h 83 #define CLASS "Device" /* device class */

Completed in 1590 milliseconds

1 23 4 5 6 7 8 91011