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

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ListAttributeDescriptor.java 42 String nsUri, IAttributeInfo attrInfo) {
43 return new ListAttributeDescriptor(xmlLocalName, nsUri, attrInfo);
54 public ListAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
55 super(xmlLocalName, nsUri, attrInfo);
65 public ListAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo,
67 super(xmlLocalName, nsUri, attrInfo);
ReferenceAttributeDescriptor.java 50 String nsUri, IAttributeInfo attrInfo) {
53 xmlLocalName, nsUri,
61 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
65 public ReferenceAttributeDescriptor(String xmlLocalName, String nsUri,
67 super(xmlLocalName, nsUri, attrInfo);
76 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
81 String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
82 super(xmlLocalName, nsUri, attrInfo);
BooleanAttributeDescriptor.java 29 public BooleanAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
30 super(xmlLocalName, nsUri, attrInfo, VALUES);
EnumAttributeDescriptor.java 30 public EnumAttributeDescriptor(String xmlLocalName, String uiName, String nsUri,
32 super(xmlLocalName, nsUri, attrInfo);
FlagAttributeDescriptor.java 52 public FlagAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
53 super(xmlLocalName, nsUri, attrInfo);
63 public FlagAttributeDescriptor(String xmlLocalName, String uiName, String nsUri,
65 super(xmlLocalName, nsUri, attrInfo);
ITextAttributeCreator.java 38 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
45 String nsUri,
SeparatorAttributeDescriptor.java 34 super(label /* xmlLocalName */, null /* nsUri */, null /* info */);
TextValueDescriptor.java 38 super("#text" /* xmlLocalName */, null /* nsUri */, null /* info */);
AttributeDescriptor.java 49 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
56 public AttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
59 mNsUri = nsUri;
DescriptorsUtils.java 95 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
105 String nsUri, AttributeInfo[] infos,
117 appendAttribute(attributes, elementXmlName, nsUri, info, required, overrides);
128 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
136 String nsUri,
189 attr = override.create(xmlLocalName, nsUri, info);
199 xmlLocalName, nsUri, info);
202 xmlLocalName, nsUri, info);
205 xmlLocalName, nsUri, info);
208 xmlLocalName, nsUri, info)
    [all...]
TextAttributeDescriptor.java 58 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
64 String nsUri,
66 super(xmlLocalName, nsUri, attrInfo);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
ClassAttributeDescriptor.java 48 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
55 String nsUri,
58 super(xmlLocalName, nsUri, attrInfo);
74 * @param nsUri The URI of the attribute. Can be null if attribute has no namespace.
84 String nsUri,
88 super(xmlLocalName, nsUri, attrInfo);
ApplicationAttributeDescriptor.java 42 String nsUri, IAttributeInfo attrInfo) {
44 xmlLocalName, nsUri, attrInfo);
48 private ApplicationAttributeDescriptor(String xmlLocalName, String nsUri,
50 super(xmlLocalName, nsUri, attrInfo);
ManifestPkgAttrDescriptor.java 40 String nsUri, IAttributeInfo attrInfo) {
41 return new ManifestPkgAttrDescriptor(xmlLocalName, nsUri, attrInfo);
45 public ManifestPkgAttrDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
46 super(xmlLocalName, nsUri, attrInfo);
ThemeAttributeDescriptor.java 41 String nsUri, IAttributeInfo attrInfo) {
42 return new ThemeAttributeDescriptor(xmlLocalName, nsUri, attrInfo);
46 public ThemeAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
47 super(xmlLocalName, nsUri, attrInfo);
PackageAttributeDescriptor.java 30 public PackageAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) {
31 super(xmlLocalName, nsUri, attrInfo);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ValuesDescriptors.java 95 null /* nsUri */,
112 null /* nsUri */,
129 null /* nsUri */,
133 null /* nsUri */,
139 null /* nsUri */,
168 null /* nsUri */,
185 null /* nsUri */,
202 null /* nsUri */,
206 null /* nsUri */,
219 null /* nsUri */,
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateelementNS01.java 83 String nsURI;
90 nsURI = element.getNamespaceURI();
95 assertEquals("documentcreateelementNS01_namespaceURI", "http://www.w3.org/DOM/Test/level2", nsURI);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentCreateElementNS.java 61 String nsURI;
68 nsURI = element.getNamespaceURI();
74 "http://www.w3.org/DOM/Test/level2", nsURI);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/packages/
MinToolsPackage.java 48 * @param nsUri The namespace URI of the originating XML document, to be able to deal with
52 MinToolsPackage(SdkSource source, Node packageNode, String nsUri, Map<String,String> licenses) {
53 super(source, packageNode, nsUri, licenses);
PlatformToolPackage.java 53 * @param nsUri The namespace URI of the originating XML document, to be able to deal with
58 String nsUri, Map<String,String> licenses) {
59 super(source, packageNode, nsUri, licenses);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SdkStats.java 477 String nsUri,
490 Node root = getFirstChild(doc, nsUri, SdkStatsConstants.NODE_SDK_STATS);
496 nsUri.equals(child.getNamespaceURI()) &&
500 Node node = getFirstChild(child, nsUri, SdkStatsConstants.NODE_API_LEVEL);
514 getFirstChild(child, nsUri, SdkStatsConstants.NODE_CODENAME).
517 getFirstChild(child, nsUri, SdkStatsConstants.NODE_VERSION).
526 node = getFirstChild(child, nsUri, SdkStatsConstants.NODE_SHARE);
575 private Node getFirstChild(Node node, String nsUri, String xmlLocalName) {
579 nsUri.equals(child.getNamespaceURI())) {
AddonsListFetcher.java 420 protected Site[] parseAddonsList(Document doc, String nsUri, ITaskMonitor monitor) {
429 Node root = getFirstChild(doc, nsUri, SdkAddonsListConstants.NODE_SDK_ADDONS_LIST);
437 nsUri.equals(child.getNamespaceURI()) &&
440 Node url = getFirstChild(child, nsUri, SdkAddonsListConstants.NODE_URL);
441 Node name = getFirstChild(child, nsUri, SdkAddonsListConstants.NODE_NAME);
470 private Node getFirstChild(Node node, String nsUri, String xmlLocalName) {
474 nsUri.equals(child.getNamespaceURI())) {
  /external/libxslt/libxslt/
functions.c 715 const xmlChar *nsURI = NULL;
737 nsURI = xmlXPathNsLookup(ctxt->context, prefix);
738 if (nsURI == NULL) {
744 if (xmlStrEqual(nsURI, XSLT_NAMESPACE)) {
807 const xmlChar *nsURI = NULL;
840 if (ns != NULL) nsURI = xmlStrdup(ns->href);
842 nsURI = xmlXPathNsLookup(ctxt->context, prefix);
843 if (nsURI == NULL) {
849 if (xsltExtElementLookup(tctxt, name, nsURI) != NULL) {
874 const xmlChar *nsURI = NULL
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/sources/
SdkSource.java 830 protected boolean parsePackages(Document doc, String nsUri, ITaskMonitor monitor) {
832 Node root = getFirstChild(doc, nsUri, getRootElementName());
    [all...]

Completed in 745 milliseconds

1 2 3