Home | History | Annotate | Download | only in x509

Lines Matching refs:email1

1013      * The common part of <code>email1</code> and <code>email2</code> is
1014 * added to the union <code>union</code>. If <code>email1</code> and
1017 * @param email1 Email address constraint 1.
1021 private void unionEmail(String email1, String email2, Set union)
1023 // email1 is a particular address
1024 if (email1.indexOf('@') != -1)
1026 String _sub = email1.substring(email1.indexOf('@') + 1);
1030 if (email1.equalsIgnoreCase(email2))
1032 union.add(email1);
1036 union.add(email1);
1049 union.add(email1);
1062 union.add(email1);
1067 // email1 specifies a domain
1068 else if (email1.startsWith("."))
1072 String _sub = email2.substring(email1.indexOf('@') + 1);
1073 if (withinDomain(_sub, email1))
1075 union.add(email1);
1079 union.add(email1);
1086 if (withinDomain(email1, email2)
1087 || email1.equalsIgnoreCase(email2))
1091 else if (withinDomain(email2, email1))
1093 union.add(email1);
1097 union.add(email1);
1103 if (withinDomain(email2, email1))
1105 union.add(email1);
1109 union.add(email1);
1119 String _sub = email2.substring(email1.indexOf('@') + 1);
1120 if (_sub.equalsIgnoreCase(email1))
1122 union.add(email1);
1126 union.add(email1);
1133 if (withinDomain(email1, email2))
1139 union.add(email1);
1146 if (email1.equalsIgnoreCase(email2))
1148 union.add(email1);
1152 union.add(email1);
1159 private void unionURI(String email1, String email2, Set union)
1161 // email1 is a particular address
1162 if (email1.indexOf('@') != -1)
1164 String _sub = email1.substring(email1.indexOf('@') + 1);
1168 if (email1.equalsIgnoreCase(email2))
1170 union.add(email1);
1174 union.add(email1);
1187 union.add(email1);
1200 union.add(email1);
1205 // email1 specifies a domain
1206 else if (email1.startsWith("."))
1210 String _sub = email2.substring(email1.indexOf('@') + 1);
1211 if (withinDomain(_sub, email1))
1213 union.add(email1);
1217 union.add(email1);
1224 if (withinDomain(email1, email2)
1225 || email1.equalsIgnoreCase(email2))
1229 else if (withinDomain(email2, email1))
1231 union.add(email1);
1235 union.add(email1);
1241 if (withinDomain(email2, email1))
1243 union.add(email1);
1247 union.add(email1);
1257 String _sub = email2.substring(email1.indexOf('@') + 1);
1258 if (_sub.equalsIgnoreCase(email1))
1260 union.add(email1);
1264 union.add(email1);
1271 if (withinDomain(email1, email2))
1277 union.add(email1);
1284 if (email1.equalsIgnoreCase(email2))
1286 union.add(email1);
1290 union.add(email1);
1374 * The most restricting part from <code>email1</code> and
1377 * @param email1 Email address constraint 1.
1381 private void intersectEmail(String email1, String email2, Set intersect)
1383 // email1 is a particular address
1384 if (email1.indexOf('@') != -1)
1386 String _sub = email1.substring(email1.indexOf('@') + 1);
1390 if (email1.equalsIgnoreCase(email2))
1392 intersect.add(email1);
1400 intersect.add(email1);
1408 intersect.add(email1);
1413 else if (email1.startsWith("."))
1417 String _sub = email2.substring(email1.indexOf('@') + 1);
1418 if (withinDomain(_sub, email1))
1426 if (withinDomain(email1, email2)
1427 || email1.equalsIgnoreCase(email2))
1429 intersect.add(email1);
1431 else if (withinDomain(email2, email1))
1438 if (withinDomain(email2, email1))
1444 // email1 specifies a host
1450 if (_sub.equalsIgnoreCase(email1))
1458 if (withinDomain(email1, email2))
1460 intersect.add(email1);
1466 if (email1.equalsIgnoreCase(email2))
1468 intersect.add(email1);
1551 private void intersectURI(String email1, String email2, Set intersect)
1553 // email1 is a particular address
1554 if (email1.indexOf('@') != -1)
1556 String _sub = email1.substring(email1.indexOf('@') + 1);
1560 if (email1.equalsIgnoreCase(email2))
1562 intersect.add(email1);
1570 intersect.add(email1);
1578 intersect.add(email1);
1583 else if (email1.startsWith("."))
1587 String _sub = email2.substring(email1.indexOf('@') + 1);
1588 if (withinDomain(_sub, email1))
1596 if (withinDomain(email1, email2)
1597 || email1.equalsIgnoreCase(email2))
1599 intersect.add(email1);
1601 else if (withinDomain(email2, email1))
1608 if (withinDomain(email2, email1))
1614 // email1 specifies a host
1620 if (_sub.equalsIgnoreCase(email1))
1628 if (withinDomain(email1, email2))
1630 intersect.add(email1);
1636 if (email1.equalsIgnoreCase(email2))
1638 intersect.add(email1);