HomeSort by relevance Sort by last modified time
    Searched full:hisobj (Results 1 - 4 of 4) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObject.java 229 Object hisObj = g.get(that);
230 if (hisObj != null && myObj == null)
232 else if (hisObj == null && myObj != null)
234 else if (hisObj == null && myObj == null)
237 hisObj instanceof java.lang.String
239 if ((((String) hisObj).trim()).equals(""))
242 .compareToIgnoreCase((String) hisObj)
246 hisObj != null
248 && GenericObject.isMySubclass(hisObj.getClass())
249 && myObj.getClass().equals(hisObj.getClass()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 224 Object hisObj = g.get(that);
225 if (hisObj != null && myObj == null)
227 else if (hisObj == null && myObj != null)
229 else if (hisObj == null && myObj == null)
232 hisObj instanceof java.lang.String
234 if (((String) hisObj).equals(""))
237 .compareToIgnoreCase((String) hisObj)
242 && GenericObject.isMySubclass(hisObj.getClass())
243 && myObj.getClass().equals(hisObj.getClass())
244 && ((GenericObject) hisObj).getMatcher(
    [all...]
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 413 Object hisobj = hisIterator.next(); local
414 if (myobj.equals(hisobj))
423 Object hisobj = hisIterator.next(); local
428 if (hisobj.equals(myobj))
453 Object hisobj = hisIterator.next(); local
462 && ((GenericObject) myobj).match(hisobj))
465 && ((GenericObjectList) myobj).match(hisobj))
468 System.out.println(((GenericObject) hisobj).encode());
GenericObject.java 546 Object hisObj = g.get(that);
547 if (hisObj != null && myObj == null)
549 else if (hisObj == null && myObj != null)
551 else if (hisObj == null && myObj == null)
554 hisObj instanceof java.lang.String
556 if ((((String) hisObj).trim()).equals(""))
559 .compareToIgnoreCase((String) hisObj)
564 && !((GenericObject) myObj).match(hisObj))
568 && !((GenericObjectList) myObj).match(hisObj))

Completed in 880 milliseconds