OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchObj
(Results
1 - 6
of
6
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java
68
public boolean match(Object
matchObj
) {
69
if (!(
matchObj
instanceof StatusLine))
71
StatusLine sl = (StatusLine)
matchObj
;
/external/skia/gn/
gn_meta_sln.py
61
matchObj
= re.match(projectPattern, slnLine)
62
if
matchObj
:
63
projPath =
matchObj
.group(2)
70
matchObj
.group(3)))
/external/skqp/gn/
gn_meta_sln.py
61
matchObj
= re.match(projectPattern, slnLine)
62
if
matchObj
:
63
projPath =
matchObj
.group(2)
70
matchObj
.group(3)))
/external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java
501
*@param
matchObj
template object to match ourselves with (null
504
public boolean match(Object
matchObj
) {
505
if (
matchObj
== null)
507
else if (!
matchObj
.getClass().equals(this.getClass())) {
509
} else if (
matchObj
== this)
511
SIPResponse that = (SIPResponse)
matchObj
;
517
return super.match(
matchObj
);
520
return statusLine.match(that.statusLine) && super.match(
matchObj
);
SIPRequest.java
525
* @param
matchObj
object to match ourselves with (null matches wildcard)
528
public boolean match(Object
matchObj
) {
529
if (
matchObj
== null)
531
else if (!
matchObj
.getClass().equals(this.getClass()))
533
else if (
matchObj
== this)
535
SIPRequest that = (SIPRequest)
matchObj
;
540
return super.match(
matchObj
);
541
return requestLine.match(that.requestLine) && super.match(
matchObj
);
[
all
...]
SIPMessage.java
264
* Template match for SIP messages. The
matchObj
is a SIPMessage template to match against.
276
SIPMessage
matchObj
= (SIPMessage) other;
277
Iterator<SIPHeader> li =
matchObj
.getHeaders();
[
all
...]
Completed in 935 milliseconds