Searched defs:dot (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DNavigationFilter.java53 * Invoked prior to the Caret setting the dot. The default implementation
60 * @param dot the position >= 0
61 * @param bias Bias to place the dot at
63 public void setDot(FilterBypass fb, int dot, Position.Bias bias) { argument
64 fb.setDot(dot, bias);
68 * Invoked prior to the Caret moving the dot. The default implementation
75 * @param dot the position >= 0
78 public void moveDot(FilterBypass fb, int dot, Position.Bias bias) { argument
79 fb.moveDot(dot, bias);
134 * @param dot th
137 setDot(int dot, Position.Bias bias) argument
145 moveDot(int dot, Position.Bias bias) argument
[all...]
H A DCaret.java35 * has a position in the document referred to as a dot.
36 * The dot is where the caret is currently located in the
40 * no selection the dot and mark will be equal. If a selection
43 * The dot can be placed by either calling
45 * the dot has the effect of removing any selection that may
46 * have previously existed. The dot and mark will be equal.
47 * Moving the dot has the effect of creating a selection as
177 * the dot.
185 * causes the mark to become the same as the dot,
191 * @param dot th
193 setDot(int dot) argument
202 moveDot(int dot) argument
[all...]
H A DStyledEditorKit.java224 * Updates the attributes. <code>dot</code> and <code>mark</code>
227 void updateInputAttributes(int dot, int mark, JTextComponent c) { argument
233 int start = Math.min(dot, mark);
241 if (currentParagraph.getStartOffset() == start || dot != mark) {
H A DDefaultFormatter.java610 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);
682 public void setDot(FilterBypass fb, int dot, Position.Bias bias) { argument
686 fb.setDot(dot, bias);
688 DefaultFormatter.this.setDot(fb, dot, bias);
692 public void moveDot(FilterBypass fb, int dot, Position.Bias bias) { argument
696 fb.moveDot(dot, bias);
698 DefaultFormatter.this.moveDot(fb, dot, bia
[all...]
H A DDefaultCaret.java320 * This will cause a selection if the dot and mark
621 Rectangle r = mapper.modelToView(component, dot, dotBias);
677 * by the implementation of this interface. Sets the dot
687 dot = mark = 0;
858 if ((dot != mark) && (h != null) && (selectionTag == null)) {
859 int p0 = Math.min(dot, mark);
860 int p1 = Math.max(dot, mark);
972 Rectangle loc = mapper.modelToView(component, dot,dotBias);
1027 return dot;
1032 * the dot an
1050 setDot(int dot) argument
1062 moveDot(int dot) argument
1078 moveDot(int dot, Position.Bias dotBias) argument
1100 handleMoveDot(int dot, Position.Bias dotBias) argument
1143 setDot(int dot, Position.Bias dotBias) argument
1158 handleSetDot(int dot, Position.Bias dotBias) argument
1261 changeCaretPosition(int dot, Position.Bias dotBias) argument
1565 int dot; field in class:DefaultCaret
1915 setDot(int dot, Position.Bias bias) argument
1919 moveDot(int dot, Position.Bias bias) argument
[all...]
H A DJTextComponent.java860 * - the saved caret dot (Integer)
863 * - the saved dot bias (Position.Bias)
865 * be similar, but will not contain the dot
1813 * empty document, or the value of dot if no selection.
1846 * is empty, or the value of dot if there is no selection.
2593 * This keeps track of the dot position internally. When the caret
2599 int dot = e.getDot();
2601 if (caretPos != dot) {
2604 new Integer(caretPos), new Integer(dot));
2605 caretPos = dot;
4486 private int dot; field in class:JTextComponent.MutableCaretEvent
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifIconFactory.java268 private Color dot = UIManager.getColor("activeCaptionBorder"); field in class:MotifIconFactory.RadioButtonIcon
319 g.setColor(dot);
/openjdk7/jdk/src/windows/native/sun/font/
H A Dfontpath.c680 LPWSTR dot = wcsrchr((LPWSTR)data, L'.'); local
681 if (dot == NULL || ((wcsicmp(dot, L".ttf") != 0)
682 && (wcsicmp(dot, L".otf") != 0))) {
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.cpp126 const char* dot = strrchr(PrintIdealGraphFile, '.'); local
127 if (dot) {
128 st.write(PrintIdealGraphFile, dot - PrintIdealGraphFile);
129 st.print("%d%s", _file_count, dot);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c287 char *dot; local
294 dot = strrchr(old_name, '.');
295 if ( dot != NULL ) {
303 if ( dot[i]==0 ||
304 tolower(format_suffix[i]) != tolower(dot[i]) ) {
310 (void)strcpy(suffix, dot);
311 *dot = 0; /* truncates prefix and old_name */
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp1325 char *dot = strchr(name.release, '.'); local
1327 if (dot != NULL) {
1329 *dot = NULL;
1330 minor = atoi(dot + 1);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java1986 * Moves the caret from mark to dot
1989 int mark, int dot) {
1992 int p0 = Math.min(dot, mark);
1993 int p1 = Math.max(dot, mark);
1988 moveCaretPosition(JTextComponent comp, HTMLEditorKit kit, int mark, int dot) argument
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java3380 // Look for the dot. If we don't find one, the we'll need to add
3403 // Add dot if previously determined to be necessary.
3660 private boolean dot = false; field in class:Formatter.FormatSpecifier.BigDecimalLayout
3668 return dot;
3720 dot = true;
3744 dot = true;
3752 dot = true;
3767 dot = true;
4080 int dot = len;
4083 dot
[all...]

Completed in 97 milliseconds