Searched refs:txt (Results 51 - 75 of 79) sorted by relevance

1234

/openjdk10/jdk/test/sun/security/pkcs11/KeyStore/
H A DSolaris.sh153 -DCUSTOM_P11_CONFIG=${TESTSRC}${FS}BasicData${FS}p11-solaris.txt \
/openjdk10/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A Dgenerate.sh217 if [ ! -f root/index.txt ]; then
218 touch root/index.txt
235 if [ ! -f subca/index.txt ]; then
236 touch subca/index.txt
/openjdk10/test/make/
H A DTestJavaCompilation.gmk277 $(call CreateTextFile,$(JAVA_SRC_ROOT1)/a/b.txt,javaroot1\n)
278 $(call CreateTextFile,$(JAVA_SRC_ROOT2)/a/b.txt,javaroot2\n)
288 COPY := .txt .java, \
302 if [ "`$(CAT) $(OUTPUT_DIR)/root1first/a/b.txt`" != "javaroot1" ]; then \
304 $(ECHO) "Got >`$(CAT) $(OUTPUT_DIR)/root1first/a/b.txt`<"; \
320 COPY := .txt, \
334 if [ "`$(CAT) $(OUTPUT_DIR)/root2first/a/b.txt`" != "javaroot2" ]; then \
336 $(ECHO) "Got >`$(CAT) $(OUTPUT_DIR)/root2first/a/b.txt`<"; \
/openjdk10/jdk/make/
H A DCompileDemos.gmk119 COPY_TO_JAR := .html .txt .properties .js .gif .jpg .theme .data .opt .c .h \
122 COPY_TO_IMAGE := *.html *.txt *.png *.xml README*
/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DspnegoTest11 WWW_URL=http://jsl-bjlab1.jsl.beijing/1.txt
15 PROXY_URL=http://sceri.prc.sun.com/~ww155710/1.txt
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DDefaultCaret.java1351 StringBuilder txt = null;
1356 if (txt == null) {
1357 txt = new StringBuilder();
1359 txt.append(echoChar);
1361 selectedText = (txt != null) ? txt.toString() : null;
H A DJTextComponent.java1750 String txt;
1752 txt = doc.getText(0, doc.getLength());
1754 txt = null;
1756 return txt;
1771 String txt = null;
1777 txt = doc.getText(p0, p1 - p0);
1782 return txt;
3204 String txt = null;
3210 txt = doc.getText(p0, p1 - p0);
3215 return txt;
[all...]
H A DDefaultStyledDocument.java686 char[] txt = s.array;
691 if (txt[i] == '\n') {
1259 * @param txt the text for the element
1263 public ElementSpec(AttributeSet a, short type, char[] txt, argument
1267 this.data = txt == null ? null : Arrays.copyOf(txt, txt.length);
H A DAbstractDocument.java787 * If the partialReturn property on the txt parameter is false, the
811 * @param txt the Segment object to retrieve the text into
815 public void getText(int offset, int length, Segment txt) throws BadLocationException { argument
819 data.getChars(offset, length, txt);
1666 * @param txt the target location to copy into
1670 public void getChars(int where, int len, Segment txt) throws BadLocationException; argument
/openjdk10/make/
H A DRunTests.gmk244 > >($(TEE) $$($1_TEST_RESULTS_DIR)/gtest.txt) || true )
246 $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/gtest.txt
386 $1_RESULT_FILE := $$($1_TEST_RESULTS_DIR)/text/stats.txt
H A DCompileJavaModules.gmk100 java.desktop_COPY += .gif .png .wav .txt .xml .css .pf
431 jdk.jdeps_COPY += .txt
454 jdk.dev_COPY += .js oqlhelp.html .txt
H A DImages.gmk108 JLINK_JLI_CLASSES := --generate-jli-classes=@$(SUPPORT_OUTPUTDIR)/link_opt/default_jli_trace.txt
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXTextFieldPeer.java224 private void setXAWTTextField(String txt) { argument
225 text = txt;
232 xtext.setText(txt);
H A DXTextAreaPeer.java459 private void setTextImpl(String txt) { argument
466 jtext.setText(txt);
475 * insert the text "txt on position "pos" in the array lines
479 public void insert(String txt, int p) { argument
482 jtext.insert(txt,p);
494 * replace the text between the position "s" and "e" with "txt"
498 public void replaceRange(String txt, int s, int e) { argument
505 jtext.replaceRange(txt, s, e);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMParser.java196 String txt = new String(text.ch, i, text.length+text.offset-i);
201 new Object[]{txt},
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthStyle.java773 JTextComponent txt = (JTextComponent)c;
774 Color disabledColor = txt.getDisabledTextColor();
/openjdk10/jdk/src/java.desktop/share/classes/sun/applet/
H A DAppletViewer.java55 TextArea txt = new TextArea(20, 60);
56 txt.setText(text);
57 txt.setEditable(false);
59 add("Center", txt);
/openjdk10/jdk/test/java/text/Bidi/
H A DBidiConformance.java1355 char[] txt = {'A', 'B', 'C', 'D', 'E'};
1356 int textLength = txt.length;
1359 Bidi.requiresBidi(txt, -1, textLength);
1371 Bidi.requiresBidi(txt, textLength, textLength);
1379 Bidi.requiresBidi(txt, textLength+1, textLength);
1387 Bidi.requiresBidi(txt, 0, -1);
1395 Bidi.requiresBidi(txt, 0, textLength+1);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractDOMParser.java1216 int txt = fDeferredDocumentImpl.
1218 fDeferredDocumentImpl.appendChild (fCurrentNodeIndex, txt);
1228 int txt = fDeferredDocumentImpl.
1230 fDeferredDocumentImpl.appendChild (fCurrentNodeIndex, txt);
1272 int txt = fDeferredDocumentImpl.
1274 fDeferredDocumentImpl.appendChild (fCurrentNodeIndex, txt);
/openjdk10/jdk/test/com/sun/jdi/
H A DShellScaffold.sh336 jdbOutFile=$tmpFileDir/jxdbOutput.txt
340 debuggeeOutFile=$tmpFileDir/debuggeeOutput.txt
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJEditorPane.java1448 String txt;
1452 txt = buf.toString();
1454 txt = null;
1456 return txt;
/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DConnectDialog.java314 String txt = remoteTF.getText().trim();
320 if (txt.startsWith(JConsole.ROOT_URL)) {
321 String url = txt;
/openjdk10/jdk/src/java.desktop/share/native/liblcms/
H A Dcmsps2.c360 char* RemoveCR(const char* txt) argument
365 strncpy(Buffer, txt, 2047);
/openjdk10/hotspot/test/compiler/c2/
H A DPolynomialRoot.java423 final String txt)
450 " "+txt);
418 checkValues(final double [] p, final int n, final double rex, final double imx, final double eps, final String txt) argument
/openjdk10/jdk/src/java.base/share/classes/sun/text/bidi/
H A DBidiBase.java3843 char[] txt = new char[len];
3846 txt[i] = ch;
3866 NumericShapings.shape(shaper, txt, 0, len);
3868 setPara(txt, paraLvl, lvls);

Completed in 229 milliseconds

1234