Searched refs:temp (Results 1 - 25 of 427) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/sun/applet/resources/
H A DMsgAppletViewer_de.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_ja.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_ko.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_zh_CN.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_fr.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_zh_TW.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_sv.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_pt_BR.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_es.java32 Object[][] temp = new Object[][] {
201 return temp;
H A DMsgAppletViewer_it.java32 Object[][] temp = new Object[][] {
201 return temp;
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty/
H A DTTYResources_ja.java58 Object[][] temp = new Object[][] {
333 return temp;
H A DTTYResources_zh_CN.java58 Object[][] temp = new Object[][] {
333 return temp;
H A DTTYResources.java58 Object[][] temp = new Object[][] {
462 return temp;
/openjdk10/nashorn/samples/
H A Dweather.js57 var temp = weather.list.map(function(curVal) { variable
58 return curVal.temp.max;
63 print(Arrays["stream(double[])"](temp).summaryStatistics());
/openjdk10/jdk/test/java/net/URLEncoder/
H A DDecodeNonEncoded.java57 String temp;
59 temp = URLDecoder.decode(ignoreStrings[i]);
60 if (!temp.equals(ignoreStrings[i]))
62 + "\" was converted to " + temp
65 System.out.println("String \"" + temp
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/
H A DETypeInfo.java123 DerOutputStream temp = new DerOutputStream();
125 temp.putInteger(etype);
127 TAG_TYPE), temp);
130 temp = new DerOutputStream();
132 temp.putOctetString(salt.getBytes("UTF8"));
134 temp.putOctetString(salt.getBytes());
137 TAG_VALUE), temp);
140 temp = new DerOutputStream();
141 temp.write(DerValue.tag_Sequence, bytes);
142 return temp
[all...]
H A DMethodData.java97 DerOutputStream temp = new DerOutputStream();
98 temp.putInteger(BigInteger.valueOf(methodType));
99 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
101 temp = new DerOutputStream();
102 temp.putOctetString(methodData);
103 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
106 temp = new DerOutputStream();
107 temp.write(DerValue.tag_Sequence, bytes);
108 return temp.toByteArray();
H A DTransitedEncoding.java101 DerOutputStream temp = new DerOutputStream();
102 temp.putInteger(BigInteger.valueOf(trType));
103 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
104 temp = new DerOutputStream();
105 temp.putOctetString(contents);
106 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
107 temp = new DerOutputStream();
108 temp.write(DerValue.tag_Sequence, bytes);
109 return temp.toByteArray();
H A DETypeInfo2.java131 DerOutputStream temp = new DerOutputStream();
133 temp.putInteger(etype);
135 TAG_TYPE), temp);
138 temp = new DerOutputStream();
139 temp.putDerValue(new KerberosString(saltStr).toDerValue());
141 TAG_VALUE1), temp);
144 temp = new DerOutputStream();
145 temp.putOctetString(s2kparams);
147 TAG_VALUE2), temp);
150 temp
[all...]
H A DLastReqEntry.java81 DerOutputStream temp = new DerOutputStream();
82 temp.putInteger(lrType);
83 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
85 temp = new DerOutputStream();
86 temp.write(DerValue.tag_Sequence, bytes);
87 return temp.toByteArray();
H A DKRBPriv.java127 DerOutputStream temp, bytes;
128 temp = new DerOutputStream();
129 temp.putInteger(BigInteger.valueOf(pvno));
131 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
132 temp = new DerOutputStream();
133 temp.putInteger(BigInteger.valueOf(msgType));
134 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), temp);
136 temp = new DerOutputStream();
137 temp.write(DerValue.tag_Sequence, bytes);
139 bytes.write(DerValue.createTag(DerValue.TAG_APPLICATION, true, (byte)0x15), temp);
[all...]
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/rcache/
H A DAuthList.java76 AuthTimeWithHash temp = entries.getFirst();
77 int cmp = temp.compareTo(t);
89 temp = it.next();
90 cmp = temp.compareTo(t);
93 entries.add(entries.indexOf(temp), t);
110 AuthTimeWithHash temp = null;
114 temp = it.next();
115 if (temp.ctime < timeLimit) {
116 index = entries.indexOf(temp);
/openjdk10/jdk/src/demo/share/applets/BarChart/
H A DBarChart.java98 String temp = getParameter("columns");
99 if (temp == null) {
102 columns = Integer.parseInt(temp);
105 temp = getParameter("scale");
106 if (temp == null) {
109 scale = Integer.parseInt(temp);
112 temp = getParameter("orientation");
113 if (temp == null) {
115 } else if (temp.equalsIgnoreCase("horizontal")) {
123 String temp
[all...]
/openjdk10/langtools/test/tools/javac/lambda/8023558/
H A DT8023558c.java37 SAM temp = sam.get()::get;

Completed in 116 milliseconds

1234567891011>>