Searched refs:matchObj (Results 1 – 5 of 5) sorted by relevance
60 matchObj = re.match(projectPattern, slnLine) variable61 if matchObj:62 projName = matchObj.group(1)65 allProjects[projName].append((config[0], matchObj.group(2),66 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()