Searched refs:history (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DTypeScript.java44 private JTextArea history; field in class:TypeScript
66 history = new JTextArea(0, 0);
67 history.setEditable(false);
68 JScrollPane scroller = new JScrollPane(history);
90 history.setFont(f);
99 history.append(text);
105 history.append(newline);
124 history.append(">>>");
125 history.append(text);
126 history
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpringLayout.java404 List<String> history = horizontal ? horizontalHistory :
406 if (history.contains(name)) {
407 history.remove(name);
409 } else if (history.size() == 2 && value != null) {
410 history.remove(0);
414 history.add(name);
419 if (!history.contains(s)) {
497 private boolean defined(List history, String s1, String s2) { argument
498 return history.contains(s1) && history
1102 applyDefaults(Constraints constraints, String name1, Spring spring1, String name2, Spring spring2, List<String> history) argument
[all...]
/openjdk7/jdk/test/java/util/BitSet/
H A DBSMethods.java178 int[] history = new int[numberOfSetBits];
184 history[x] = nextBitToSet;
191 if (x != history[historyIndex++])
206 int[] history = new int[10];
216 history[x] = nextBitToClear;
223 if (x != history[historyIndex++])
250 HashSet<Integer> history = new HashSet<Integer>();
259 history.add(new Integer(nextBitToSet));
265 if (testSet.get(x) != history.contains(new Integer(x)))
270 Iterator<Integer> setBitIterator = history
[all...]
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java265 StringBuilder history = new StringBuilder();
280 history.append((char)ch);
283 history.substring(hlen-pheadlen, hlen).equals(phead)) {
289 history.substring(hlen-plen, hlen).equals(pattern)) {
291 history = new StringBuilder();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java553 new Command("history", "history", true) {
561 for (int i = 0; i < history.size(); i++) {
563 out.println(history.get(i));
1433 private ArrayList history = new ArrayList(); field in class:CommandProcessor
1558 int size = history.size();
1574 result.append((String)history.get(history.size() - 1));
1576 Tokens item = new Tokens((String)history.get(history
[all...]

Completed in 324 milliseconds