HomeSort by relevance Sort by last modified time
    Searched full:optiontag (Results 1 - 25 of 30) sorted by null

1 2

  /external/nist-sip/java/javax/sip/header/
OptionTag.java 5 public interface OptionTag {
7 void setOptionTag(String optionTag) throws ParseException;
RequireHeader.java 3 public interface RequireHeader extends OptionTag, Header {
SupportedHeader.java 3 public interface SupportedHeader extends OptionTag, Header {
UnsupportedHeader.java 3 public interface UnsupportedHeader extends OptionTag, Header {
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/nist-sip/java/gov/nist/javax/sip/header/
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...]
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...]
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/webkit/Source/WebCore/accessibility/
AccessibilityListBoxOption.cpp 80 if (!m_optionElement->hasTagName(optionTag))
124 if (!m_optionElement->hasTagName(optionTag))
146 if (m_optionElement->hasTagName(optionTag))
192 if (m_optionElement->hasTagName(optionTag))
AccessibilityMenuListOption.cpp 45 ASSERT_ARG(element, element->hasTagName(optionTag));
AccessibilityMenuListPopup.cpp 67 if (!element || !element->hasTagName(optionTag))
  /external/webkit/Source/WebCore/dom/
OptionElement.cpp 143 if (element->isHTMLElement() && element->hasTagName(HTMLNames::optionTag))
147 if (element->isWMLElement() && element->hasTagName(WMLNames::optionTag))
156 return element->hasLocalName(HTMLNames::optionTag)
158 || element->hasLocalName(WMLNames::optionTag)
  /external/webkit/Source/WebCore/html/
HTMLOptionElement.cpp 48 ASSERT(hasTagName(optionTag));
53 return adoptRef(new HTMLOptionElement(optionTag, document, form));
64 RefPtr<HTMLOptionElement> element = adoptRef(new HTMLOptionElement(optionTag, document));
HTMLSelectElement.cpp 183 if (!element || !(element->hasLocalName(optionTag) || element->hasLocalName(hrTag)))
213 if (items[i]->hasLocalName(optionTag) && static_cast<HTMLOptionElement*>(items[i])->selected())
228 if (items[i]->hasLocalName(optionTag)) {
492 RefPtr<Element> option = document()->createElement(optionTag, false);
507 if (item->hasLocalName(optionTag) && optionIndex++ >= newLen) {
HTMLCollection.cpp 155 if (e->hasLocalName(optionTag))
159 if (e->hasLocalName(optionTag)) {
  /external/webkit/Source/WebCore/wml/
WMLEventHandlingElement.cpp 87 else if (element->hasTagName(optionTag))
  /external/webkit/Source/WebKit/chromium/src/
DOMUtilitiesPrivate.cpp 77 return toHTMLElement<HTMLOptionElement>(node, HTMLNames::optionTag);
WebSearchableFormData.cpp 102 if (!(*i)->hasLocalName(HTMLNames::optionTag))
115 if (!(*i)->hasLocalName(HTMLNames::optionTag))
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.cpp 981 if (token.name() == optgroupTag || token.name() == optionTag) {
982 if (m_tree.openElements()->inScope(optionTag.localName()))
    [all...]
HTMLConstructionSite.cpp 67 || node->hasTagName(optionTag)
HTMLElementStack.cpp 129 && !node->hasTagName(optionTag);
  /external/webkit/Source/WebCore/bindings/gobject/
WebKitHTMLElementWrapperFactory.cpp 518 map.set(optionTag.localName().impl(), createOptionWrapper);
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.cpp 863 ASSERT(m_element->hasTagName(optionTag));
900 ASSERT(m_element->hasTagName(optionTag));
    [all...]

Completed in 1062 milliseconds

1 2