Searched refs:bc (Results 1 - 25 of 88) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextEvent.java56 * @param bc The BeanContext source
58 protected BeanContextEvent(BeanContext bc) { argument
59 super(bc);
70 * @param bc the <code>BeanContext</code> from which this event
73 public synchronized void setPropagatedFrom(BeanContext bc) { argument
74 propagatedFrom = bc;
H A DBeanContextMembershipEvent.java63 * @param bc The BeanContext source
68 public BeanContextMembershipEvent(BeanContext bc, Collection changes) { argument
69 super(bc);
80 * @param bc The BeanContext source
86 public BeanContextMembershipEvent(BeanContext bc, Object[] changes) { argument
87 super(bc);
H A DBeanContextChild.java83 * @param bc The <code>BeanContext</code> with which
88 void setBeanContext(BeanContext bc) throws PropertyVetoException; argument
H A DBeanContextChildSupport.java95 * @param bc the new value to be assigned to the <code>BeanContext</code>
99 public synchronized void setBeanContext(BeanContext bc) throws PropertyVetoException { argument
100 if (bc == beanContext) return;
103 BeanContext newValue = bc;
106 if (rejectedSetBCOnce = !validatePendingSetBeanContext(bc)) {
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java40 protected int bc; // opcode of this instruction field in class:Instruction
46 protected Instruction(byte[] bytes, int pc, int bc, int w, int length) { argument
47 reset(bytes, pc, bc, w, length);
49 private void reset(byte[] bytes, int pc, int bc, int w, int length) { argument
52 this.bc = bc;
58 return bc;
85 return isNonstandard(bc);
105 int bc = getByte(bytes, pc);
108 int length = BC_LENGTH[w][bc];
247 Switch(byte[] bytes, int pc, int bc) argument
423 isNonstandard(int bc) argument
427 opLength(int bc) argument
432 opWideLength(int bc) argument
438 isLocalSlotOp(int bc) argument
442 isBranchOp(int bc) argument
446 isCPRefOp(int bc) argument
452 getCPRefOpTag(int bc) argument
458 isFieldOp(int bc) argument
462 isInvokeInitOp(int bc) argument
466 isSelfLinkerOp(int bc) argument
555 byteName(int bc) argument
600 def(String fmt, int bc) argument
[all...]
H A DPackageWriter.java827 final int[] bc = new int[cbles.length];
831 bc[k] = -1; // no count to accumulate here
834 backCountTable.put(def, bc);
972 int[] bc = backCountTable.get(def);
973 for (int j = 0; j < bc.length; j++) {
974 if (bc[j] >= 0) {
975 int backCount = bc[j];
976 bc[j] = -1; // close out; do not collect further counts
1225 final int[] bc = backCountTable.get(def);
1226 assert(bc !
[all...]
H A DPackageReader.java1797 int bc = bc_codes.getByte();
1799 buf[i] = (byte)bc;
1801 if (bc == _wide) {
1802 bc = bc_codes.getByte();
1803 buf[++i] = (byte)bc;
1806 assert(bc == (0xFF & bc));
1808 switch (bc) {
1812 allSwitchOps.add(bc);
1831 assert(getCPRefOpBand(bc)
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharUnicode.java109 int bc = 0;
119 bc = 1;
124 bc = 2;
136 badInputLength = bc;
143 bc = 1;
148 bc = 1;
153 bc = 1;
157 badInputLength = bc;
166 /* Loop invariant: (b1 contains the next input byte) && (bc == 1) */
169 bc
[all...]
/openjdk7/jdk/test/java/beans/beancontext/
H A DTest4132698.java51 public Test4132698(BeanContext bc, Object[] objects) { argument
52 super(bc, objects);
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.hpp86 int get_index_u1(Bytecodes::Code bc) const {
87 assert_same_format_as(bc); assert_index_size(1, bc);
90 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const { argument
91 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide);
93 if (can_use_native_byte_order(bc, is_wide))
97 int get_index_u1_cpcache(Bytecodes::Code bc) const {
98 assert_same_format_as(bc); assert_index_size(1, bc);
127 get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const argument
138 can_use_native_byte_order(Bytecodes::Code bc, bool is_wide = false) argument
[all...]
H A Dbytecode.cpp50 tty->print_cr("assert_same_format_as(%d) failed on bc=%d%s; %d != %d",
55 void Bytecode::assert_index_size(int size, Bytecodes::Code bc, bool is_wide) { argument
56 int have_fmt = (Bytecodes::flags(bc, is_wide)
69 tty->print_cr("assert_index_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
74 void Bytecode::assert_offset_size(int size, Bytecodes::Code bc, bool is_wide) { argument
75 int have_fmt = Bytecodes::flags(bc, is_wide) & Bytecodes::_all_fmt_bits;
83 tty->print_cr("assert_offset_size %d: bc=%d%s %d != %d", size, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, boo argument
106 assert_native_index(Bytecodes::Code bc, bool is_wide) argument
154 Bytecodes::Code bc = invoke_code(); local
[all...]
H A DinterpreterRuntime.hpp68 static int get_index_u1(JavaThread *thread, Bytecodes::Code bc) argument
69 { return bytecode(thread).get_index_u1(bc); }
70 static int get_index_u2(JavaThread *thread, Bytecodes::Code bc) argument
71 { return bytecode(thread).get_index_u2(bc); }
72 static int get_index_u2_cpcache(JavaThread *thread, Bytecodes::Code bc) argument
73 { return bytecode(thread).get_index_u2_cpcache(bc); }
74 static int get_index_u4(JavaThread *thread, Bytecodes::Code bc) argument
75 { return bytecode(thread).get_index_u4(bc); }
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DMethodNode.java55 InputBytecode bc = (InputBytecode) object;
56 if (bc.getInlined() == null) {
57 return new Node[]{new BytecodeNode(bc, graph, bciString)};
59 return new Node[]{new BytecodeNode(bc, graph, bciString), new MethodNode(bc.getInlined(), graph, bc.getBci() + " " + bciString)};
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputMethod.java74 for (InputBytecode bc : bytecodes) {
75 if (bc.getBci() == m.getBci()) {
76 bc.setInlined(m);
107 InputBytecode bc = new InputBytecode(number, tmpName);
108 bytecodes.add(bc);
112 bc.setInlined(m);
/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.hpp66 int arg_size_for_bc(Bytecodes::Code bc) { return size() + (Bytecodes::has_receiver(bc) ? 1 : 0); } argument
H A DciField.cpp316 Bytecodes::Code bc) {
318 assert(bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic ||
319 bc == Bytecodes::_getfield || bc == Bytecodes::_putfield,
330 bool is_static = (bc == Bytecodes::_getstatic || bc == Bytecodes::_putstatic);
336 bool is_put = (bc == Bytecodes::_putfield || bc == Bytecodes::_putstatic);
351 Bytecodes::java_code(bc),
315 will_link(ciInstanceKlass* accessing_klass, Bytecodes::Code bc) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecode.java50 public int getIndexU2(int bc, boolean isWide) { argument
51 if (can_use_native_byte_order(bc, isWide)) {
62 static boolean can_use_native_byte_order(int bc, boolean is_wide) { argument
63 return (VM.getVM().isBigEndian() || Bytecodes.native_byte_order(bc /*, is_wide*/));
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DCompilation.java98 int bc = isOsr() ? getOsr_bci() : -1;
99 stream.print(getId() + getMethod().decodeFlags(bc) + getMethod().format(bc));
115 int bc = isOsr() ? getOsr_bci() : -1;
116 stream.print(getId() + getMethod().decodeFlags(bc) + getMethod().format(bc));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJClass.java212 JClass bc = b.getBaseClass(baseType);
213 if(bc!=null)
214 return bc;
219 JClass bc = itfs.next().getBaseClass(baseType);
220 if(bc!=null)
221 return bc;
/openjdk7/jdk/src/share/demo/applets/NervousText/
H A DNervousText.java79 StringBuilder bc = new StringBuilder(bannerLength);
95 bc.append(c);
100 bannerLength = bc.length();
103 bc.getChars(0, bannerLength, bannerChars, 0);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java692 BinaryClass bc = null;
694 bc = loadFile(binfile);
705 if ((bc != null) && !bc.getName().equals(nm)) {
706 error(0, "wrong.class", binfile.getPath(), c, bc);
707 bc = null;
711 if (bc == null) {
720 if (bc.getSource() != null) {
721 srcfile = new ClassFile(new File((String)bc.getSource()));
730 c.setDefinition(bc, CS_SOURC
[all...]
/openjdk7/jdk/test/sun/security/validator/
H A Dcertreplace.sh58 $KT -genkeypair -alias ca -dname CN=CA -keyalg rsa -sigalg md2withrsa -ext bc
64 $KT -certreq -alias int | $KT -gencert -rfc -alias ca -ext bc \
H A Dsamedn.sh59 $KT -genkeypair -alias ca1 -dname CN=CA -keyalg rsa -sigalg md5withrsa -ext bc -startdate -1y
60 $KT -genkeypair -alias ca2 -dname CN=CA -keyalg rsa -sigalg sha1withrsa -ext bc -startdate -1y
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11CustomCursor.java74 int bc = 0xffffff;
129 bc = cols[j].color;
133 int bcr = (bc >> 16) & 0x000000ff;
134 int bcg = (bc >> 8) & 0x000000ff;
135 int bcb = (bc >> 0) & 0x000000ff;
170 createCursor(xorMask, andMask, 8*wNByte, height, fc, bc, xHotSpot, yHotSpot);
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp199 bool Relocator::is_opcode_lookupswitch(Bytecodes::Code bc) { argument
200 switch (bc) {
213 Bytecodes::Code bc= code_at(bci); local
214 switch (bc) {
222 int pad = get_orig_switch_pad(bci, is_opcode_lookupswitch(bc));
227 switch (bc) {
308 Bytecodes::Code bc; local
311 switch (bc= code_at(bci)) {
340 int recPad = get_orig_switch_pad(bci, (bc != Bytecodes::_tableswitch));
348 _changes->push(new ChangeSwitchPad(bci, oldPad, (bc !
654 Bytecodes::Code bc = code_at(bci); local
[all...]

Completed in 48 milliseconds

1234