HomeSort by relevance Sort by last modified time
    Searched refs:removeAttribute (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /external/apache-http/src/org/apache/http/protocol/
SyncBasicHttpContext.java 57 public synchronized Object removeAttribute(final String id) {
58 return super.removeAttribute(id);
HttpContext.java 56 Object removeAttribute(String id);
DefaultedHttpContext.java 67 public Object removeAttribute(final String id) {
68 return this.local.removeAttribute(id);
BasicHttpContext.java 84 public Object removeAttribute(final String id) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMEditor.h 55 bool removeAttribute(Element*, const String& name, ExceptionState&);
64 bool removeAttribute(Element*, const String& name, ErrorString*);
DOMEditor.cpp 134 : InspectorHistory::Action("RemoveAttribute")
154 m_element->removeAttribute(m_name);
189 m_element->removeAttribute(m_name);
375 bool DOMEditor::removeAttribute(Element* element, const String& name, ExceptionState& es)
435 bool DOMEditor::removeAttribute(Element* element, const String& name, ErrorString* errorString)
438 bool result = removeAttribute(element, name, es);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementremoveattribute.java 31 * The "removeAttribute(name)" removes an attribute by name.
68 testEmployee.removeAttribute("class");
attrspecifiedvalueremove.java 40 * This test uses the "removeAttribute(name)" method
85 ((Element) /*Node */testNode).removeAttribute("street");
elementremoveattribute.java 31 * The "removeAttribute(name)" removes an attribute by name.
37 * attribute by invoking the "removeAttribute(name)" method.
81 testEmployee.removeAttribute("street");
elementremoveattributenomodificationallowederr.java 31 * The "removeAttribute(name)" method for an attribute causes the
37 * from the entity reference by executing the "removeAttribute(name)" method.
95 genElement.removeAttribute("domestic");
elementremoveattributenomodificationallowederrEE.java 31 * The "removeAttribute(name)" method for an attribute causes the
36 * Try to remove the "domestic" attribute from the entity reference by executing the "removeAttribute(name)" method.
85 entElement.removeAttribute("domestic");
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributeListImplTest.java 113 multi.removeAttribute("foo");
119 multi.removeAttribute("john");
123 multi.removeAttribute(null);
141 ai.removeAttribute(ai.getName(i));
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java 163 theAtts.removeAttribute(i);
180 theAtts.removeAttribute(i);
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 86 void WebElement::removeAttribute(const WebString& attrName)
91 unwrap<Element>()->removeAttribute(attrName);
  /external/chromium_org/third_party/WebKit/public/web/
WebElement.h 65 WEBKIT_EXPORT void removeAttribute(const WebString&);
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 96 public void removeAttribute(String name)
  /external/chromium_org/chrome/browser/resources/sync_internals/
about.js 7 this.removeAttribute('highlighted');
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 263 public void removeAttribute (int index)
267 super.removeAttribute (index);
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
example.js 19 getFileEl.removeAttribute('hidden');
28 signInEl.removeAttribute('hidden');
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 137 * @see #removeAttribute
161 public void removeAttribute(String name) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ObsoleteLayoutParamsFix.java 62 element.removeAttribute(attribute.getName());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextEditorHighlighter.js 137 this._textModel.removeAttribute(i, "highlight");
285 this._textModel.removeAttribute(lineNumber, "highlight");
286 this._textModel.removeAttribute(lineNumber, "highlight-outdated");
  /external/llvm/include/llvm/IR/
Attributes.h 264 AttributeSet removeAttribute(LLVMContext &C, unsigned Index,
420 AttrBuilder &removeAttribute(Attribute::AttrKind Val);
426 AttrBuilder &removeAttribute(StringRef A);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Attributes2ImplTest.java 153 attrs.removeAttribute(1);
175 attrs.removeAttribute(-1);
182 attrs.removeAttribute(3);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitElementCommand.cpp 66 m_element2->removeAttribute(HTMLNames::idAttr);

Completed in 1159 milliseconds

1 2 3 4 5 6 7 8 9