Searched defs:fb (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDocumentFilter.java70 * @param fb FilterBypass that can be used to mutate Document
77 public void remove(FilterBypass fb, int offset, int length) throws argument
79 fb.remove(offset, length);
88 * @param fb FilterBypass that can be used to mutate Document
98 public void insertString(FilterBypass fb, int offset, String string, argument
100 fb.insertString(offset, string, attr);
109 * @param fb FilterBypass that can be used to mutate Document
118 public void replace(FilterBypass fb, int offset, int length, String text, argument
120 fb.replace(offset, length, text, attrs);
H A DNavigationFilter.java59 * @param fb FilterBypass that can be used to mutate caret position
63 public void setDot(FilterBypass fb, int dot, Position.Bias bias) { argument
64 fb.setDot(dot, bias);
74 * @param fb FilterBypass that can be used to mutate caret position
78 public void moveDot(FilterBypass fb, int dot, Position.Bias bias) { argument
79 fb.moveDot(dot, bias);
H A DNumberFormatter.java346 void replace(DocumentFilter.FilterBypass fb, int offset, int length, argument
350 toggleSignIfNecessary(fb, offset, string.charAt(0))) {
353 super.replace(fb, offset, length, string, attr);
361 private boolean toggleSignIfNecessary(DocumentFilter.FilterBypass fb, argument
383 fb.remove(0, fb.getDocument().getLength());
384 fb.insertString(0, string, null);
H A DDefaultFormatter.java547 void replace(DocumentFilter.FilterBypass fb, int offset, argument
550 ReplaceHolder rh = getReplaceHolder(fb, offset, length, text, attrs);
579 rh.fb.getDocument().getLength() - rh.offset);
589 rh.fb.replace(rh.offset, rh.length, rh.text, rh.attrs);
610 void setDot(NavigationFilter.FilterBypass fb, int dot, Position.Bias bias){ argument
611 fb.setDot(dot, bias);
618 void moveDot(NavigationFilter.FilterBypass fb, int dot, argument
620 fb.moveDot(dot, bias);
628 ReplaceHolder getReplaceHolder(DocumentFilter.FilterBypass fb, int offset, argument
634 replaceHolder.reset(fb, offse
645 DocumentFilter.FilterBypass fb; field in class:DefaultFormatter.ReplaceHolder
663 reset(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) argument
682 setDot(FilterBypass fb, int dot, Position.Bias bias) argument
692 moveDot(FilterBypass fb, int dot, Position.Bias bias) argument
725 remove(FilterBypass fb, int offset, int length) argument
736 insertString(FilterBypass fb, int offset, String string, AttributeSet attr) argument
749 replace(FilterBypass fb, int offset, int length, String text, AttributeSet attr) argument
[all...]
H A DInternationalFormatter.java592 void replace(DocumentFilter.FilterBypass fb, int offset, argument
596 fb.replace(offset, length, text, attrs);
599 super.replace(fb, offset, length, text, attrs);
951 ReplaceHolder getReplaceHolder(DocumentFilter.FilterBypass fb, int offset, argument
957 return super.getReplaceHolder(fb, offset, length, text, attrs);
989 length = fb.getDocument().getLength();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSpinner.java1333 public void replace(FilterBypass fb, int offset, int length, argument
1337 fb.getDocument().getLength()) {
1339 fb.getDocument().getText(0, offset) +
1344 fb.remove(0, offset + length);
1345 fb.insertString(0, value, null);
1352 super.replace(fb, offset, length, string, attrs);
1355 public void insertString(FilterBypass fb, int offset, argument
1358 replace(fb, offset, 0, string, attr);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp86 inline void Assembler::fb( Condition c, bool a, address d, relocInfo::relocType rt ) { v9_dep(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(fb_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); } function in class:Assembler
87 inline void Assembler::fb( Condition c, bool a, Label& L ) { fb(c, a, target(L)); } function in class:Assembler
581 inline void MacroAssembler::fb( Condition c, bool a, Predict p, address d, relocInfo::relocType rt ) { function in class:MacroAssembler
585 Assembler::fb(c, a, d, rt);
588 inline void MacroAssembler::fb( Condition c, bool a, Predict p, Label& L ) { function in class:MacroAssembler
589 fb(c, a, p, target(L));
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp42 void constantPoolOopDesc::set_flag_at(FlagBit fb) { argument
46 int nflags = oflags | (1 << (int)fb);
51 _flags |= (1 << (int)fb); // better than nothing

Completed in 427 milliseconds