Searched refs:matchObj (Results 1 – 6 of 6) sorted by relevance
61 matchObj = re.match(projectPattern, slnLine) variable62 if matchObj:63 projPath = matchObj.group(2)70 matchObj.group(3)))
504 public boolean match(Object matchObj) { in match() argument505 if (matchObj == null) in match()507 else if (!matchObj.getClass().equals(this.getClass())) { in match()509 } else if (matchObj == this) in match()511 SIPResponse that = (SIPResponse) matchObj; in match()517 return super.match(matchObj); in match()520 return statusLine.match(that.statusLine) && super.match(matchObj); in match()
528 public boolean match(Object matchObj) { in match() argument529 if (matchObj == null) in match()531 else if (!matchObj.getClass().equals(this.getClass())) in match()533 else if (matchObj == this) in match()535 SIPRequest that = (SIPRequest) matchObj; in match()540 return super.match(matchObj); in match()541 return requestLine.match(that.requestLine) && super.match(matchObj); in match()
276 SIPMessage matchObj = (SIPMessage) other; in match()277 Iterator<SIPHeader> li = matchObj.getHeaders(); in match()
68 public boolean match(Object matchObj) { in match() argument69 if (!(matchObj instanceof StatusLine)) in match()71 StatusLine sl = (StatusLine) matchObj; in match()