Searched refs:db (Results 151 - 175 of 470) sorted by relevance

1234567891011>>

/openjdk9/jdk/make/src/classes/build/tools/charsetmapping/
H A DJIS0213.java44 int[] db = new int[0x10000]; // doublebyte
61 for (int i = 0; i < 0x10000; i++) db[i] = UNMAPPABLE_DECODING;
73 db[e.bs] = e.cp;
84 writeDOUBLEBYTE1(baos, db, b1Min1, b1Max1, b2Min, b2Max);
85 writeDOUBLEBYTE2(baos, db, b1Min2, b1Max2, b2Min, b2Max);
110 private final static int MAP_SUPPLEMENT = 0x5; // db,c
111 private final static int MAP_SUPPLEMENT_C2B = 0x6; // c,db
112 private final static int MAP_COMPOSITE = 0x7; // db,base,cc
169 int[] db,
183 writeShort(out, db[b
167 writeDOUBLEBYTE(OutputStream out, int type, int[] db, int b1Min, int b1Max, int b2Min, int b2Max) argument
188 writeDOUBLEBYTE1(OutputStream out, int[] db, int b1Min, int b1Max, int b2Min, int b2Max) argument
197 writeDOUBLEBYTE2(OutputStream out, int[] db, int b1Min, int b1Max, int b2Min, int b2Max) argument
[all...]
H A DEUC_TW.java38 static char[] toCharArray(int[] db, argument
46 ca[off++] = (char)(db[b1 * 256 + b2] & 0xffff);
98 int[][] db = new int[8][0x10000]; // doublebyte
105 db[i][j] = UNMAPPABLE_DECODING;
117 db[plane][e.bs] = e.cp;
144 out.format(toCharArray(db[plane], b1Min, b1Max, b2Min, b2Max),
/openjdk9/jdk/test/java/awt/image/DrawImage/
H A DIncorrectUnmanagedImageSourceOffset.java126 final DataBuffer db = bi.getRaster().getDataBuffer();
127 if (db instanceof DataBufferInt) {
128 ((DataBufferInt) db).getData();
129 } else if (db instanceof DataBufferShort) {
130 ((DataBufferShort) db).getData();
131 } else if (db instanceof DataBufferByte) {
132 ((DataBufferByte) db).getData();
H A DIncorrectUnmanagedImageRotatedClip.java114 final DataBuffer db = bi.getRaster().getDataBuffer();
115 if (db instanceof DataBufferInt) {
116 ((DataBufferInt) db).getData();
117 } else if (db instanceof DataBufferShort) {
118 ((DataBufferShort) db).getData();
119 } else if (db instanceof DataBufferByte) {
120 ((DataBufferByte) db).getData();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DJavaThread.java77 private static synchronized void initialize(TypeDataBase db) { argument
78 Type type = db.lookupType("JavaThread");
79 Type anchorType = db.lookupType("JavaFrameAnchor");
91 UNINITIALIZED = db.lookupIntConstant("_thread_uninitialized").intValue();
92 NEW = db.lookupIntConstant("_thread_new").intValue();
93 NEW_TRANS = db.lookupIntConstant("_thread_new_trans").intValue();
94 IN_NATIVE = db.lookupIntConstant("_thread_in_native").intValue();
95 IN_NATIVE_TRANS = db.lookupIntConstant("_thread_in_native_trans").intValue();
96 IN_VM = db.lookupIntConstant("_thread_in_vm").intValue();
97 IN_VM_TRANS = db
[all...]
H A DVMReg.java50 private static void initialize(TypeDataBase db) { argument
52 Type type = db.lookupType("Matcher");
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DImageScalingHelper.java144 int db = dInsets.bottom;
149 db = dt = sb = st = Math.max(0, ih / 2);
157 if (dt + db > h) {
158 dt = db = Math.max(0, h / 2 - 1);
170 drawChunk(image, g, stretch, x, y + dt, x + dl, y + h - db,
187 x + w - dr, y + dt, x + w, y + h - db,
191 drawImage(image, g, x + w - dr, y + h - db, x + w, y + h,
196 x + dl, y + h - db, x + w - dr, y + h,
200 drawImage(image, g, x, y + h - db, x + dl, y + h,
204 drawImage(image, g, x + dl, y + dt, x + w - dr, y + h - db,
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/
H A DHotSpotAgent.java66 private TypeDataBase db; field in class:HotSpotAgent
126 return db;
298 db = null;
389 db = new HotSpotTypeDataBase(machDesc,
393 db = new HotSpotTypeDataBase(machDesc,
397 db = new HotSpotTypeDataBase(machDesc,
401 db = new HotSpotTypeDataBase(machDesc,
405 db = new HotSpotTypeDataBase(machDesc,
419 debugger.configureJavaPrimitiveTypeSizes(db.getJBooleanType().getSize(),
420 db
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DMetadata.java54 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
55 metadataConstructor = new VirtualBaseConstructor<Metadata>(db, db.lookupType("Metadata"), null, null);
H A DConstantPoolCache.java46 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
47 Type type = db.lookupType("ConstantPoolCache");
50 Type elType = db.lookupType("ConstantPoolCacheEntry");
H A DConstantPoolCacheEntry.java52 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
53 Type type = db.lookupType("ConstantPoolCacheEntry");
61 type = db.lookupType("ConstantPoolCache");
H A DConstMethod.java60 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
61 Type type = db.lookupType("ConstMethod");
67 HAS_LINENUMBER_TABLE = db.lookupIntConstant("ConstMethod::_has_linenumber_table").intValue();
68 HAS_CHECKED_EXCEPTIONS = db.lookupIntConstant("ConstMethod::_has_checked_exceptions").intValue();
69 HAS_LOCALVARIABLE_TABLE = db.lookupIntConstant("ConstMethod::_has_localvariable_table").intValue();
70 HAS_EXCEPTION_TABLE = db.lookupIntConstant("ConstMethod::_has_exception_table").intValue();
71 HAS_GENERIC_SIGNATURE = db.lookupIntConstant("ConstMethod::_has_generic_signature").intValue();
72 HAS_METHOD_ANNOTATIONS = db.lookupIntConstant("ConstMethod::_has_method_annotations").intValue();
73 HAS_PARAMETER_ANNOTATIONS = db.lookupIntConstant("ConstMethod::_has_parameter_annotations").intValue();
74 HAS_METHOD_PARAMETERS = db
[all...]
H A DKlass.java51 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
52 Type type = db.lookupType("Klass");
67 LH_INSTANCE_SLOW_PATH_BIT = db.lookupIntConstant("Klass::_lh_instance_slow_path_bit").intValue();
68 LH_LOG2_ELEMENT_SIZE_SHIFT = db.lookupIntConstant("Klass::_lh_log2_element_size_shift").intValue();
69 LH_ELEMENT_TYPE_SHIFT = db.lookupIntConstant("Klass::_lh_element_type_shift").intValue();
70 LH_HEADER_SIZE_SHIFT = db.lookupIntConstant("Klass::_lh_header_size_shift").intValue();
71 LH_ARRAY_TAG_SHIFT = db.lookupIntConstant("Klass::_lh_array_tag_shift").intValue();
72 LH_ARRAY_TAG_TYPE_VALUE = db.lookupIntConstant("Klass::_lh_array_tag_type_value").intValue();
73 LH_ARRAY_TAG_OBJ_VALUE = db.lookupIntConstant("Klass::_lh_array_tag_obj_value").intValue();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBitType.java69 Type resolveTypes(BasicCDebugInfoDataBase db, ResolveListener listener) { argument
70 super.resolveTypes(db, listener);
71 underlyingType = db.resolveType(this, underlyingType, listener, "resolving bit type");
H A DBasicSym.java52 public abstract void resolve(BasicCDebugInfoDataBase db, ResolveListener listener); argument
H A DLazyBlockSym.java49 public void resolve(BasicCDebugInfoDataBase db, ResolveListener listener) {} argument
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DAdapterBlob.java41 private static void initialize(TypeDataBase db) { argument
42 // Type type = db.lookupType("AdapterBlob");
/openjdk9/jdk/make/launcher/
H A DLauncher-java.corba.gmk35 -Dcom.sun.CORBA.activation.DbDir=./orb.db \
47 -Dcom.sun.CORBA.activation.DbDir=./orb.db \
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/
H A DCheckedException.java29 import com.sun.xml.internal.ws.spi.db.TypeInfo;
102 * Gives the {@link com.sun.xml.internal.ws.spi.db.TypeInfo} of the detail
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/spi/db/
H A DDatabindingProvider.java26 package com.sun.xml.internal.ws.spi.db;
/openjdk9/jaxp/test/javax/xml/jaxp/functional/javax/xml/parsers/ptests/
H A DDocumentBuilderFactoryTest.java162 DocumentBuilder db = dbf.newDocumentBuilder();
163 db.setErrorHandler(eh);
164 db.parse(new File(XML_DIR, "test.xml"));
190 DocumentBuilder db = dbf.newDocumentBuilder();
191 db.setErrorHandler(eh);
192 db.parse(new File(XML_DIR, "test1.xml"));
266 DocumentBuilder db = dbf.newDocumentBuilder();
267 db.setErrorHandler(eh);
268 db.parse(new File(XML_DIR, "DocumentBuilderFactory05.xml"));
282 DocumentBuilder db
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/opto/
H A DPhaseCFG.java43 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
44 Type type = db.lookupType("PhaseCFG");
H A DSafePointNode.java43 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
44 Type type = db.lookupType("SafePointNode");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/compiler/
H A DImmutableOopMapPair.java67 private static void initialize(TypeDataBase db) { argument
68 Type type = db.lookupType("ImmutableOopMapPair");
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/serial/
H A DTenuredGeneration.java51 private static synchronized void initialize(TypeDataBase db) { argument
52 Type type = db.lookupType("TenuredGeneration");

Completed in 257 milliseconds

1234567891011>>