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

1 2 3 4 5 6 7 8 910

  /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 58 bool removeAttribute(Element*, const String& name, ExceptionState&);
67 bool removeAttribute(Element*, const String& name, ErrorString*);
  /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/harmony-tests/src/test/java/org/apache/harmony/tests/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/chrome/browser/resources/sync_internals/
events.js 13 detailsNode.removeAttribute('hidden');
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 87 void WebElement::removeAttribute(const WebString& attrName)
92 unwrap<Element>()->removeAttribute(attrName);
  /external/chromium_org/third_party/WebKit/public/web/
WebElement.h 65 BLINK_EXPORT void removeAttribute(const WebString&);
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 96 public void removeAttribute(String name)
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/
frame.js 145 iframeEl.removeAttribute('hidden');
163 document.getElementById('old-chrome').removeAttribute('hidden');
167 document.getElementById('not-chrome').removeAttribute('hidden');
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 263 public void removeAttribute (int index)
267 super.removeAttribute (index);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
api_util.js 80 if (element && element.removeAttribute) {
81 element.removeAttribute('cvoxid');
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
example.js 19 getFileEl.removeAttribute('hidden');
28 signInEl.removeAttribute('hidden');
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitElementCommand.cpp 66 m_element2->removeAttribute(HTMLNames::idAttr);
  /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/llvm/lib/CodeGen/
Analysis.cpp 536 CallerAttrs = CallerAttrs.removeAttribute(Attribute::NoAlias);
537 CalleeAttrs = CalleeAttrs.removeAttribute(Attribute::NoAlias);
545 CallerAttrs.removeAttribute(Attribute::ZExt);
546 CalleeAttrs.removeAttribute(Attribute::ZExt);
552 CallerAttrs.removeAttribute(Attribute::SExt);
553 CalleeAttrs.removeAttribute(Attribute::SExt);
  /external/llvm/include/llvm/IR/
Attributes.h 269 AttributeSet removeAttribute(LLVMContext &C, unsigned Index,
421 AttrBuilder &removeAttribute(Attribute::AttrKind Val);
427 AttrBuilder &removeAttribute(StringRef A);

Completed in 721 milliseconds

1 2 3 4 5 6 7 8 910