Searched refs:bc (Results 26 - 50 of 136) sorted by relevance

123456

/openjdk10/nashorn/samples/
H A Dbarchart_weather.js91 var bc = new BarChart(xAxis, yAxis);
112 bc.data.addAll(s1, s2, s3);
114 stage.scene = new Scene(bc, 800, 600);
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/beancontext/
H A DBeanContextChildSupport.java96 * @param bc the new value to be assigned to the {@code BeanContext}
100 public synchronized void setBeanContext(BeanContext bc) throws PropertyVetoException { argument
101 if (bc == beanContext) return;
104 BeanContext newValue = bc;
107 if (rejectedSetBCOnce = !validatePendingSetBeanContext(bc)) {
H A DBeanContextChild.java83 * @param bc The {@code BeanContext} with which
88 void setBeanContext(BeanContext bc) throws PropertyVetoException; argument
H A DBeanContextSupport.java197 BeanContext bc = getBeanContextPeer();
199 return Beans.instantiate(bc.getClass().getClassLoader(), beanName, bc);
760 BeanContext bc = getBeanContextPeer();
762 if (bc != this) {
763 if (bc instanceof Visibility) return ((Visibility)bc).needsGui();
765 if (bc instanceof Container || bc instanceof Component)
1126 BeanContext bc
[all...]
/openjdk10/jdk/test/sun/security/tools/jarsigner/
H A Dcertpolicy.sh42 $KT -genkeypair -alias ca -dname CN=CA -ext bc
51 -ext "2.5.29.36=30 03 80 01 00" -ext bc | \
H A Dweaksize.sh47 $KT -genkeypair -alias ca -dname CN=CA -ext bc
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java932 final int[] bc = new int[cbles.length];
936 bc[k] = -1; // no count to accumulate here
939 backCountTable.put(def, bc);
1075 int[] bc = backCountTable.get(def);
1076 for (int j = 0; j < bc.length; j++) {
1077 if (bc[j] >= 0) {
1078 int backCount = bc[j];
1079 bc[j] = -1; // close out; do not collect further counts
1330 final int[] bc = backCountTable.get(def);
1331 assert(bc !
[all...]
H A DPackageReader.java1960 int bc = bc_codes.getByte();
1962 buf[i] = (byte)bc;
1964 if (bc == _wide) {
1965 bc = bc_codes.getByte();
1966 buf[++i] = (byte)bc;
1969 assert(bc == (0xFF & bc));
1971 switch (bc) {
1975 allSwitchOps.add(bc);
1994 assert(getCPRefOpBand(bc)
[all...]
/openjdk10/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.hpp56 static int get_index_u1(JavaThread *thread, Bytecodes::Code bc) argument
57 { return bytecode(thread).get_index_u1(bc); }
58 static int get_index_u2(JavaThread *thread, Bytecodes::Code bc) argument
59 { return bytecode(thread).get_index_u2(bc); }
60 static int get_index_u2_cpcache(JavaThread *thread, Bytecodes::Code bc) argument
61 { return bytecode(thread).get_index_u2_cpcache(bc); }
62 static int get_index_u4(JavaThread *thread, Bytecodes::Code bc) argument
63 { return bytecode(thread).get_index_u4(bc); }
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DBatchEnvironment.java666 BinaryClass bc = null;
668 bc = loadFile(binfile);
679 if ((bc != null) && !bc.getName().equals(nm)) {
680 error(0, "wrong.class", binfile.getPath(), c, bc);
681 bc = null;
685 if (bc == null) {
694 if (bc.getSource() != null) {
695 srcfile = ClassFile.newClassFile(new File((String)bc.getSource()));
704 c.setDefinition(bc, CS_SOURC
[all...]
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciEnv.hpp92 int method_index, Bytecodes::Code bc,
122 int method_index, Bytecodes::Code bc,
131 Bytecodes::Code bc,
H A DjvmciEnv.cpp286 Bytecodes::Code bc,
293 switch (bc) {
319 int index, Bytecodes::Code bc,
321 if (bc == Bytecodes::_invokedynamic) {
348 switch (bc) {
367 methodHandle m = lookup_method(accessor, holder, name_sym, sig_sym, bc, tag);
369 (bc == Bytecodes::_invokestatic
404 int index, Bytecodes::Code bc,
407 return get_method_by_index_impl(cpool, index, bc, accessor);
282 lookup_method(InstanceKlass* accessor, Klass* holder, Symbol* name, Symbol* sig, Bytecodes::Code bc, constantTag tag) argument
318 get_method_by_index_impl(const constantPoolHandle& cpool, int index, Bytecodes::Code bc, InstanceKlass* accessor) argument
403 get_method_by_index(const constantPoolHandle& cpool, int index, Bytecodes::Code bc, InstanceKlass* accessor) argument
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java193 BasicChecker bc;
194 bc = new BasicChecker(anchor,
198 certPathCheckers.add(bc);
228 bc.getPublicKey());
/openjdk10/jdk/src/demo/share/applets/NervousText/
H A DNervousText.java80 StringBuilder bc = new StringBuilder(bannerLength);
96 bc.append(c);
101 bannerLength = bc.length();
104 bc.getChars(0, bannerLength, bannerChars, 0);
/openjdk10/jdk/test/sun/security/validator/
H A Dsamedn.sh61 $KT -genkeypair -alias ca1 -dname CN=CA -keyalg rsa -sigalg md5withrsa -ext bc -startdate -1y
62 $KT -genkeypair -alias ca2 -dname CN=CA -keyalg rsa -sigalg sha1withrsa -ext bc -startdate -1y
H A Dcertreplace.sh60 $KT -genkeypair -alias ca -dname CN=CA -keyalg rsa -sigalg md2withrsa -ext bc
66 $KT -certreq -alias int | $KT -gencert -rfc -alias ca -ext bc \
/openjdk10/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DCompilation.java196 int bc = isOsr() ? getBCI() : -1;
197 stream.print(getId() + getMethod().decodeFlags(bc) + " " + compiler + " " + getMethod().format(bc));
220 int bc = isOsr() ? getBCI() : -1;
221 stream.print(getMethod().decodeFlags(bc) + " " + compiler + " " + getMethod().format(bc));
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DDataBuilder.java219 ByteContainer bc = binaryContainer.getKlassesGotContainer();
220 header.setKlassesGotSize((bc.getByteStreamSize() / 8));
221 bc = binaryContainer.getMetadataGotContainer();
222 header.setMetadataGotSize((bc.getByteStreamSize() / 8));
223 bc = binaryContainer.getOopGotContainer();
224 header.setOopGotSize((bc.getByteStreamSize() / 8));
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/
H A DX11CustomCursor.java75 int bc = 0xffffff;
130 bc = cols[j].color;
134 int bcr = (bc >> 16) & 0x000000ff;
135 int bcg = (bc >> 8) & 0x000000ff;
136 int bcb = (bc >> 0) & 0x000000ff;
171 createCursor(xorMask, andMask, 8*wNByte, height, fc, bc, xHotSpot, yHotSpot);
/openjdk10/hotspot/src/share/vm/runtime/
H A Drelocator.cpp205 bool Relocator::is_opcode_lookupswitch(Bytecodes::Code bc) { argument
206 switch (bc) {
219 Bytecodes::Code bc= code_at(bci); local
220 switch (bc) {
228 int pad = get_orig_switch_pad(bci, is_opcode_lookupswitch(bc));
233 switch (bc) {
316 Bytecodes::Code bc; local
319 switch (bc= code_at(bci)) {
348 int recPad = get_orig_switch_pad(bci, (bc != Bytecodes::_tableswitch));
356 _changes->push(new ChangeSwitchPad(bci, oldPad, (bc !
664 Bytecodes::Code bc = code_at(bci); local
[all...]
/openjdk10/hotspot/test/gc/stress/gcbasher/
H A DDecompiler.java86 int bc = cursor.readUnsignedByteAt(byteCodeIndex);
88 switch (bc) {
162 bc = cursor.readUnsignedByteAt(++byteCodeIndex);
163 if (bc == Bytecode.IINC) {
172 byteCodeIndex += Bytecode.getLength(bc);
/openjdk10/hotspot/src/share/vm/ci/
H A DciStreams.cpp91 Bytecodes::Code ciBytecodeStream::next_wide_or_table(Bytecodes::Code bc) { argument
92 switch (bc) { // Check for special bytecode handling
97 bc = Bytecodes::java_code(_raw_bc = (Bytecodes::Code)_pc[1]);
98 assert(Bytecodes::wide_length_for(bc) > 2, "must make progress");
99 _pc += Bytecodes::wide_length_for(bc);
129 return bc;
269 cur_bc() == Bytecodes::_putstatic, "wrong bc");
/openjdk10/jdk/test/sun/java2d/pipe/hw/VSyncedBufferStrategyTest/
H A DVSyncedBufferStrategyTest.java94 BufferCapabilities bc = defaultBC;
96 bc = new sun.java2d.pipe.hw.ExtendedBufferCapabilities(
103 createBufferStrategy(2, bc);
105 System.err.println("Warning: cap is not supported: "+bc);
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DArraysParallelSortHelpers.java139 Relay bc = new Relay(new Merger<>(fc, a, w, b, q,
141 new Sorter<>(bc, a, w, b+q, h-q, wb+q, g, c).fork();
142 s = new EmptyCompleter(bc);
257 Relay bc = new Relay(new Merger(fc, a, w, b, q,
259 new Sorter(bc, a, w, b+q, h-q, wb+q, g).fork();
260 s = new EmptyCompleter(bc);
368 Relay bc = new Relay(new Merger(fc, a, w, b, q,
370 new Sorter(bc, a, w, b+q, h-q, wb+q, g).fork();
371 s = new EmptyCompleter(bc);
479 Relay bc
[all...]
/openjdk10/jdk/test/java/lang/invoke/indify/
H A DIndify.java391 if (i.bc != opc_invokestatic) continue;
408 if (i2 != null && i2.bc == opc_invokevirtual &&
452 String pops = INSTRUCTION_POPS[i.bc];
455 if (jvm.stackMotion(i.bc)) continue decode;
459 switch (i.bc) {
638 boolean stackMotion(int bc) { argument
639 switch (bc) {
683 int bc = i.bc;
684 switch (bc) {
1783 int bc; field in class:Indify.Instruction
[all...]

Completed in 125 milliseconds

123456