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

1 2 3 4 5 6 7 8 91011

  /external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
list_view.html 55 listView.selectedElement.removeAttribute('selected');
59 this.removeAttribute('selected');
121 currentSelectedElement.removeAttribute('selected');
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementremoveattribute.java 31 * The "removeAttribute(name)" removes an attribute by name.
37 * attribute by invoking the "removeAttribute(name)" method.
81 testEmployee.removeAttribute("street");
attrspecifiedvalueremove.java 40 * This test uses the "removeAttribute(name)" method
85 ((Element) /*Node */testNode).removeAttribute("street");
hc_elementremoveattribute.java 31 * The "removeAttribute(name)" removes an attribute by name.
68 testEmployee.removeAttribute("class");
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");
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
ReinCommandHandler.java 36 session.removeAttribute(SessionKeys.USER_ACCOUNT);
RntoCommandHandler.java 57 session.removeAttribute(SessionKeys.RENAME_FROM);
  /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/apache-http/src/org/apache/http/protocol/
DefaultedHttpContext.java 72 public Object removeAttribute(final String id) {
73 return this.local.removeAttribute(id);
SyncBasicHttpContext.java 62 public synchronized Object removeAttribute(final String id) {
63 return super.removeAttribute(id);
BasicHttpContext.java 89 public Object removeAttribute(final String id) {
HttpContext.java 61 Object removeAttribute(String id);
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/side_panel/
side_panel_container.html 151 this.activePanelType).removeAttribute('selected');
156 this.removeAttribute('expanded');
226 this.removeAttribute('expanded');
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/session/
DefaultSessionTest.java 390 * Test the removeAttribute()
393 session.removeAttribute("noSuchName"); // do nothing
395 session.removeAttribute(NAME1);
400 * Test the removeAttribute() method, passing in a null name
404 session.removeAttribute(null);
  /external/jetty/src/java/org/eclipse/jetty/util/
Attributes.java 31 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/jetty/src/java/org/eclipse/jetty/security/authentication/
SessionAuthentication.java 100 _session.removeAttribute(__J_AUTHENTICATED);
111 _session.removeAttribute(AbstractSessionManager.SESSION_KNOWN_ONLY_TO_AUTHENTICATED);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
StubSession.groovy 106 * @see org.mockftpserver.core.session.Session#removeAttribute(java.lang.String)
108 public void removeAttribute(String name) {
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
PassCommandHandlerTest.groovy 101 session.removeAttribute(SessionKeys.USERNAME)
125 session.removeAttribute(SessionKeys.USER_ACCOUNT)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java 163 theAtts.removeAttribute(i);
180 theAtts.removeAttribute(i);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/session/
DefaultSessionTest.java 418 * Test the removeAttribute()
421 session.removeAttribute("noSuchName"); // do nothing
423 session.removeAttribute(NAME1);
428 * Test the removeAttribute() method, passing in a null name
432 session.removeAttribute(null);
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 220 removeAttribute("retain", atLoc);
221 if (!removeAttribute("assign", atLoc))
291 bool removeAttribute(StringRef fromAttr, SourceLocation atLoc) const {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
Attributes2ImplTest.java 153 attrs.removeAttribute(1);
175 attrs.removeAttribute(-1);
182 attrs.removeAttribute(3);
  /external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
CustomElements.js 428 var removeAttribute = prototype.removeAttribute;
429 prototype.removeAttribute = function(name) {
430 changeAttribute.call(this, name, null, removeAttribute);

Completed in 910 milliseconds

1 2 3 4 5 6 7 8 91011