Searched defs:list (Results 101 - 125 of 323) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DCompile.java40 // -f46082.51<daz> Transferred makefile list generation (for ODE delta-builds,
229 // the emit list with emit=true for eventual generation.
352 // or IncludeEntry, add it to the imports list. If there are
374 // If the -package argument was used, search the packages list
428 public Hashtable list = new Hashtable (); field in class:Compile
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DStackTracePanel.java67 private JComboBox list; field in class:StackTracePanel
78 list = new JComboBox(model);
79 list.setPrototypeDisplayValue("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
80 add(list, BorderLayout.CENTER);
83 list.addItemListener(new ItemListener() {
96 list.setSelectedIndex(0);
109 StackTraceEntry entry = (StackTraceEntry) trace.get(list.getSelectedIndex());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DInterfaceTypeImpl.java115 ArrayList list = new ArrayList(methods());
124 list.addAll(interfaze.methods());
127 return list;
131 ArrayList list = new ArrayList();
132 addSuperinterfaces(list);
133 return list;
136 void addSuperinterfaces(List list) { argument
139 * builds the list with a more suitable order than the
146 * Get a list of direct superinterfaces that's not already in the
147 * list bein
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackValueCollection.java32 private List list; field in class:StackValueCollection
34 public StackValueCollection() { list = new ArrayList(); }
35 public StackValueCollection(int length) { list = new ArrayList(length); }
37 public void add(StackValue val) { list.add(val); }
38 public int size() { return list.size(); }
40 public StackValue get(int i) { return (StackValue) list.get(i); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DInspector.java59 private LivenessPathList list = null; field in class:Inspector
147 list = null;
174 list = null;
244 list = null;
256 list = null;
315 list = LivenessAnalysis.computeAllLivenessPaths(currentOop);
316 if (list == null) {
349 if (list == null) {
355 listener.showLiveness(currentOop, list);
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DTerminalFactory.java155 public List<CardTerminal> list(State state) throws CardException { method in class:TerminalFactory.NoneCardTerminals
219 * <p> This method traverses the list of registered security Providers,
225 * <p> Note that the list of registered providers may be retrieved via
256 * in the security provider list.
258 * <p> Note that the list of registered providers may be retrieved via
295 * registered in the provider list.
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleList.java34 * A RoleList represents a list of roles (Role objects). It is used as
92 * @param list the {@code List} that defines the initial contents of
95 * @exception IllegalArgumentException if the {@code list} parameter
96 * is {@code null} or if the {@code list} parameter contains any
101 public RoleList(List<Role> list) throws IllegalArgumentException { argument
104 if (list == null)
109 checkTypeSafe(list);
113 super.addAll(list);
117 * Return a view of this list as a {@code List<Role>}.
152 * Adds the Role specified as the last element of the list
[all...]
H A DRoleResult.java125 * @param list list of roles successfully accessed.
126 * @param unresolvedList list of roles not accessed (with problem
129 public RoleResult(RoleList list, argument
132 setRoles(list);
142 * Retrieves list of roles successfully accessed.
153 * Retrieves list of roles unsuccessfully accessed.
164 * Sets list of roles successfully accessed.
166 * @param list list o
170 setRoles(RoleList list) argument
[all...]
H A DRoleUnresolvedList.java34 * A RoleUnresolvedList represents a list of RoleUnresolved objects,
91 * @param list the {@code List} that defines the initial contents of
94 * @exception IllegalArgumentException if the {@code list} parameter
95 * is {@code null} or if the {@code list} parameter contains any
100 public RoleUnresolvedList(List<RoleUnresolved> list) argument
104 if (list == null)
109 checkTypeSafe(list);
113 super.addAll(list);
117 * Return a view of this list as a {@code List<RoleUnresolved>}.
152 * Adds the RoleUnresolved specified as the last element of the list
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.cpp99 FreeRegionList* list) {
133 list->add_as_tail(hr);
97 expand_by(HeapWord* old_end, HeapWord* new_end, FreeRegionList* list) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DClassLoaderRepositorySupport.java44 * This class keeps the list of Class Loaders registered in the MBean Server.
85 * Replace the loader list with a new one in which the new
98 * Replace the loader list with a new one in which the old loader
193 private Class<?> loadClass(final LoaderEntry list[], argument
199 final int size = list.length;
202 final ClassLoader cl = list[i].loader;
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/
H A DVirtualMachine.java53 * from the list of virtual machine descriptors returned by the {@link #list list} method.
133 * Return a list of Java virtual machines.
135 * <p> This method returns a list of Java {@link
137 * The list is an aggregation of the virtual machine
143 * then an empty list is returned.
145 * @return The list of virtual machine descriptors.
147 public static List<VirtualMachineDescriptor> list() { method in class:VirtualMachine
160 * <p> This method obtains the list o
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorTool.java51 private JList list; field in class:MonitorTool
58 list = new JList(env.getMonitorListModel());
59 list.setCellRenderer(new MonitorRenderer());
61 JScrollPane listView = new JScrollPane(list);
66 list.addListSelectionListener(listener);
73 int index = list.getSelectedIndex();
103 public Component getListCellRendererComponent(JList list, argument
114 super.getListCellRendererComponent(list, value, index,
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DInterfaceTypeImpl.java98 ArrayList<Method> list = new ArrayList<Method>(methods());
105 list.addAll(interfaze.methods());
108 return list;
112 ArrayList<InterfaceType> list = new ArrayList<InterfaceType>();
113 addSuperinterfaces(list);
114 return list;
117 void addSuperinterfaces(List<InterfaceType> list) { argument
120 * builds the list with a more suitable order than the
127 * Get a list of direct superinterfaces that's not already in the
128 * list bein
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxButton.java38 final protected JList list; field in class:AquaComboBoxButton
46 protected AquaComboBoxButton(final AquaComboBoxUI ui, final JComboBox comboBox, final CellRendererPane rendererPane, final JList list) { argument
53 this.list = list;
167 final Component c = renderer.getListCellRendererComponent(list, comboBox.getSelectedItem(), -1, false, false);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DNameBuilder.java126 list(uriIndexMap),
128 list(localNameIndexMap),
137 private String[] list(Map<String, Integer> map) { method in class:NameBuilder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentDisposition.java47 private ParameterList list; // parameter list field in class:ContentDisposition
58 * @param list ParameterList
61 public ContentDisposition(String disposition, ParameterList list) { argument
63 this.list = list;
88 list = new ParameterList(rem);
107 if (list == null)
110 return list.get(name);
121 return list;
153 setParameterList(ParameterList list) argument
[all...]
H A DParameterList.java47 private final HashMap list; field in class:ParameterList
53 this.list = new HashMap();
57 this.list = m;
61 * Constructor that takes a parameter-list string. The String
64 * Note that an empty parameter-list string is valid and will be
67 * @param s the parameter-list string.
76 list = new HashMap();
108 list.put(name, tk.getValue());
115 * Return the number of parameters in this list.
120 return list
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSolarisEventPort.c115 port_event_t* list = (port_event_t*)jlong_to_ptr(arrayAddress); local
127 res = port_getn((int)port, list, (uint_t)max, &n, tsp);
/openjdk7/jdk/test/com/sun/jdi/
H A DCompatibleConnectors.java232 // compare the actual list of Connectors against the
233 // expected list of Connectors.
234 static void compare(Object[][] prev, List list) { argument
252 Connector c = find(name, list);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6921644.java74 private List<T> list = new ArrayList<T>(); field in class:Test6921644.Owner
86 return this.list;
89 public void setList(List<T> list) { argument
90 this.list = list;
98 private List<Document> list = new ArrayList<Document>(); field in class:Test6921644.Author
127 return this.list;
130 public void setList(List<Document> list) { argument
131 this.list = list;
142 private List<Document> list = new ArrayList<Document>(); field in class:Test6921644.Category
157 setList(List<Document> list) argument
[all...]
/openjdk7/jdk/test/java/net/HttpURLConnection/
H A DUnmodifiableMaps.java119 void checkUnmodifiableList(final List<String> list) { argument
121 public void run() { list.clear(); }});
123 public void run() { list.add("X"); }});
125 public void run() { list.remove("X"); }});
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractTreeWriter.java97 * @param parent the superclass or superinterface of the list
98 * @param list list of the sub-classes at this level
102 protected void addLevelInfo(ClassDoc parent, List<ClassDoc> list, argument
104 int size = list.size();
108 ClassDoc local = list.get(i);
125 * @param list List of classes which are at the most base level, all the
130 protected void addTree(List<ClassDoc> list, String heading, Content div) { argument
131 if (list.size() > 0) {
132 ClassDoc firstClassDoc = list
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DWrappingJavaFileManager.java110 * This implementation maps the given list of file objects by
113 * @param fileObjects a list of file objects
136 public Iterable<JavaFileObject> list(Location location, method in class:WrappingJavaFileManager
142 return wrap(super.list(location, packageName, kinds, recurse));
/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DProviders.java34 * Collection of methods to get and set provider list. Also includes
35 * special code for the provider list during JAR verification.
49 // current system-wide provider list
54 // set providerList to empty list first in case initialization somehow
113 * Start JAR verification. This sets a special provider list for
121 // return the old thread-local provider list, usually null
129 // restore old thread-local provider list
134 * Return the current ProviderList. If the thread-local list is set,
135 * it is returned. Otherwise, the system wide list is returned.
138 ProviderList list
188 setSystemProviderList(ProviderList list) argument
204 changeThreadProviderList(ProviderList list) argument
224 beginThreadProviderList(ProviderList list) argument
234 endThreadProviderList(ProviderList list) argument
[all...]

Completed in 64 milliseconds

1234567891011>>