Searched defs:txt (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleTextSequence.java67 * @param txt the <code>String</code> shared by this text span
71 public AccessibleTextSequence(int start, int end, String txt) { argument
74 text = txt;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DReasonType.java44 ReasonType(String txt) { argument
45 text.add(new TextType(txt));
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTextAreaPeer.java44 public void insert(String txt, int pos) { argument
45 insertText(txt, pos);
49 public void replaceRange(String txt, int start, int end) { argument
50 replaceText(txt, start, end);
81 public native void insertText(String txt, int pos); argument
86 public native void replaceText(String txt, int start, int end); argument
H A DWTextComponentPeer.java46 public native void setText(String txt); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDocument.java349 * If the partialReturn property on the txt parameter is false, the
376 * @param txt the Segment object to return the text in
382 public void getText(int offset, int length, Segment txt) throws BadLocationException; argument
H A DAbstractDocument.java780 * If the partialReturn property on the txt parameter is false, the
804 * @param txt the Segment object to retrieve the text into
808 public void getText(int offset, int length, Segment txt) throws BadLocationException { argument
812 data.getChars(offset, length, txt);
1648 * @param txt the target location to copy into
1652 public void getChars(int where, int len, Segment txt) throws BadLocationException; argument
H A DDefaultStyledDocument.java683 char[] txt = s.array;
688 if (txt[i] == '\n') {
1249 * @param txt the text for the element
1253 public ElementSpec(AttributeSet a, short type, char[] txt, argument
1257 this.data = txt;
/openjdk7/hotspot/test/compiler/8005956/
H A DPolynomialRoot.java414 final String txt)
441 " "+txt);
409 checkValues(final double [] p, final int n, final double rex, final double imx, final double eps, final String txt) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPasswordField.java131 * @param txt the text to be displayed, <code>null</code> if none
137 public JPasswordField(Document doc, String txt, int columns) { argument
138 super(doc, txt, columns);
295 Segment txt = new Segment();
297 doc.getText(0, doc.getLength(), txt); // use the non-String API
301 char[] retValue = new char[txt.count];
302 System.arraycopy(txt.array, txt.offset, retValue, 0, txt.count);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DJConsole.java663 static boolean isValidRemoteString(String txt) { argument
665 if (txt != null) {
666 txt = txt.trim();
667 if (txt.startsWith(ROOT_URL)) {
668 if (txt.length() > ROOT_URL.length()) {
681 if (txt.startsWith("[")) {
682 int index = txt.indexOf("]:");
686 String address = txt.substring(1, index);
691 String portStr = txt
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextFieldPeer.java78 TextField txt = (TextField) target;
80 setText(txt.getText());
81 if (txt.echoCharIsSet()) {
82 setEchoChar(txt.getEchoChar());
86 start = txt.getSelectionStart();
87 end = txt.getSelectionEnd();
99 setEditable(txt.isEditable());
217 public void setText(String txt) { argument
218 setXAWTTextField(txt);
222 protected boolean setXAWTTextField(String txt) { argument
[all...]
H A DXTextAreaPeer.java462 public void setText(String txt) { argument
463 setTextImpl(txt);
467 protected boolean setTextImpl(String txt) { argument
474 jtext.setText(txt);
484 * insert the text "txt on position "pos" in the array lines
487 public void insert(String txt, int p) { argument
490 jtext.insert(txt,p);
502 * replace the text between the position "s" and "e" with "txt"
505 public void replaceRange(String txt, int s, int e) { argument
512 jtext.replaceRange(txt,
538 insertText(String txt, int pos) argument
546 replaceText(String txt, int start, int end) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h250 Widget txt; member in struct:TextAreaData
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsps2.c360 char* RemoveCR(const char* txt) argument
365 strncpy(Buffer, txt, 2047);

Completed in 2359 milliseconds