Searched refs:ARRAY (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypeTags.java83 public static final int ARRAY = CLASS+1; field in class:TypeTags
87 public static final int METHOD = ARRAY+1;
H A DTypes.java317 if (t.tag == ARRAY && s.tag == ARRAY) {
348 if (t.tag != ARRAY || isReifiable(t)) return;
352 case ARRAY:
415 s.tag == ARRAY || s.tag == TYPEVAR;
490 if (s.tag == ARRAY) {
696 return s.tag == ARRAY
1034 if (s.tag == CLASS || s.tag == ARRAY) {
1038 if (!upcast && s.tag == ARRAY) {
1124 case ARRAY
[all...]
H A DPrinter.java295 if (args.head.tag == ARRAY) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DFieldRendererFactory.java57 return ARRAY;
84 private static final FieldRenderer ARRAY field in class:FieldRendererFactory
/openjdk7/jdk/src/share/classes/java/sql/
H A DTypes.java216 * <code>ARRAY</code>.
219 public final static int ARRAY = 2003; field in class:Types
/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DTypeKind.java103 ARRAY, enum constant in enum:TypeKind
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DBasicType.java52 public static final BasicType ARRAY = new BasicType("array", 13); field in class:BasicType
59 ARRAY, VOID, ADDRESS, ILLEGAL
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DTypeCode.java48 public static final TypeCode ARRAY = new TypeCode("array", '['); field in class:TypeCode
53 SHORT, INT, OBJECT, ARRAY, VOID
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DTypeMaker.java68 case ARRAY: return new ArrayTypeImpl(env, t);
108 case ARRAY:
110 while (t.tag == ARRAY) {
130 case ARRAY:
132 while (t.tag == ARRAY) {
203 for (t = arrayType; t.tag == ARRAY; t = env.types.elemtype(t)) { }
216 for (Type t = arrayType; t.tag == ARRAY; t = env.types.elemtype(t)) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXDataViewer.java42 public static final int ARRAY = 2; field in class:XDataViewer
91 return ARRAY;
101 if(type == ARRAY ||
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java122 public static final int ARRAY = 9; field in class:Type
248 return new Type(buf[0] == '[' ? ARRAY : OBJECT, buf, 0, buf.length);
399 return new Type(ARRAY, buf, off, len + 1);
420 * {@link #DOUBLE DOUBLE}, {@link #ARRAY ARRAY} or
476 case ARRAY:
573 case ARRAY:
738 // case ARRAY:
759 // case ARRAY:
788 if (sort == OBJECT || sort == ARRAY) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DJNITypeParser.java155 case (JDWP.Tag.ARRAY):
192 case (JDWP.Tag.ARRAY):
H A DArrayReferenceImpl.java211 return JDWP.Tag.ARRAY;
H A DVirtualMachineImpl.java767 case JDWP.TypeTag.ARRAY:
869 return (ArrayTypeImpl)referenceType(ref, JDWP.TypeTag.ARRAY, null);
881 } else if (tag == JDWP.TypeTag.ARRAY) {
1272 case JDWP.Tag.ARRAY:
1346 return (ArrayReferenceImpl)objectMirror(id, JDWP.Tag.ARRAY);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DTypeMaker.java92 case ARRAY: return new ArrayTypeImpl(env, (Type.ArrayType) t);
140 case ARRAY:
/openjdk7/jdk/src/share/back/
H A Dinvoker.c72 while (*tagPtr == JDWP_TAG(ARRAY)) {
149 (argumentTag == JDWP_TAG(ARRAY))) {
182 (argumentTag == JDWP_TAG(ARRAY))) {
337 case JDWP_TAG(ARRAY): {
425 case JDWP_TAG(ARRAY): {
512 case JDWP_TAG(ARRAY): {
H A DClassTypeImpl.c64 case JDWP_TAG(ARRAY):
H A DArrayTypeImpl.c233 (componentSignature[0] == JDWP_TAG(ARRAY))) {
H A DObjectReferenceImpl.c77 case JDWP_TAG(ARRAY):
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJNI.java143 case ARRAY: {
154 case ARRAY:
H A DLLNI.java515 case ARRAY: {
526 case ARRAY:
562 case ARRAY: {
573 case ARRAY:
H A DTypeSignature.java241 if (t.getKind() != TypeKind.ARRAY)
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DArrayExpression.java44 super(ARRAY, where, Type.tError, null, args);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java421 if (tm.getKind() != TypeKind.ARRAY)
445 if (tm.getKind() != TypeKind.ARRAY)
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialArray.java37 * <code>ARRAY</code> value.
56 * in the SQL <code>ARRAY</code> value.
70 * The type name used by the DBMS for the elements in the SQL <code>ARRAY</code>
78 * is also the number of elements in the SQL <code>ARRAY</code> value
100 * <code>STRUCT</code>, <code>ARRAY</code>, <code>BLOB</code>,
109 * object is created must have materialized the SQL <code>ARRAY</code> value's
163 case java.sql.Types.ARRAY:
236 * object is created must have materialized the SQL <code>ARRAY</code> value's
450 * the elements of the SQL <code>ARRAY</code>
478 * the elements in the <code>ARRAY</cod
[all...]

Completed in 146 milliseconds

12