HomeSort by relevance Sort by last modified time
    Searched refs:optionTag (Results 1 - 12 of 12) 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/core/html/parser/
HTMLTreeBuilder.cpp 861 if (token->name() == optgroupTag || token->name() == optionTag) {
862 if (m_tree.currentStackItem()->hasTagName(optionTag)) {
863 AtomicHTMLToken endOption(HTMLToken::EndTag, optionTag.localName());
    [all...]
HTMLElementStack.cpp 117 && !item->hasTagName(optionTag);
HTMLConstructionSite.cpp 73 || item->hasTagName(optionTag)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptionElement.cpp 51 : HTMLElement(optionTag, document)
HTMLSelectElement.cpp 489 RefPtrWillBeRawPtr<Element> option = document().createElement(optionTag, false);
    [all...]

Completed in 436 milliseconds