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

1 2 3 4 5 6 7

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPAliasInfo.java 31 String getPrefix();
  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 145 * <code>getPrefix(namespaceURI)</code> return value for
191 String getPrefix(String namespaceURI);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AttributeSortOrder.java 60 if (XMLNS.equals(attr1.getPrefix())) {
61 if (XMLNS.equals(attr2.getPrefix())) {
65 } else if (XMLNS.equals(attr2.getPrefix())) {
71 attr1.getPrefix(), attr1.getLocalName(),
72 attr2.getPrefix(), attr2.getLocalName());
98 if (XMLNS.equals(attr1.getPrefix())) {
99 if (XMLNS.equals(attr2.getPrefix())) {
103 } else if (XMLNS.equals(attr2.getPrefix())) {
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodegetprefix03.java 34 * The method getPrefix returns the namespace prefix of this node, or null if it is unspecified.
37 * Retreive the prefix part of their qualified names using getPrefix and verify
85 elemNoPrefix = element.getPrefix();
86 elemPrefix = qelement.getPrefix();
87 attrNoPrefix = attr.getPrefix();
88 attrPrefix = qattr.getPrefix();
documentcreateattributeNS02.java 78 prefix = attribute1.getPrefix();
89 prefix = attribute2.getPrefix();
prefix01.java 34 * The "getPrefix()" method for a Node
40 * Invoke the "getPrefix()" method on the newly created element
73 prefix = createdNode.getPrefix();
prefix02.java 34 * The "getPrefix()" method
40 * Since the first child is Text node invoking the "getPrefix()"
78 prefix = textNode.getPrefix();
prefix04.java 34 * The "getPrefix()" method for a node
37 * Retrieve the first employee node and invoke the getPrefix() method."
72 prefix = testEmployee.getPrefix();
documentcreateelementNS01.java 92 prefix = element.getPrefix();
getElementsByTagNameNS02.java 84 prefix = newElement.getPrefix();
getElementsByTagNameNS09.java 88 prefix = newElement.getPrefix();
prefix03.java 34 * The "getPrefix()" method for a node
37 * Retrieve the first emp:employee node and invoke the getPrefix() method."
79 prefix = testEmployee.getPrefix();
removeAttributeNS02.java 97 prefix = testAddr.getPrefix();
setAttributeNS04.java 98 resultPrefix = addrAttr.getPrefix();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeGetPrefix.java 33 * The method getPrefix returns the namespace prefix of this node, or null if it is unspecified.
36 * Retreive the prefix part of their qualified names using getPrefix and verify
85 elemNoPrefix = element.getPrefix();
86 elemPrefix = qelement.getPrefix();
87 attrNoPrefix = attr.getPrefix();
88 attrPrefix = qattr.getPrefix();
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
FlyweightMapStorageTest.java 57 assertEquals(331402, mapStorage.getPrefix(0));
58 assertEquals(331434, mapStorage.getPrefix(1));
59 assertEquals(334910, mapStorage.getPrefix(2));
60 assertEquals(334911, mapStorage.getPrefix(3));
70 assertEquals(334912, mapStorage.getPrefix(4));
71 assertEquals(334913, mapStorage.getPrefix(5));
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
AreaCodeMapStorageStrategy.java 42 public abstract int getPrefix(int index);
101 output.append(getPrefix(i))
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XMLNSDecl.java 55 public String getPrefix()
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
QName.java 76 public String getPrefix()
ParseRDF.java 216 if ("xmlns".equals(attribute.getPrefix()) ||
217 (attribute.getPrefix() == null && "xmlns".equals(attribute.getNodeName())))
376 if ("xmlns".equals(attribute.getPrefix()) ||
377 (attribute.getPrefix() == null && "xmlns".equals(attribute.getNodeName())))
501 if ("xmlns".equals(attribute.getPrefix()) ||
502 (attribute.getPrefix() == null && "xmlns".equals(attribute.getNodeName())))
625 if ("xmlns".equals(attribute.getPrefix()) ||
626 (attribute.getPrefix() == null && "xmlns".equals(attribute.getNodeName())))
706 if ("xmlns".equals(attribute.getPrefix()) ||
707 (attribute.getPrefix() == null && "xmlns".equals(attribute.getNodeName()))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BstPathTest.java 41 rootPath.getPrefix();
53 assertEquals(rootPath, nodePath.getPrefix());
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
PathTest.java 53 assertEquals("hello", p.getPrefix());
56 assertEquals("", p.getPrefix());
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 71 public String getPrefix() {return prefix;}
269 if (getPrefix() == null) {
270 if (arg.getPrefix() != null) {
274 else if (!getPrefix().equals(arg.getPrefix())) {
315 String prefix = this.getPrefix();
331 String attrPrefix = attr.getPrefix();
407 String prefix = this.getPrefix();
  /external/guava/guava/src/com/google/common/collect/
BstPath.java 70 public final P getPrefix() {
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 185 public String getPrefix(String namespace, boolean create) {
187 return getPrefix(namespace, false, create);
194 private final String getPrefix(
280 String defined = getPrefix(namespace, true, false);
390 : getPrefix(namespace, true, true);
438 : getPrefix(namespace, false, true);

Completed in 1521 milliseconds

1 2 3 4 5 6 7