Searched defs:tab (Results 51 - 60 of 60) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java68 ConstantPool tab = new ConstantPool(); field in class:SourceClass
231 if (tab != null) {
232 tab.put(c);
2167 tab.put("Code");
2170 tab.put("ConstantValue");
2176 tab.put("SourceFile");
2177 tab.put(sourceFile);
2182 tab.put("Exceptions");
2186 tab.put("LineNumberTable");
2189 tab
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmp_gf2m.c59 mp_digit tab[8], top2b = a >> 30; local
64 tab[0] = 0; tab[1] = a1; tab[2] = a2; tab[3] = a1^a2;
65 tab[4] = a4; tab[5] = a1^a4; tab[6] = a2^a4; tab[7] = a1^a2^a4;
67 s = tab[
91 mp_digit tab[16], top3b = a >> 61; local
[all...]
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c113 char *cp, **tab; local
123 tab = (char **)malloc(cnt * sizeof(char *));
128 tab[cnt++] = cp;
137 js = (*env)->NewStringUTF(env, tab[cnt]);
140 free(tab);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java242 private static void writeKtab0(String tab, boolean append, KDC... kdcs) argument
244 KeyTab ktab = append ? KeyTab.getInstance(tab) : KeyTab.create(tab);
282 * @param tab The keytab filename to write to.
287 public static void writeMultiKtab(String tab, KDC... kdcs) argument
289 writeKtab0(tab, false, kdcs);
296 public static void appendMultiKtab(String tab, KDC... kdcs) argument
298 writeKtab0(tab, true, kdcs);
304 public void writeKtab(String tab) throws IOException, KrbException { argument
305 KDC.writeMultiKtab(tab, thi
311 appendKtab(String tab) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java2289 String[][] tab; field in class:JEditorPane.HeaderParser
2293 tab = new String[10][2];
2309 tab[i][0] = new String(ca, beg, end-beg).toLowerCase();
2315 tab[i++][1]= new String(ca, beg, end-beg);
2332 tab[i++][0] = (new String(ca, beg, end-beg)).toLowerCase();
2334 tab[i++][1] = (new String(ca, beg, end-beg));
2349 tab[i++][1] = (new String(ca, beg, end-beg));
2351 tab[i++][1] = (new String(ca, beg, end-beg+1));
2354 tab[i][0] = (new String(ca, beg, end-beg+1)).toLowerCase();
2359 tab[
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneUI.java43 private static final int kSmallTabHeight = 20; // height of a small tab
44 private static final int kLargeTabHeight = 23; // height of a large tab
166 // paint the selected tab last.
183 // for each visible tab, except the selected one
519 * This routine adjusts the background fill rect so it just fits inside a tab, allowing for
520 * whether we're talking about a first tab or last tab. NOTE that this code is very much
705 * Returns the tab index which intersects the specified point
762 // Repaint the "front" tab and the border
926 void repaint(final JTabbedPane pane, final int tab) { argument
[all...]
H A DAquaTabbedPaneCopyFromBasicUI.java169 * Index of the tab the mouse is over.
174 * This is set to true when a component is added/removed from the tab
538 * Sets the tab the mouse is over by location. This is a cover method
550 * Sets the tab the mouse is currently over to <code>index</code>.
552 * tab. No checking is done to ensure the passed in index identifies a
553 * valid tab.
555 * @param index Index of the tab the mouse is over.
563 * Returns the tab the mouse is currently over, or {@code -1} if the mouse is no
564 * longer over any tab.
566 * @return the tab th
646 getBaseline(final int tab) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java602 String tab = rb.getString("6SPACE");
649 String si = signerInfo(signer, tab);
659 sb.append("\n" + tab + rb.getString(
662 sb.append("\n" + tab + rb.getString(
832 * [<tab>] <cert-type> [", " <subject-DN>] [" (" <keystore-entry-alias> ")"]
837 String printCert(String tab, Certificate c, boolean checkValidityPeriod, argument
846 certStr.append(tab).append(x509Cert.getType())
850 certStr.append(tab).append(c.getType());
860 certStr.append("\n").append(tab).append("[");
926 certStr.append("\n").append(tab)
937 printTimestamp(String tab, Timestamp timestamp) argument
1484 signerInfo(CodeSigner signer, String tab) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java168 private final String tab; field in class:HTMLGenerator
180 tab = "&nbsp;&nbsp;&nbsp;&nbsp;";
183 tab = " ";
977 buf.append(tab);
1037 tabs.append(tab + tab + tab); // Initial indent for debug info
1044 tabs.append(tab + tab + tab); // Initia
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java177 * Index of the tab the mouse is over.
182 * This is set to true when a component is added/removed from the tab
567 * Sets the tab the mouse is over by location. This is a cover method
579 * Sets the tab the mouse is currently over to <code>index</code>.
581 * tab. No checking is done to ensure the passed in index identifies a
582 * valid tab.
584 * @param index Index of the tab the mouse is over.
592 * Returns the tab the mouse is currently over, or {@code -1} if the mouse is no
593 * longer over any tab.
595 * @return the tab th
677 getBaseline(int tab) argument
[all...]

Completed in 636 milliseconds

123