Home
last modified time | relevance | path

Searched refs:hisObj (Results 1 – 3 of 3) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
DSIPObject.java229 Object hisObj = g.get(that); in match() local
230 if (hisObj != null && myObj == null) in match()
232 else if (hisObj == null && myObj != null) in match()
234 else if (hisObj == null && myObj == null) in match()
237 hisObj instanceof java.lang.String in match()
239 if ((((String) hisObj).trim()).equals("")) in match()
242 .compareToIgnoreCase((String) hisObj) in match()
246 hisObj != null in match()
248 && GenericObject.isMySubclass(hisObj.getClass()) in match()
249 && myObj.getClass().equals(hisObj.getClass()) in match()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/address/
DNetObject.java220 Object hisObj = g.get(that); in match() local
221 if (hisObj != null && myObj == null) in match()
223 else if (hisObj == null && myObj != null) in match()
225 else if (hisObj == null && myObj == null) in match()
228 hisObj instanceof java.lang.String in match()
230 if (((String) hisObj).equals("")) in match()
233 .compareToIgnoreCase((String) hisObj) in match()
238 && GenericObject.isMySubclass(hisObj.getClass()) in match()
239 && myObj.getClass().equals(hisObj.getClass()) in match()
240 && ((GenericObject) hisObj).getMatcher() in match()
[all …]
/external/nist-sip/java/gov/nist/core/
DGenericObject.java546 Object hisObj = g.get(that); in match() local
547 if (hisObj != null && myObj == null) in match()
549 else if (hisObj == null && myObj != null) in match()
551 else if (hisObj == null && myObj == null) in match()
554 hisObj instanceof java.lang.String in match()
556 if ((((String) hisObj).trim()).equals("")) in match()
559 .compareToIgnoreCase((String) hisObj) in match()
564 && !((GenericObject) myObj).match(hisObj)) in match()
568 && !((GenericObjectList) myObj).match(hisObj)) in match()