Searched defs:todo (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/javax/swing/JFormattedTextField/
H A DTest6462562.java106 public boolean test(int pos, int selectionLength, String todo, Object expectedResult) { argument
115 String desc = todo;
116 if (todo == BACKSPACE) {
118 } else if (todo == DELETE) {
121 desc = "insert('" + todo + "')";
122 insert.actionPerformed(new ActionEvent(this, 0, todo));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnter.java109 private final Todo todo; field in class:Enter
136 todo = Todo.instance(context);
334 todo.append(topEnv);
H A DMemberEnter.java73 private final Todo todo; field in class:MemberEnter
99 todo = Todo.instance(context);
877 todo.append(env);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsweeper.cpp275 int todo = (CodeCache::nof_nmethods() - _seen) / _invocations; local
284 for (int i = 0; (i < todo || _invocations == 1) && _current != NULL; i++) {
338 event.set_sweptCount(todo);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java164 * Completely process each entry on the todo list in turn.
335 todo = Todo.instance(context);
489 public Todo todo; field in class:JavaCompiler
849 attribute(todo);
853 flow(attribute(todo));
857 generate(desugar(flow(attribute(todo))));
861 Queue<Queue<Env<AttrContext>>> q = todo.groupByFile();
869 while (!todo.isEmpty())
870 generate(desugar(flow(attribute(todo.remove()))));
917 * As a side-effect, this puts elements on the "todo" lis
[all...]

Completed in 211 milliseconds