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

1 2

  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 270 * <code>isId</code> will always return true.
273 public boolean isId();
Element.java 370 * If the parameter <code>isId</code> is <code>true</code>, this method
372 * . This affects the value of <code>Attr.isId</code> and the behavior
377 * <code>isId</code> to undeclare an attribute for being a
382 * @param isId Whether the attribute is a of type ID.
390 boolean isId)
394 * If the parameter <code>isId</code> is <code>true</code>, this method
396 * . This affects the value of <code>Attr.isId</code> and the behavior
401 * <code>isId</code> to undeclare an attribute for being a
405 * @param isId Whether the attribute is a of type ID.
414 boolean isId)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 39 boolean isId;
119 public boolean isId() {
120 return isId;
ElementImpl.java 134 if (attr.isId() && name.equals(attr.getValue())) {
393 public void setIdAttribute(String name, boolean isId) throws DOMException {
399 attr.isId = isId;
403 boolean isId) throws DOMException {
409 attr.isId = isId;
412 public void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException {
413 ((AttrImpl) idAttr).isId = isId;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Attr.idl 37 [MeasureAs=AttributeIsId] readonly attribute boolean isId;
Attr.h 59 bool isId() const;
Attr.cpp 188 bool Attr::isId() const
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 159 public void setIdAttribute(String name, boolean isId) throws DOMException {
164 boolean isId) throws DOMException {
168 public void setIdAttributeNode(Attr idAttr, boolean isId)
AttrImpl.java 105 public boolean isId() {
  /frameworks/base/tools/aapt/
ResourceTable.h 139 bool isId = false);
151 bool isId = false,
257 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false)
265 isId(o.isId), value(o.value), style(o.style),
273 isId = o.isId;
283 mutable bool isId;
325 bool replace=false, bool isId = false,
ResourceTable.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 318 and el.getAttributeNode("spam").isId)
324 and el.attributes["spam"].isId)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 318 and el.getAttributeNode("spam").isId)
324 and el.attributes["spam"].isId)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 131 public boolean isId( ) { return false; }
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 305 if (!column.isId()) {
538 public boolean isId() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 321 boolean isId = isIdProperty(property);
322 if (isId && !text.startsWith(PREFIX_RESOURCE_REF)) {
328 if (isId && property instanceof XmlProperty
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 436 return info.isId(self.nodeName)
452 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
699 if attr.isId:
718 if attr.isId:
    [all...]
expatbuilder.py 103 def isId(self, aname):
111 return self.isId((auri, aname))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 436 return info.isId(self.nodeName)
452 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
699 if attr.isId:
718 if attr.isId:
    [all...]
expatbuilder.py 103 def isId(self, aname):
111 return self.isId((auri, aname))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java 1089 public boolean isId( ) { return false; }
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java     [all...]
  /external/expat/lib/
xmlparse.c 359 XML_Bool isId, const XML_Char *dfltValue, XML_Parser parser);
    [all...]

Completed in 725 milliseconds

1 2