Searched refs:lst (Results 1 - 19 of 19) sorted by relevance

/openjdk7/langtools/make/test/lib/
H A Dclasses.sh39 ${TESTJAREXE} -tf ${TOPDIR}/dist/lib/classes.jar | grep -v '/$' > files.lst
40 egrep 'Main\.class$|resources' files.lst > expect1.lst
41 grep -v '.class$' files.lst > expect2.lst
43 LANG=C sort -u expect1.lst expect2.lst > expect.lst
45 if diff ${TESTSRC}/classes.gold.txt expect.lst ; then
H A Dsrc.sh39 unzip -l ${TOPDIR}/dist/lib/src.zip | awk '{print $4}' | egrep -v '^$|/$|^Name$|-' > files.lst
40 egrep 'Main\.java$|resources' files.lst > expect1.lst
41 grep -v '.java$' files.lst > expect2.lst
43 LANG=C sort -u expect1.lst expect2.lst > expect.lst
45 if diff ${TESTSRC}/src.gold.txt expect.lst ; then
/openjdk7/jdk/test/java/util/Collections/
H A DReplaceAll.java39 List lst = a[i];
41 lst.add(new Integer(j % 3));
45 List before = new ArrayList(lst);
46 if (!Collections.replaceAll(lst, new Integer(j), "*"))
48 if (lst.equals(before))
49 throw new Exception("Unchanged: "+i+", "+j+", "+": "+lst);
50 if (lst.equals(goal) != (j==2))
53 if (Collections.replaceAll(lst, "love", "hate"))
H A DRotate.java42 List lst = a[i];
44 lst.add(new Integer(j));
49 Collections.rotate(lst, dist);
57 if (((Integer)lst.get(k)).intValue() != index)
58 throw new Exception("j: "+j+", lst["+k+"]="+lst.get(k)+
61 if (((Integer)lst.get(k)).intValue() != index)
62 throw new Exception("j: "+j+", lst["+k+"]="+lst.get(k)+
/openjdk7/langtools/test/tools/javac/generics/
H A DParenVerify.java46 LinkedList<Integer> lst = new LinkedList<Integer>();
47 lst.add(new Integer(12));
48 m.put("Hello", lst);
53 lst = (m.get("Hello"));
54 return lst.iterator();
/openjdk7/jdk/test/java/net/CookieHandler/
H A DB6644726.java45 ArrayList<String> lst = new ArrayList<String>();
47 lst.add("myCookie1=foo");
49 lst.add("myCookie2=bar; path=/dir; expires=Tue, 19 Aug 2025 16:00:00 GMT");
50 lst.add("myCookie3=test; path=/dir; expires=Tue Aug 19 2025 16:00:00 GMT-0100");
52 lst.add("myCookie4=test; domain=.sun.com; path=/dir/foo");
54 map.put("Set-Cookie", lst);
57 lst.clear();
59 lst.add("myCookie5=test; secure");
61 map.put("Set-Cookie", lst);
110 lst
197 isIn(List<String> lst, String cookie) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DBinaryPattern.java107 List lst = new ArrayList();
108 fillChildren(lst);
109 return (Pattern[]) lst.toArray(new Pattern[lst.size()]);
/openjdk7/jdk/src/share/classes/java/net/
H A DCookieManager.java364 static private boolean isInPortList(String lst, int port) { argument
365 int i = lst.indexOf(",");
369 val = Integer.parseInt(lst.substring(0, i));
375 lst = lst.substring(i+1);
376 i = lst.indexOf(",");
378 if (!lst.isEmpty()) {
380 val = Integer.parseInt(lst);
H A DInMemoryCookieStore.java284 List<HttpCookie> lst = entry.getValue();
285 for (HttpCookie c : lst) {
309 lst.remove(c);
H A DNetworkInterface.java163 java.util.List<InterfaceAddress> lst = new java.util.ArrayList<InterfaceAddress>(1);
170 lst.add(bindings[j]);
173 return lst;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DComponentImpl.java115 List<ForeignAttributesImpl> lst = new ArrayList<ForeignAttributesImpl>();
117 lst.add(fa);
120 return Collections.unmodifiableList(lst);
/openjdk7/make/scripts/
H A Dwebrev.ksh2705 $JAR -tvf $ofile >"$ofile".lst
2708 $JAR -tvf $nfile >"$nfile".lst
2713 ${CDIFFCMD:-diff -bt -C 5} $ofile.lst $nfile.lst > $WDIR/$DIR/$F.cdiff
2718 ${UDIFFCMD:-diff -bt -U 5} $ofile.lst $nfile.lst > $WDIR/$DIR/$F.udiff
2726 -t "$WNAME Wdiff $DIR/$F" $ofile.lst $nfile.lst > \
2743 difflines $ofile.lst $nfile.lst >
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp426 ChainList *lst = (ChainList *)_chainRules[src]; local
427 if (lst == NULL) {
428 lst = new ChainList();
429 _chainRules.Insert(src, lst);
431 if (!lst->search(result)) {
435 lst->insert(result, cost, result);
H A Dadlparse.cpp332 ChainList *lst = (ChainList *)_AD._chainRules[optype]; local
333 if (lst == NULL) {
334 lst = new ChainList();
335 _AD._chainRules.Insert(optype, lst);
337 if (!lst->search(instr->_matrule->_lChild->_opType)) {
345 lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
349 lst = (ChainList *)_AD._chainRules[result];
350 if (lst == NULL) {
351 lst = new ChainList();
352 _AD._chainRules.Insert(result, lst);
375 ChainList *lst = (ChainList *)_AD._chainRules[chain_op]; local
[all...]
H A Ddfa.cpp322 ChainList *lst = (ChainList *)_chainRules[operand]; local
323 if (lst) {
326 for(lst->reset(); (lst->iter(result,cost,rule)) == true; ) {
H A Doutput_h.cpp280 ComponentList &lst, bool is_ideal_bool,
293 lst.reset();
294 if ((comp = lst.iter()) == NULL) {
312 lst.reset();
313 while((comp = lst.iter()) != NULL) {
279 defineConstructor(FILE *fp, const char *name, uint num_consts, ComponentList &lst, bool is_ideal_bool, Form::DataType constant_type, FormDict &globals) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicPopupMenuUI.java293 ArrayList<MenuElement> lst = new ArrayList<MenuElement>(Arrays.asList(e.getPath()));
294 lst.add(menuToOpen);
295 lst.add(subpopup);
297 lst.add(subitem);
300 newPath = lst.toArray(newPath);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java519 NodeList lst = decl.getChildNodes();
520 for( int i=0; i<lst.getLength(); i++ ) {
521 Node n = lst.item(i);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DXmlSchemaGenerator.java1041 List lst = e.simpleType().list();
1042 writeTypeRef(lst,t, "itemType");

Completed in 83 milliseconds