Searched refs:INSTANCEOF (Results 1 - 25 of 61) sorted by relevance

123

/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/referenceinfos/
H A DTypeTests.java36 @TADescription(annotation = "TA", type = INSTANCEOF, offset = ReferenceInfoUtil.IGNORE_VALUE)
41 @TADescription(annotation = "TA", type = INSTANCEOF, offset = ReferenceInfoUtil.IGNORE_VALUE)
42 @TADescription(annotation = "TB", type = INSTANCEOF,
44 @TADescription(annotation = "TC", type = INSTANCEOF,
52 @TADescription(annotation = "TA", type = INSTANCEOF, offset = ReferenceInfoUtil.IGNORE_VALUE)
53 @TADescription(annotation = "TB", type = INSTANCEOF,
55 @TADescription(annotation = "TC", type = INSTANCEOF,
64 @TADescription(annotation = "TA", type = INSTANCEOF, offset = ReferenceInfoUtil.IGNORE_VALUE)
69 @TADescription(annotation = "TA", type = INSTANCEOF, offset = ReferenceInfoUtil.IGNORE_VALUE)
70 @TADescription(annotation = "TB", type = INSTANCEOF,
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DINSTANCEOF.java27 * INSTANCEOF - Determine if object is of given type
30 * @version $Id: INSTANCEOF.java 1747278 2016-06-07 17:28:43Z britter $
32 public class INSTANCEOF extends CPInstruction implements LoadClass, ExceptionThrower, class in inherits:CPInstruction,LoadClass,ExceptionThrower,StackProducer,StackConsumer
39 INSTANCEOF() { method in class:INSTANCEOF
43 public INSTANCEOF(final int index) { method in class:INSTANCEOF
44 super(com.sun.org.apache.bcel.internal.Const.INSTANCEOF, index);
H A DInstruction.java424 case Const.INSTANCEOF:
425 obj = new INSTANCEOF();
H A DInstructionFactory.java614 public INSTANCEOF createInstanceOf(final ReferenceType t) {
616 return new INSTANCEOF(cp.addArrayClass((ArrayType) t));
618 return new INSTANCEOF(cp.addClass((ObjectType) t));
/openjdk10/hotspot/test/gc/stress/gcbasher/
H A DBytecode.java40 public static final int INSTANCEOF = 193; field in class:Bytecode
H A DDecompiler.java93 case Bytecode.INSTANCEOF:
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/signature/
H A DSignatureVisitor.java101 public final static char INSTANCEOF = '='; field in class:SignatureVisitor
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/
H A DInstanceOfTreeImpl.java36 assert node.isTokenType(TokenType.INSTANCEOF) : "instanceof expected";
H A DTreeImpl.java155 case INSTANCEOF:
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/expr/
H A DExpressionParserConstants.java93 int INSTANCEOF = 33; field in interface:ExpressionParserConstants
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DRuntimeNode.java74 INSTANCEOF(TokenType.INSTANCEOF, Type.BOOLEAN, 2), enum constant in enum:RuntimeNode.Request
180 case INSTANCEOF:
181 return Request.INSTANCEOF;
H A DBinaryNode.java171 case INSTANCEOF:
250 case INSTANCEOF: {
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DTypeReference.java155 public final static int INSTANCEOF = 0x43; field in class:TypeReference
230 * {@link #INSTANCEOF INSTANCEOF}, {@link #NEW NEW},
366 * {@link #INSTANCEOF INSTANCEOF}, {@link #NEW NEW},
H A DOpcodes.java385 int INSTANCEOF = 193; // - field in interface:Opcodes
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DTargetType.java86 INSTANCEOF(0x43, true), enum constant in enum:TargetType
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DTypeAnnotation.java90 case INSTANCEOF:
178 case INSTANCEOF:
378 case INSTANCEOF:
563 INSTANCEOF(0x43, true), enum constant in enum:TypeAnnotation.TargetType
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DOpcodes.java362 int INSTANCEOF = 193; // - field in interface:Opcodes
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DInstanceOfExpression.java45 super(INSTANCEOF, where, Type.tBoolean, left, right);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.bytecode/src/org/graalvm/compiler/bytecode/
H A DBytecodeDisassembler.java55 import static org.graalvm.compiler.bytecode.Bytecodes.INSTANCEOF;
181 case INSTANCEOF :
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/util/
H A DBCELFactory.java46 import com.sun.org.apache.bcel.internal.generic.INSTANCEOF;
247 public void visitINSTANCEOF( final INSTANCEOF i ) {
249 _out.println("il.append(new INSTANCEOF(_cp.addClass(" + BCELifier.printType(type) + ")));");
/openjdk10/jdk/src/java.base/share/classes/sun/reflect/annotation/
H A DTypeAnnotationParser.java404 private static final byte INSTANCEOF = (byte)0x43; field in class:TypeAnnotationParser
490 case INSTANCEOF:
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/visitor/
H A DNodeOperatorVisitor.java160 case INSTANCEOF:
244 case INSTANCEOF:
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DAnnotationWriter.java95 case INSTANCEOF:
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DOptimisticTypesCalculator.java102 } else if(binaryNode.isTokenType(TokenType.INSTANCEOF)
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DTokenType.java142 INSTANCEOF (BINARY, "instanceof", 10, true), enum constant in enum:TokenType

Completed in 238 milliseconds

123