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 220 Object hisObj = g.get(that);
221 if (hisObj != null && myObj == null)
223 else if (hisObj == null && myObj != null)
225 else if (hisObj == null && myObj == null)
228 hisObj instanceof java.lang.String
230 if (((String) hisObj).equals(""))
233 .compareToIgnoreCase((String) hisObj)
238 && GenericObject.isMySubclass(hisObj.getClass())
239 && myObj.getClass().equals(hisObj.getClass())
240 && ((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 79 milliseconds