Searched defs:lst (Results 1 - 6 of 6) sorted by relevance

/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/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);
/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 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
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 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...]

Completed in 79 milliseconds