Searched refs:intValue (Results 1 - 25 of 688) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DNumber.java62 public abstract int intValue(); method in class:Number
91 * <p>This implementation returns the result of {@link #intValue} cast
99 return (byte)intValue();
105 * <p>This implementation returns the result of {@link #intValue} cast
113 return (short)intValue();
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/
H A DIntegerMonitor.java47 public int intValue(); method in interface:IntegerMonitor
/openjdk10/jdk/test/sun/jvmstat/perfdata/PrologSanity/
H A DPrologSizeSanityCheck.java52 if (prologOverflow.intValue() != 0) {
54 + sizeName + "=" + prologSize.intValue()
55 + usedName + "=" + prologUsed.intValue()
56 + overflowName + "=" + prologOverflow.intValue()
60 if (prologUsed.intValue() + 3*K >= prologSize.intValue()) {
71 + sizeName + "=" + prologSize.intValue()
72 + usedName + "=" + prologUsed.intValue()
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DPrimitiveValue.java90 int intValue(); method in interface:PrimitiveValue
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/crypto/
H A DNonce.java37 return sun.security.krb5.Confounder.intValue() & 0x7fffffff;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java71 private static int intValue(Object x) { return ((Number)x).intValue(); } method in class:ConstFold
91 return syms.intType.constType(-intValue(od));
93 return syms.intType.constType(~intValue(od));
95 return syms.booleanType.constType(b2i(intValue(od) == 0));
97 return syms.booleanType.constType(b2i(intValue(od) == 0));
99 return syms.booleanType.constType(b2i(intValue(od) != 0));
101 return syms.booleanType.constType(b2i(intValue(od) < 0));
103 return syms.booleanType.constType(b2i(intValue(od) > 0));
105 return syms.booleanType.constType(b2i(intValue(o
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DOSThread.java63 ALLOCATED = db.lookupIntConstant("ALLOCATED").intValue();
64 INITIALIZED = db.lookupIntConstant("INITIALIZED").intValue();
65 RUNNABLE = db.lookupIntConstant("RUNNABLE").intValue();
66 MONITOR_WAIT = db.lookupIntConstant("MONITOR_WAIT").intValue();
67 CONDVAR_WAIT = db.lookupIntConstant("CONDVAR_WAIT").intValue();
68 OBJECT_WAIT = db.lookupIntConstant("OBJECT_WAIT").intValue();
69 BREAKPOINTED = db.lookupIntConstant("BREAKPOINTED").intValue();
70 SLEEPING = db.lookupIntConstant("SLEEPING").intValue();
71 ZOMBIE = db.lookupIntConstant("ZOMBIE").intValue();
/openjdk10/langtools/test/tools/javac/generics/inference/8156954/
H A DT8156954.java39 void m(Integer intValue) { argument
40 m1(o -> o, o -> o , intValue);
41 m2(o -> o, o -> o , intValue);
/openjdk10/jdk/test/javax/management/query/
H A DQueryData.java25 protected int intValue = 9; field in class:QueryData
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapValue.java65 TYPE_BITS = db.lookupIntConstant("OopMapValue::type_bits").intValue();
66 REGISTER_BITS = db.lookupIntConstant("OopMapValue::register_bits").intValue();
67 TYPE_SHIFT = db.lookupIntConstant("OopMapValue::type_shift").intValue();
68 REGISTER_SHIFT = db.lookupIntConstant("OopMapValue::register_shift").intValue();
69 TYPE_MASK = db.lookupIntConstant("OopMapValue::type_mask").intValue();
70 TYPE_MASK_IN_PLACE = db.lookupIntConstant("OopMapValue::type_mask_in_place").intValue();
71 REGISTER_MASK = db.lookupIntConstant("OopMapValue::register_mask").intValue();
72 REGISTER_MASK_IN_PLACE = db.lookupIntConstant("OopMapValue::register_mask_in_place").intValue();
73 UNUSED_VALUE = db.lookupIntConstant("OopMapValue::unused_value").intValue();
74 OOP_VALUE = db.lookupIntConstant("OopMapValue::oop_value").intValue();
[all...]
/openjdk10/jdk/test/java/lang/InheritableThreadLocal/
H A DBasic.java37 return new Integer(((Integer)parentValue).intValue() + 1);
61 if (((Integer)(n.get())).intValue() < threadCount-1) {
67 int threadId = ((Integer)(n.get())).intValue();
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Data/test/unit/src/com/sun/hotspot/igv/data/
H A DPairTest.java68 assertTrue(p2.getLeft().intValue() == 1);
69 assertTrue(p2.getRight().intValue() == 2);
81 assertTrue(p2.getLeft().intValue() == 2);
82 assertTrue(p2.getRight().intValue() == 2);
88 assertTrue(p2.getLeft().intValue() == 2);
89 assertTrue(p2.getRight().intValue() == 1);
/openjdk10/langtools/test/tools/javac/lambda/
H A DLambdaExpr01.java77 S_Integer_int s_I_i = (Integer x) -> x.intValue() + 1;
79 S_Integer_Integer s_I_I = (Integer x) -> x.intValue() + 1;
92 S_Integer_int s_I_i = (Integer x) -> x.intValue() + 1;
94 S_Integer_Integer s_I_I = (Integer x) -> x.intValue() + 1;
107 S_Integer_int s_I_i = (Integer x) -> x.intValue() + 1;
109 S_Integer_Integer s_I_I = (Integer x) -> x.intValue() + 1;
122 S_Integer_int s_I_i = (Integer x) -> x.intValue() + 1;
124 S_Integer_Integer s_I_I = (Integer x) -> x.intValue() + 1;
H A DLambdaExpr02.java77 S_Integer_int s_I_i = (Integer x) -> { return x.intValue() + 1; };
79 S_Integer_Integer s_I_I = (Integer x) -> { return x.intValue() + 1; };
92 S_Integer_int s_I_i = (Integer x) -> { return x.intValue() + 1; };
94 S_Integer_Integer s_I_I = (Integer x) -> { return x.intValue() + 1; };
107 S_Integer_int s_I_i = (Integer x) -> { return x.intValue() + 1; };
109 S_Integer_Integer s_I_I = (Integer x) -> { return x.intValue() + 1; };
122 S_Integer_int s_I_i = (Integer x) -> { return x.intValue() + 1; };
124 S_Integer_Integer s_I_I = (Integer x) -> { return x.intValue() + 1; };
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DLocation.java62 OFFSET_MASK = db.lookupIntConstant("Location::OFFSET_MASK").intValue();
63 OFFSET_SHIFT = db.lookupIntConstant("Location::OFFSET_SHIFT").intValue();
64 TYPE_MASK = db.lookupIntConstant("Location::TYPE_MASK").intValue();
65 TYPE_SHIFT = db.lookupIntConstant("Location::TYPE_SHIFT").intValue();
66 WHERE_MASK = db.lookupIntConstant("Location::WHERE_MASK").intValue();
67 WHERE_SHIFT = db.lookupIntConstant("Location::WHERE_SHIFT").intValue();
70 TYPE_NORMAL = db.lookupIntConstant("Location::normal").intValue();
71 TYPE_OOP = db.lookupIntConstant("Location::oop").intValue();
72 TYPE_NARROWOOP = db.lookupIntConstant("Location::narrowoop").intValue();
73 TYPE_INT_IN_LONG = db.lookupIntConstant("Location::int_in_long").intValue();
[all...]
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/
H A DDecoder.java102 private int intValue; field in class:Decoder
299 intValue = integerReader.get();
302 HeaderTable.HeaderField f = table.get(intValue);
303 action.onIndexed(intValue, f.name, f.value);
337 HeaderTable.HeaderField f = table.get(intValue);
338 action.onLiteral(intValue, f.name, value, valueHuffmanEncoded);
384 HeaderTable.HeaderField f = table.get(intValue);
386 action.onLiteralWithIndexing(intValue, n, v, valueHuffmanEncoded);
428 HeaderTable.HeaderField f = table.get(intValue);
429 action.onLiteralNeverIndexed(intValue,
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXInt.java38 public final int intValue() { method in class:XInt
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/
H A DConfounder.java48 public static int intValue() { method in class:Confounder
/openjdk10/jdk/test/java/lang/Integer/
H A DValueOf.java42 if (Integer.valueOf(i).intValue() != i)
/openjdk10/jdk/test/java/text/Format/NumberFormat/
H A DBug4990596.java53 public int intValue() { method in class:Bug4990596.MutableInteger
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/datatype/
H A DDurationTest.java359 durationAssertEquals(durationBigInteger, DatatypeConstants.DURATION, normalizedIsPositive, normalizedYears.intValue(), normalizedMonths.intValue(),
360 normalizedDays.intValue(), normalizedHours.intValue(), normalizedMinutes.intValue(), normalizedSeconds.intValue(),
363 Duration durationInt = datatypeFactory.newDuration(isPositive, years.intValue(), months.intValue(), days.intValue(), hours.intValue(),
[all...]
/openjdk10/jdk/test/sun/util/logging/
H A DPlatformLoggerTest.java209 int intValue = level.intValue();
211 intValue -= 7;
213 javaLogger.setLevel(Level.parse(String.valueOf(intValue)));
219 if (effectiveLevel.intValue() != intValue) {
220 throw new RuntimeException("Retrieved backing java.util.logging.Logger level.intValue() "
221 + effectiveLevel.intValue() + " is not the expected " + intValue);
223 if (intValue !
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DBooleanValueImpl.java55 return intValue();
82 public int intValue() { method in class:BooleanValueImpl
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/ccache/
H A DTag.java66 os.write(time_offset.intValue());
69 os.write(usec_offset.intValue());
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsRadioButtonUI.java80 dashedRectGapX = ((Integer)UIManager.get("Button.dashedRectGapX")).intValue();
81 dashedRectGapY = ((Integer)UIManager.get("Button.dashedRectGapY")).intValue();
82 dashedRectGapWidth = ((Integer)UIManager.get("Button.dashedRectGapWidth")).intValue();
83 dashedRectGapHeight = ((Integer)UIManager.get("Button.dashedRectGapHeight")).intValue();

Completed in 800 milliseconds

1234567891011>>