HomeSort by relevance Sort by last modified time
    Searched refs:nsPrefix (Results 1 - 14 of 14) sorted by null

  /external/libxslt/libxslt/
namespaces.c 320 * @nsPrefix: the suggested namespace prefix (or NULL)
324 * for the requested @nsName and @nsPrefix in the result tree.
331 * If both @nsName and @nsPrefix are NULL, then this will try to
338 const xmlChar *nsName, const xmlChar *nsPrefix,
362 if ((nsPrefix == NULL) && ((nsName == NULL) || (nsName[0] == 0))) {
434 if ((nsPrefix != NULL) &&
435 (nsPrefix[0] == 'x') && (nsPrefix[1] == 'm') &&
436 (nsPrefix[2] == 'l') && (nsPrefix[3] == 0)
    [all...]
xsltInternals.h 655 const xmlChar *nsPrefix;
677 const xmlChar *nsPrefix;
    [all...]
attributes.c 782 prefix = comp->nsPrefix;
preproc.c 939 comp->nsPrefix = prefix;
1060 comp->nsPrefix = prefix;
    [all...]
transform.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 574 String nsPrefix = null;
595 nsPrefix = nsUriMap.get(nsUri);
596 if (nsPrefix == null) {
597 nsPrefix = XmlUtils.lookupNamespacePrefix(currentNode, nsUri, false);
598 nsUriMap.put(nsUri, nsPrefix);
601 if (nsPrefix != null) {
602 nsPrefix += ":"; //$NON-NLS-1$
626 String nsKeyword = nsPrefix == null ? keyword : (nsPrefix + keyword);
628 if (nameStartsWith(nsKeyword, wordPrefix, nsPrefix)) {
    [all...]