Searched defs:list (Results 151 - 175 of 323) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxRenderer.java82 public Component getListCellRendererComponent(final JList list, final Object value, int index, final boolean isSelected, final boolean cellHasFocus) { argument
94 // we have a 5000 element list we will 5000 * (selected index) .equals() of objects.
111 setBackground(list.getSelectionBackground());
112 setForeground(list.getSelectionForeground());
119 setBackground(list.getBackground());
120 setForeground(list.getForeground());
124 setFont(list.getFont());
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DUtils.java49 public static <T> List<T> list(final Object...args) { method in class:Utils
50 final ArrayList<Object> list = new ArrayList<Object>(args.length);
51 for (final Object arg : args) list.add(arg);
52 return (List<T>)list;
82 public static String joinWComma(final List<?> list) { return Fp.join(", ", list); } argument
83 public static String joinWComma(final Object[] list) { return Fp.join(", ", Arrays.asList(list)); } argument
131 * then A will come before B in the list.
/openjdk7/hotspot/src/share/vm/runtime/
H A DstatSampler.cpp81 // get copy of the sampled list
146 * the data value for each PerfData instance in the given list.
148 void StatSampler::sample_data(PerfDataList* list) { argument
150 assert(list != NULL, "null list unexpected");
152 for (int index = 0; index < list->length(); index++) {
153 PerfData* item = list->at(index);
175 // // get a new copy of the sampled list
183 assert(_sampled != NULL, "list not initialized");
222 * The list o
[all...]
H A DvmThread.hpp57 // We maintain a doubled linked list, with explicit count.
65 // Double-linked non-empty list insert.
88 void set_drain_list(VM_Operation* list) { _drain_list = list; } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DArrayERProperty.java135 ListT list = acc.get(o);
137 if(list!=null) {
140 w.endNamespaceDecls(list);
144 serializeListBody(o,w,list);
149 // list is null
159 * Serializes the items of the list.
162 * @param list
165 protected abstract void serializeListBody(BeanT o, XMLSerializer w, ListT list) throws IOException, XMLStreamException, SAXException, AccessorException; argument
H A DArrayElementProperty.java117 protected void serializeListBody(BeanT beanT, XMLSerializer w, ListT list) throws IOException, XMLStreamException, SAXException, AccessorException { argument
118 ListIterator<ItemT> itr = lister.iterator(list, w);
235 // when we can't distinguish null and empty list, JAX-WS doesn't want to see
H A DArrayReferenceNodeProperty.java87 protected final void serializeListBody(BeanT o, XMLSerializer w, ListT list) throws IOException, XMLStreamException, SAXException { argument
88 ListIterator<ItemT> itr = lister.iterator(list, w);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentType.java47 private ParameterList list; // parameter list field in class:ContentType
59 * @param list ParameterList
62 ParameterList list) {
65 if (list == null)
66 list = new ParameterList();
67 this.list = list;
102 list = new ParameterList(rem);
106 return new ContentType(primaryType,subType,list
61 ContentType(String primaryType, String subType, ParameterList list) argument
192 setParameterList(ParameterList list) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DWebServiceFeatureList.java57 * Represents a list of {@link WebServiceFeature}s that has bunch of utility methods
82 * Creates a list by reading featuers from the annotation on a class.
89 * Adds the corresponding features to the list for feature annotations(i.e
136 * and adds them to the list.
237 * Adds a feature to the list if it's not already added.
246 * Adds features to the list if it's not already added.
248 public void addAll(@NotNull WSFeatureList list) { argument
249 for (WebServiceFeature f : list)
290 * Set the parent features. Basically the parent feature list will be overriden
291 * by this feature list
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DAssertionSet.java96 private AssertionSet(List<PolicyAssertion> list) { argument
97 assert (list != null) : LocalizationMessages.WSP_0037_PRIVATE_CONSTRUCTOR_DOES_NOT_TAKE_NULL();
98 this.assertions = list;
240 * @return List of all assertions matching the requested name. If no assertions are found, the returned list is empty
/openjdk7/jdk/src/windows/classes/java/io/
H A DWinNTFileSystem.java68 public native String[] list(File f); method in class:WinNTFileSystem
/openjdk7/jdk/test/demo/zipfs/
H A DZipFSTester.java57 List<String> list = new LinkedList<>();
61 list.add(zes.nextElement().getName());
63 for (String pname : list) {
225 list(fs1.getPath("/"), files, dirs);
229 List<String> list = new ArrayList<>(dirs);
230 Collections.shuffle(list);
231 for (String path : list) {
244 List<String> list = new ArrayList<>(dirs);
245 Collections.shuffle(list);
246 for (String path : list) {
354 private static void list(Path path, List<String> files, List<String> dirs ) method in class:ZipFSTester
[all...]
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest7193977.java44 private static final List<String> names = Arrays.asList("listType", "list", "value");
63 private List<T> list; field in class:Test7193977.Abstract
66 return this.list;
69 public void setList(List<T> list) { argument
70 this.list = list;
74 return (0 <= index) && (this.list != null) && (index < this.list.size())
75 ? this.list.get(index)
80 if ((0 <= index) && (this.list !
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DCheckPermissions.java91 static void assertChecked(Path file, List<String> list) { argument
93 for (String f: list) {
110 List<String> list = myChecks.get().writesChecked();
111 for (String f: list) {
662 view.list();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DDeprecatedAPIListBuilder.java33 * Build list of all the deprecated packages, classes, constructors, fields and methods.
74 * Build the sorted list of all the deprecated APIs in this run.
122 * Add the members into a single list of deprecated members.
124 * @param list List of all the particular deprecated members, e.g. methods.
125 * @param members members to be added in the list.
127 private void composeDeprecatedList(List<Doc> list, MemberDoc[] members) { argument
130 list.add(members[i]);
146 * Return the list of deprecated Doc objects of a given type.
148 * @param the constant representing the type of list being returned.
155 * Return true if the list o
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java133 * Return a list of all classes contained in this package, including
162 public void addAllClassesTo(ListBuffer<ClassDocImpl> list) { argument
163 list.appendList(getClasses(true));
/openjdk7/langtools/src/share/classes/javax/tools/
H A DForwardingJavaFileManager.java71 public Iterable<JavaFileObject> list(Location location, method in class:ForwardingJavaFileManager
77 return fileManager.list(location, packageName, kinds, recurse);
H A DJavaFileManager.java167 Iterable<JavaFileObject> list(Location location, method in interface:JavaFileManager
/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTop.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
185 void setThreadList(List<Map.Entry<Long, ThreadInfo>> list) { argument
186 threadList = list;
191 * Get the thread list with CPU consumption and the ThreadInfo
210 // build the thread list and sort it with CPU time
213 List<Map.Entry<Long, ThreadInfo>> list =
215 Collections.reverse(list);
216 return list;
267 // Set table model with the new thread list
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSManagerImpl.java61 private ProviderList list; field in class:GSSManagerImpl
65 list = new ProviderList(caller, useNative);
70 list = new ProviderList(caller, USE_NATIVE);
74 list = new ProviderList(GSSCaller.CALLER_UNKNOWN, USE_NATIVE);
78 return list.getMechs();
83 MechanismFactory factory = list.getMechFactory(mech);
88 Oid[] mechs = list.getMechs();
103 // Is the desired Oid present in that list?
114 // Trim the list if needed
180 list
[all...]
/openjdk7/jdk/src/share/demo/jvmti/agent_util/
H A Dagent_util.c9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
99 /* Determines if a class/method is specified by a list item
144 /* Determines if a class/method is specified by this list
145 * list String of comma separated pattern items
151 covered_by_list(char *list, char *cname, char *mname) argument
156 if ( list[0] == 0 ) {
160 next = get_token(list, ",", token, sizeof(token));
173 * include_list Empty or an explicit list for inclusion
174 * exclude_list Empty or an explicit list fo
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DMain.java58 static boolean list; field in class:Main
78 p.println(" -l list configuration file");
100 if (list) {
131 list = true;
195 die("Error: failed to list config file");
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DDefaultControlTest.java122 private static void checkImmutableList(List<String> list) { argument
124 list.add("hello");
125 error("%s is mutable%n", list);
131 List<String> list = CONTROL.getFormats("foo");
132 if (list != CONTROL.FORMAT_DEFAULT) {
133 error("getFormats returned " + list);
136 list = CONTROL.getFormats(null);
/openjdk7/jdk/test/javax/swing/JList/6462008/
H A Dbug6462008.java27 * @summary Tests that mouse/keyboard work properly on JList with lead < 0 or > list.getModel().getSize()
43 private static JList list; field in class:bug6462008
283 Rectangle r = list.getCellBounds(4, 4);
285 SwingUtilities.convertPointToScreen(p, list);
298 list.getSelectionModel().setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
299 list.getSelectionModel().clearSelection();
310 list.getActionMap().get("scrollDownExtendSelection").
311 actionPerformed(new ActionEvent(list,
322 list.getSelectionModel().setSelectionMode(selectionMode);
333 list
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileLockTable.java66 * @return The list of file locks removed
85 * SharedFileLockTable uses a list of file lock references to avoid keeping the
104 // The map value is a list of file locks represented by FileLockReferences.
105 // All access to the list must be synchronized on the list.
125 List<FileLockReference> list = lockMap.get(fileKey);
130 if (list == null) {
131 list = new ArrayList<FileLockReference>(2);
133 synchronized (list) {
134 prev = lockMap.putIfAbsent(fileKey, list);
165 removeKeyIfEmpty(FileKey fk, List<FileLockReference> list) argument
248 checkList(List<FileLockReference> list, long position, long size) argument
[all...]

Completed in 125 milliseconds

1234567891011>>