Searched refs:lists (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/util/Collections/
H A DDisjoint.java37 // Make an array of lists each of which shares a single element
38 // with its "neighbors," and no elements with other lists in the array
40 List[] lists = new List[N];
50 lists[i] = list;
56 List<Integer> a = (List<Integer>) lists[i];
57 List<Integer> b = (List<Integer>) lists[j];
/openjdk7/jdk/test/java/util/List/
H A DLockStep.java55 void equalLists(List... lists) { argument
56 for (List list : lists)
57 equalLists(list, lists[0]);
70 void lockSteps(List... lists) { argument
71 for (int i = 0; i < lists.length; i++)
72 if (maybe(4)) lists[i] = serialClone(lists[i]);
73 for (final List list : lists)
77 for (final List list : lists) {
81 equalLists(lists);
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp248 static MethodMatcher* lists[OracleCommandCount] = { 0, }; variable
252 return ((lists[command] != NULL) &&
254 lists[command]->match(method));
263 if (command == LogCommand && !LogCompilation && lists[LogCommand] == NULL)
265 lists[command] = new MethodMatcher(class_name, c_mode, method_name, m_mode, signature, lists[command]);
266 return lists[command];
275 lists[OptionCommand] = new MethodOptionMatcher(class_name, c_mode, method_name, m_mode,
276 signature, option, lists[OptionCommand]);
277 return lists[OptionComman
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalClusterLayoutManager.java72 HashMap<Cluster, List<Vertex>> lists = new HashMap<Cluster, List<Vertex>>();
90 lists.put(c, new ArrayList<Vertex>());
/openjdk7/hotspot/src/share/vm/memory/
H A DreferenceProcessor.hpp213 size_t total_count(DiscoveredList lists[]);
260 // The discovered ref lists themselves
270 // Arrays of lists of oops, one per thread (pointers into master array above)
348 // "Preclean" all the discovered reference lists
354 // interference with concurrent operations on these lists
365 // Delete entries in the discovered lists that have
506 // Balance each of the discovered lists.
524 // the discovered lists will be empty, and all the objects on them will
532 // clear the discovered lists (unlinking each entry).
H A DreferenceProcessor.cpp75 // Verify that the discovered lists are empty
185 size_t ReferenceProcessor::total_count(DiscoveredList lists[]) { argument
188 total += lists[i].length();
439 // is because of the "clever" way the discovered references lists were
721 // loop over the lists
981 // loop over the lists
1036 // fashion to each of the lists.
1097 // We have separate lists for enqueueing, so no synchronization
1287 // are not active. These lists can be handled here
1362 // thus precleaning the ref lists (whic
[all...]
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DREADME29 Here lists the local generated certificates and CRLs used in the test cases.
/openjdk7/jdk/test/java/security/cert/CertPathValidator/indirectCRL/
H A DREADME26 Here lists the Certificates and CRLs, which was generated by generate.sh,
/openjdk7/langtools/test/tools/javac/util/list/
H A DTList.java449 // verify results, and that original and arg lists are unchanged
542 static <T> java.util.List<T> join(java.util.List<T>... lists) { argument
544 for (java.util.List<T> l: lists)
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DREADME26 Here lists the Certificates, which was generated by generate.sh, used in the
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java2958 ArrayList<MethodHandle> lists = new ArrayList<>();
2961 int nargs = lists.size();
2971 lists.add(list);
2973 assertTrue(lists.size() == 11); // current number of methods
2974 return lists.toArray(new MethodHandle[0]);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp368 HeapRegion* lists[] = {_head, _survivor_head}; local
371 for (unsigned int list = 0; list < ARRAY_SIZE(lists); ++list) {
373 HeapRegion *curr = lists[list];
1349 // Disable discovery and empty the discovered lists
1404 // not been removed from the discovered lists.
1887 // Instead of tearing down / rebuilding the free lists here, we
2250 // discovered lists.
2285 // lists requires a barrier.
2305 // lists requires a barrier.
4242 // * Allowing humongous PLABs needlessly churns the region free lists
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dgl.h952 const GLvoid *lists );

Completed in 245 milliseconds