HomeSort by relevance Sort by last modified time
    Searched defs:nsUri (Results 1 - 5 of 5) sorted by null

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 32 String nsUri = node.getNamespaceURI();
35 nsUri.equals(child.getNamespaceURI())) {
AddonPackage.java 120 * @param nsUri The namespace URI of the originating XML document, to be able to deal with
124 AddonPackage(SdkSource source, Node packageNode, String nsUri, Map<String,String> licenses) {
125 super(source, packageNode, nsUri, licenses);
251 String nsUri = libsNode.getNamespaceURI();
257 nsUri.equals(child.getNamespaceURI()) &&
ExtraPackage.java 84 * @param nsUri The namespace URI of the originating XML document, to be able to deal with
88 ExtraPackage(SdkSource source, Node packageNode, String nsUri, Map<String,String> licenses) {
89 super(source, packageNode, nsUri, licenses);
107 String nsUri = projectFilesNode.getNamespaceURI();
113 nsUri.equals(child.getNamespaceURI()) &&
Package.java 83 * @param nsUri The namespace URI of the originating XML document, to be able to deal with
87 Package(SdkSource source, Node packageNode, String nsUri, Map<String,String> licenses) {
260 String nsUri = archivesNode.getNamespaceURI();
266 nsUri.equals(child.getNamespaceURI()) &&
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 281 * @param nsUri The namespace URI of which the prefix is to be found,
285 private static String lookupNamespacePrefix(Node node, String nsUri) {
290 if (XmlnsAttributeDescriptor.XMLNS_URI.equals(nsUri)) {
317 prefix = SdkConstants.NS_RESOURCES.equals(nsUri) ? "android" : "ns"; //$NON-NLS-1$ //$NON-NLS-2$
619 String nsUri = ((AttributeDescriptor)choice).getNamespaceUri();
620 if (nsUri != null) {
621 nsPrefix = nsUriMap.get(nsUri);
623 nsPrefix = lookupNamespacePrefix(currentNode, nsUri);
624 nsUriMap.put(nsUri, nsPrefix);
    [all...]

Completed in 81 milliseconds