Searched refs:typeKey (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/awt/Choice/UnfocusableToplevel/
H A DUnfocusableToplevel.java100 typeKey(KeyEvent.VK_UP);
101 typeKey(KeyEvent.VK_DOWN);
102 typeKey(KeyEvent.VK_K);
103 typeKey(KeyEvent.VK_PAGE_UP);
104 typeKey(KeyEvent.VK_PAGE_DOWN);
107 private static void typeKey(int keyChar){ method in class:UnfocusableToplevel
/openjdk7/jdk/test/java/awt/event/KeyEvent/CorrectTime/
H A DCorrectTime.java104 typeKey(KeyEvent.VK_A);
105 typeKey(KeyEvent.VK_B);
106 typeKey(KeyEvent.VK_SPACE);
107 typeKey(KeyEvent.VK_Z);
110 private static void typeKey(int keyChar){ method in class:CorrectTime
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DSpecialClassType.java74 String typeKey = type.toString() + stack.getContextCodeString();
76 Type existing = getType(typeKey,stack);
96 putType(typeKey,result,stack);
H A DValueType.java77 String typeKey = theType.toString();
78 Type existing = getType(typeKey,stack);
120 putType(typeKey,it,stack);
127 removeType(typeKey,stack);
/openjdk7/jdk/src/share/back/
H A DStackFrameImpl.c54 FrameNumber fnum, jint slot, jbyte typeKey)
59 if (isObjectTag(typeKey)) {
79 (void)outStream_writeByte(out, typeKey);
80 switch (typeKey) {
147 FrameNumber fnum, jint slot, jbyte typeKey)
152 if (isObjectTag(typeKey)) {
160 switch (typeKey) {
254 jbyte typeKey; local
260 typeKey = inStream_readByte(in);
265 serror = writeVariableValue(env, out, thread, fnum, slot, typeKey);
53 writeVariableValue(JNIEnv *env, PacketOutputStream *out, jthread thread, FrameNumber fnum, jint slot, jbyte typeKey) argument
146 readVariableValue(JNIEnv *env, PacketInputStream *in, jthread thread, FrameNumber fnum, jint slot, jbyte typeKey) argument
312 jbyte typeKey; local
[all...]
H A DinStream.c419 jbyte typeKey = inStream_readByte(stream); local
425 if (isObjectTag(typeKey)) {
428 switch (typeKey) {
466 *typeKeyPtr = typeKey;
H A DoutStream.c334 jbyte typeKey, jvalue value)
336 if (typeKey == JDWP_TAG(OBJECT)) {
339 (void)outStream_writeByte(out, typeKey);
341 if (isObjectTag(typeKey)) {
344 switch (typeKey) {
333 outStream_writeValue(JNIEnv *env, PacketOutputStream *out, jbyte typeKey, jvalue value) argument
H A DoutStream.h79 jbyte typeKey, jvalue value);
H A DeventHelper.c66 char typeKey; /* Not used for method entry events */ member in struct:FrameEventCommandSingle
67 /* If typeKey is 0, then no return value is needed */
466 if (command->typeKey) {
474 if (command->typeKey) {
475 (void)outStream_writeValue(env, out, command->typeKey, command->returnValue);
476 if (isObjectTag(command->typeKey) &&
1055 err = methodReturnType(method, &frameCommand->typeKey);
1061 if (isObjectTag(frameCommand->typeKey) &&
1069 * so signal this by setting typeKey = 0 which is not
1072 frameCommand->typeKey
[all...]
H A DArrayReferenceImpl.c271 jbyte typeKey; local
280 typeKey = componentSignature[0];
282 (void)outStream_writeByte(out, typeKey);
285 if (isObjectTag(typeKey)) {
288 switch (typeKey) {
H A DThreadReferenceImpl.c575 jbyte typeKey; local
589 typeKey = inStream_readByte(in);
594 if (isObjectTag(typeKey)) {
599 switch (typeKey) {
H A Dutil.c340 jbyte typeKey; local
348 typeKey = signature[0];
355 if ((typeKey != JDWP_TAG(OBJECT)) && (typeKey != JDWP_TAG(ARRAY))) {
356 (void)outStream_writeByte(out, typeKey);
359 switch (typeKey) {
416 jbyte typeKey; local
423 typeKey = signature[0];
430 if ((typeKey != JDWP_TAG(OBJECT)) && (typeKey !
754 methodReturnType(jmethodID method, char *typeKey) argument
[all...]
H A DReferenceTypeImpl.c258 jbyte typeKey; local
264 * the same typeKey, so just compute it once.
266 typeKey = specificTypeKey(env, batch.objects[0]);
272 (void)outStream_writeByte(out, typeKey);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java426 byte typeKey = readByte();
427 return vm.objectMirror(readObjectRef(), typeKey);
504 byte typeKey = readByte();
505 return readUntaggedValue(typeKey);
508 ValueImpl readUntaggedValue(byte typeKey) { argument
511 if (isObjectTag(typeKey)) {
512 val = vm.objectMirror(readObjectRef(), typeKey);
514 switch(typeKey) {
581 byte typeKey = readByte();
584 boolean gettingObjects = isObjectTag(typeKey);
[all...]

Completed in 54 milliseconds