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

1 2 3 4 5 67 8 91011

  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 26 * class are generally interned and may be usefully compared with each
29 public final class Type implements TypeBearer, Comparable<Type> {
34 /** {@code non-null;} table mapping types as {@code Class} objects to internal form */
35 private static final HashMap<Class, Type> CLASS_TYPE_MAP =
36 new HashMap<Class, Type>();
126 * Create a mapping between types as Java Class objects
129 CLASS_TYPE_MAP.put(boolean.class, BOOLEAN);
130 CLASS_TYPE_MAP.put(short.class, SHORT);
131 CLASS_TYPE_MAP.put(int.class, INT);
132 CLASS_TYPE_MAP.put(long.class, LONG)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 26 * class are generally interned and may be usefully compared with each
29 public final class Type implements TypeBearer, Comparable<Type> {
132 /** {@code non-null;} instance representing {@code java.lang.Class} */
133 public static final Type CLASS = intern("Ljava/lang/Class;");
258 * {@code null-ok;} the internal-form class name corresponding to
325 * intern cache, then it had better be the descriptor for a class.
335 * Validate the characters of the class name itself. Note that
337 * internal-form class names, and the definition here is fairly
396 * class with the given name. Calling this method is equivalent t
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 26 * class are generally interned and may be usefully compared with each
29 public final class Type implements TypeBearer, Comparable<Type> {
132 /** {@code non-null;} instance representing {@code java.lang.Class} */
133 public static final Type CLASS = intern("Ljava/lang/Class;");
258 * {@code null-ok;} the internal-form class name corresponding to
325 * intern cache, then it had better be the descriptor for a class.
335 * Validate the characters of the class name itself. Note that
337 * internal-form class names, and the definition here is fairly
396 * class with the given name. Calling this method is equivalent t
    [all...]
  /frameworks/base/tools/aidl/
AST.h 12 class Type;
335 struct Class : public ClassElement
338 CLASS,
344 int what; // CLASS or INTERFACE
350 Class();
351 virtual ~Class();
363 vector<Class*> classes;
  /libcore/luni/src/main/java/java/lang/reflect/
Method.java 45 * This class represents a method. Information about the method can be accessed,
48 public final class Method extends AccessibleObject implements GenericDeclaration, Member {
62 Class<?>[] aParameters = a.parameterTypes;
63 Class<?>[] bParameters = b.parameterTypes;
83 private Class<?> declaringClass;
87 private Class<?>[] parameterTypes;
89 private Class<?>[] exceptionTypes;
91 private Class<?> returnType;
128 private Method(Class<?> declaring, Class<?>[] paramTypes, Class<?>[] exceptTypes, Class<?> returnType, String name, int slot
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 82 // incomplete type other than a class currently being defined [...].
85 // pointer or reference to a class currently being defined.
638 // Unwrap pointers and references so that we can do checks within a class
    [all...]
  /cts/tools/dasm/src/dasm/
parser.cup 68 USING, IS, FROM, METHOD, SIGNATURE, REGS, FIELD, CLASS,
173 /* ========== Class specification ========== */
487 DINNER CLASS access:a inner_name:n inner_inner:i inner_outer:o SEP
649 // .throws <class>
654 // .catch <class> from <label1> to <label2> using <branchlab>
  /cts/tools/signature-tools/src/signature/converter/dex/
DexUtil.java 44 public class DexUtil {
97 * @return the class name
153 Set<Modifier> modifiers = EnumSet.noneOf(Modifier.class);
181 * Returns true if the given class is an enumeration, false otherwise.
185 * @return true if the given class is an enumeration, false otherwise
192 * Returns true if the given class is an interface, false otherwise.
196 * @return true if the given class is an interface, false otherwise
204 * Returns true if the given class is an annotation, false otherwise.
208 * @return true if the given class is an annotation, false otherwise
223 * @return the Kind of the given class
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 33 public class ConstructorTest extends junit.framework.TestCase {
46 @Retention(RetentionPolicy.CLASS)
56 static class ConstructorTestHelper extends Object {
88 static class GenericConstructorTestHelper<T, S extends T, E extends Exception> {
93 static class NoPublicConstructorTestHelper {
94 // This class has no public constructor.
99 // static class Outer {
101 // class Inner {
107 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.class
108 .getConstructor(Object.class);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 65 @SuppressWarnings("restriction") // JDT model access for custom-view class lookup
66 public class CustomViewFinder {
258 IJavaSearchConstants.CLASS, IJavaSearchConstants.IMPLEMENTORS,
301 // See if the class has one of the acceptable constructors
308 // fully qualified or the unqualified class names.
361 * Job for performing class search off the UI thread. This is marked as a system job
364 private class FindViewsJob extends Job {
  /external/e2fsprogs/intl/
dcigettext.c 104 # define __libc_lock_define_initialized(CLASS, NAME)
107 # define __libc_rwlock_define_initialized(CLASS, NAME)
    [all...]
  /external/oprofile/libpp/
xml_utils.cpp 91 cverb << vxml << "--- class " << i << ":" << classes.v[i].name << " ---" << endl;
272 class subclass_info_t {
327 out << open_element(CLASS, true);
404 out << init_attr(CLASS, classes.v[pclass].name);
412 class module_info {
444 class thread_info : public module_info {
463 class process_info : public module_info {
480 class process_root_info {
497 class binary_info : public module_info {
513 class binary_root_info
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 39 * Represents a descriptor for identifying a class during serialization and
41 * and SUID of the class as well as field names and types. Information inherited
46 * @see java.lang.Class
48 public class ObjectStreamClass implements Serializable {
70 private static final Class<?>[] READ_PARAM_TYPES = new Class[] { ObjectInputStream.class };
71 private static final Class<?>[] WRITE_PARAM_TYPES = new Class[] { ObjectOutputStream.class };
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 50 /*package*/ final class RopperMachine extends ValueAwareMachine {
51 /** {@code non-null;} array reflection class */
62 new CstString("(Ljava/lang/Class;[I)" +
386 * Add a const-class instruction for the specified array
387 * class.
392 * class as are given in the explicit list of dimensions,
393 * so as to pass the right component class to the standard
402 RegisterSpec.make(dest.getReg(), Type.CLASS);
408 * TYPE class.
418 * normal class reference
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 44 public final class Telephony {
181 public static final class Sms implements BaseColumns, TextBasedSmsColumns {
318 public static final class Inbox implements BaseColumns, TextBasedSmsColumns {
352 public static final class Sent implements BaseColumns, TextBasedSmsColumns {
384 public static final class Draft implements BaseColumns, TextBasedSmsColumns {
432 public static final class Outbox implements BaseColumns, TextBasedSmsColumns {
466 public static final class Conversations
495 public static final class Intents {
652 * space is not freed, messages targeted for the SIM (class 2) may
812 * The class of the message
    [all...]
  /libcore/luni/src/main/java/java/lang/
Class.java 63 * The in-memory representation of a Java class. This representation serves as
64 * the starting point for querying class-related information, a process usually
65 * called "reflection". There are basically three types of {@code Class}
69 * <h4>Class instances representing object types (classes or interfaces)</h4>
71 * These represent an ordinary class or interface as found in the class
72 * hierarchy. The name associated with these {@code Class} instances is simply
73 * the fully qualified class name of the class or interface that it represents.
74 * In addition to this human-readable name, each class is also associated by
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
SourceRevealer.java 71 public class SourceRevealer implements ISourceRevealer {
179 // Last ditch effort: attempt to look up the class corresponding to the fqn
375 return searchForPattern(fileName, IJavaSearchConstants.CLASS, MATCH_IS_FILE_PREDICATE);
385 // Don't try to search for class init methods: Eclipse will throw NPEs if you do
431 private static class SearchResultAccumulator extends SearchRequestor {
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree.h 58 /* Each tree_code has an associated code class represented by a
78 /* Each tree code class has an associated string representation.
83 /* Returns the string representing CLASS. */
85 #define TREE_CODE_CLASS_STRING(CLASS)\
86 tree_code_class_strings[(int) (CLASS)]
163 /* Returns nonzero iff CLASS is the tree-code class of an
166 #define IS_EXPR_CODE_CLASS(CLASS)\
167 ((CLASS) >= tcc_reference && (CLASS) <= tcc_expression
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree.h 58 /* Each tree_code has an associated code class represented by a
78 /* Each tree code class has an associated string representation.
83 /* Returns the string representing CLASS. */
85 #define TREE_CODE_CLASS_STRING(CLASS)\
86 tree_code_class_strings[(int) (CLASS)]
163 /* Returns nonzero iff CLASS is the tree-code class of an
166 #define IS_EXPR_CODE_CLASS(CLASS)\
167 ((CLASS) >= tcc_reference && (CLASS) <= tcc_expression
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree.h 58 /* Each tree_code has an associated code class represented by a
78 /* Each tree code class has an associated string representation.
83 /* Returns the string representing CLASS. */
85 #define TREE_CODE_CLASS_STRING(CLASS)\
86 tree_code_class_strings[(int) (CLASS)]
163 /* Returns nonzero iff CLASS is the tree-code class of an
166 #define IS_EXPR_CODE_CLASS(CLASS)\
167 ((CLASS) >= tcc_reference && (CLASS) <= tcc_expression
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree.h 58 /* Each tree_code has an associated code class represented by a
78 /* Each tree code class has an associated string representation.
83 /* Returns the string representing CLASS. */
85 #define TREE_CODE_CLASS_STRING(CLASS)\
86 tree_code_class_strings[(int) (CLASS)]
163 /* Returns nonzero iff CLASS is the tree-code class of an
166 #define IS_EXPR_CODE_CLASS(CLASS)\
167 ((CLASS) >= tcc_reference && (CLASS) <= tcc_expression
    [all...]
  /build/tools/droiddoc/templates-ds/
class.cs 5 <body class="gc-documentation <?cs if:(reference.gms || reference.gcm) ?>google<?cs /if ?>
10 <div id="doc-api-level" class="<?cs var:class.since ?>" style="display:none"></div>
14 <div class="col-12" id="doc-col">
19 <?cs each:cl=class.inherited ?>
34 <div class="sum-details-links">
35 <?cs if:inhattrs || inhconstants || inhfields || inhmethods || (!class.subclasses.hidden &&
36 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
38 <?cs if:subcount(class.inners) ?
    [all...]
  /build/tools/droiddoc/templates-sac/
class.cs 5 <body class="gc-documentation <?cs if:(reference.gms || reference.gcm) ?>google<?cs /if ?>
10 <div id="doc-api-level" class="<?cs var:class.since ?>" style="display:none"></div>
14 <div class="col-12" id="doc-col">
19 <?cs each:cl=class.inherited ?>
34 <div class="sum-details-links">
35 <?cs if:inhattrs || inhconstants || inhfields || inhmethods || (!class.subclasses.hidden &&
36 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
38 <?cs if:subcount(class.inners) ?
    [all...]
  /build/tools/droiddoc/templates-sdk/
class.cs 5 <body class="gc-documentation <?cs if:(reference.gms || reference.gcm) ?>google<?cs /if ?>
10 <div id="doc-api-level" class="<?cs var:class.since ?>" style="display:none"></div>
14 <div class="col-12" id="doc-col">
19 <?cs each:cl=class.inherited ?>
34 <div class="sum-details-links">
35 <?cs if:inhattrs || inhconstants || inhfields || inhmethods || (!class.subclasses.hidden &&
36 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
38 <?cs if:subcount(class.inners) ?
    [all...]
  /external/doclava/res/assets/templates/
class.cs 5 <body class="<?cs var:class.since ?>" itemscope itemtype="http://schema.org/Article">
8 <div class="g-unit" id="doc-content">
13 <?cs each:cl=class.inherited ?>
28 <div class="sum-details-links">
29 <?cs if:inhattrs || inhconstants || inhfields || inhmethods || (!class.subclasses.hidden &&
30 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
32 <?cs if:subcount(class.inners) ?>
36 <?cs if:subcount(class.attrs) ?
    [all...]

Completed in 733 milliseconds

1 2 3 4 5 67 8 91011