OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:optionTag
(Results
1 - 14
of
14
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
ProxyRequire.java
52
*
Optiontag
field
54
protected String
optionTag
;
68
optionTag
= s;
76
return
optionTag
;
80
* Sets the option tag value to the new supplied <var>
optionTag
</var>
83
* @param
optionTag
- the new string value of the option tag.
85
* unexpectedly while parsing the
optionTag
value.
87
public void setOptionTag(String
optionTag
) throws ParseException {
88
if (
optionTag
== null)
89
throw new NullPointerException("JAIN-SIP Exception, ProxyRequire, setOptionTag(), the
optionTag
parameter is null")
[
all
...]
Require.java
50
/**
optionTag
field
52
protected String
optionTag
;
66
optionTag
= s;
74
return
optionTag
;
78
* Sets the option tag value to the new supplied <var>
optionTag
</var>
81
* @param
optionTag
- the new string value of the option tag.
83
* unexpectedly while parsing the
optionTag
value.
85
public void setOptionTag(String
optionTag
) throws ParseException {
86
if (
optionTag
== null)
89
+ "setOptionTag(), the
optionTag
parameter is null")
[
all
...]
Supported.java
53
protected String
optionTag
;
60
optionTag
= null;
69
optionTag
= option_tag;
78
if (
optionTag
!= null)
79
retval += SP +
optionTag
;
89
return
optionTag
!= null ?
optionTag
: "";
93
* Sets the option tag value to the new supplied <var>
optionTag
</var>
96
* @param
optionTag
- the new string value of the option tag.
98
* unexpectedly while parsing the
optionTag
value
[
all
...]
Unsupported.java
52
protected String
optionTag
;
65
optionTag
= ot;
73
return
optionTag
;
80
return
optionTag
;
92
optionTag
= o;
HeaderFactoryImpl.java
704
* Creates a new ProxyRequireHeader based on the newly supplied
optionTag
707
* @param
optionTag
- the new string
OptionTag
value.
710
* unexpectedly while parsing the
optionTag
value.
712
public ProxyRequireHeader createProxyRequireHeader(String
optionTag
)
714
if (
optionTag
== null)
715
throw new NullPointerException("bad
optionTag
arg");
717
p.setOptionTag(
optionTag
);
851
* Creates a new RequireHeader based on the newly supplied
optionTag
854
* @param
optionTag
- the new string value containing the optionTag value
[
all
...]
/external/nist-sip/java/javax/sip/header/
OptionTag.java
5
public interface
OptionTag
{
7
void setOptionTag(String
optionTag
) throws ParseException;
HeaderFactory.java
109
ProxyRequireHeader createProxyRequireHeader(String
optionTag
)
131
RequireHeader createRequireHeader(String
optionTag
) throws ParseException;
159
SupportedHeader createSupportedHeader(String
optionTag
)
167
UnsupportedHeader createUnsupportedHeader(String
optionTag
)
/external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp
105
if (!(*i)->hasLocalName(HTMLNames::
optionTag
))
118
if (!(*i)->hasLocalName(HTMLNames::
optionTag
))
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.cpp
237
return element.hasLocalName(
optionTag
);
239
return element.hasLocalName(
optionTag
) && toHTMLOptionElement(element).selected();
241
if (element.hasLocalName(
optionTag
)) {
HTMLOptionElement.cpp
49
: HTMLElement(
optionTag
, document)
HTMLSelectElement.cpp
478
RefPtrWillBeRawPtr<Element> option = document().createElement(
optionTag
, false);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilder.cpp
859
if (token->name() == optgroupTag || token->name() ==
optionTag
) {
860
if (m_tree.currentStackItem()->hasTagName(
optionTag
)) {
861
AtomicHTMLToken endOption(HTMLToken::EndTag,
optionTag
.localName());
[
all
...]
HTMLElementStack.cpp
117
&& !item->hasTagName(
optionTag
);
HTMLConstructionSite.cpp
73
|| item->hasTagName(
optionTag
)
[
all
...]
Completed in 1838 milliseconds