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

1 2 3 4

  /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...]
  /system/tools/hidl/c2hal/
Expression.cpp 103 AtomExpression(Type type, const std::string &value, bool isId)
104 : mType(type), mValue(value), mIsId(isId)
269 Expression *Expression::atom(Type type, const std::string &value, bool isId) {
270 return new AtomExpression(type, value, isId);
Expression.h 70 static Expression *atom(Type type, const std::string &value, bool isId = false);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_minidom.py 318 and el.getAttributeNode("spam").isId)
324 and el.attributes["spam"].isId)
    [all...]
  /external/python/cpython2/Lib/test/
test_minidom.py 325 and el.getAttributeNode("spam").isId)
331 and el.attributes["spam"].isId)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_minidom.py 318 and el.getAttributeNode("spam").isId)
324 and el.attributes["spam"].isId)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_minidom.py 318 and el.getAttributeNode("spam").isId)
324 and el.attributes["spam"].isId)
    [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...]
  /frameworks/base/tools/aapt/
ResourceTable.h 160 bool isId = false);
172 bool isId = false,
298 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false)
306 isId(o.isId), value(o.value), style(o.style),
314 isId = o.isId;
324 mutable bool isId;
370 bool replace=false, bool isId = false,
  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 148 id, isId := e.(*ast.Ident)
149 if isId && id.Name == "_" {
155 if !isId {
  /prebuilts/go/linux-x86/src/cmd/vet/
copylock.go 148 id, isId := e.(*ast.Ident)
149 if isId && id.Name == "_" {
155 if !isId {
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
DynamicSymmetry.h 70 bool isId() const
216 while (!e.isId()) {
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 131 public boolean isId( ) { return false; }
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8-dom.jar 
  /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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minidom.py 433 return info.isId(self.nodeName)
449 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
696 if attr.isId:
715 if attr.isId:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minidom.py 435 return info.isId(self.nodeName)
451 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
698 if attr.isId:
717 if attr.isId:
    [all...]
  /external/python/cpython2/Lib/xml/dom/
minidom.py 433 return info.isId(self.nodeName)
449 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
696 if attr.isId:
715 if attr.isId:
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java     [all...]
  /prebuilts/gdb/darwin-x86/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...]

Completed in 2434 milliseconds

1 2 3 4