HomeSort by relevance Sort by last modified time
    Searched refs:hisObj (Results 1 - 3 of 3) 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/
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 287 milliseconds