Searched defs:namespace (Results 1 - 25 of 95) sorted by relevance

1234

/external/libxml2/python/tests/
H A Dnsdel.py22 raise Exception("Error: saw %d namespace declarations. Expected %d" % (len(nsList), count))
27 # Remove single namespace
45 # Remove a namespace refered to by a child
48 namespace = root.newNs("http://example.com/sample", "s") variable
49 child = root.newChild(namespace, "child", None)
52 namespace.freeNsList()
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionNamespaceSupport.java29 * namespace the stylesheet uses. At the beginning of a transformation, TransformerImpl generates
41 public ExtensionNamespaceSupport(String namespace, argument
45 m_namespace = namespace;
H A DExtensionNamespacesManager.java29 * extension namespace that is required during the transformation process
53 * objects is created, one for each predefined extension namespace.
61 * If necessary, register the extension namespace found compiling a function or
64 * If it is a predefined namespace, create a
66 * during transformation runtime. Otherwise, add the namespace, if necessary,
70 public void registerExtension(String namespace) argument
72 if (namespaceIndex(namespace, m_extensions) == -1)
74 int predef = namespaceIndex(namespace, m_predefExtensions);
77 else if (!(m_unregisteredExtensions.contains(namespace)))
78 m_unregisteredExtensions.add(namespace);
103 namespaceIndex(String namespace, Vector extensions) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNSInfo.java24 * This class holds information about the namespace info
25 * of a node. It is used to optimize namespace lookup in
77 * @param namespace The namespace URI
81 public NSInfo(String namespace, boolean hasXMLNSAttrs) argument
86 m_namespace = namespace;
90 /** The namespace URI */
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DDM.java33 public Object readInstance(XmlPullParser parser, String namespace, String name, argument
H A DMarshal.java40 * @param namespace
41 * the namespace.
44 public Object readInstance(XmlPullParser parser, String namespace, String name, argument
H A DMarshalBase64.java34 public Object readInstance(XmlPullParser parser, String namespace, String name, argument
H A DMarshalDate.java34 public Object readInstance(XmlPullParser parser, String namespace, String name, argument
H A DSoapPrimitive.java33 * namespace, name and string value (this is how the stockquote example works).
37 String namespace; field in class:SoapPrimitive
41 public SoapPrimitive(String namespace, String name, String value) { argument
42 this.namespace = namespace;
53 && (namespace == null ? p.namespace == null : namespace.equals(p.namespace))
59 return name.hashCode() ^ (namespace
[all...]
H A DMarshalHashtable.java35 * namespace 'http://xml.apache.org/xml-soap'. Other soap implementations
49 public Object readInstance(XmlPullParser parser, String namespace, String name, argument
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
H A DMarshalFloat.java30 public Object readInstance(XmlPullParser parser, String namespace, String name, argument
/external/libxml2/xstc/
H A Dfixup-tests.py79 debugMsg(" adding <import namespace='%s' schemaLocation='%s'/>" % (impTargetNs, loc)) namespace
82 newElem.newProp("namespace", impTargetNs)
/external/apache-xml/src/main/java/org/apache/xalan/serialize/
H A DSerializerUtils.java150 * to copy an individual namespace node.
170 for (int namespace = dtm.getFirstNamespaceNode(src, true);
171 DTM.NULL != namespace;
172 namespace = dtm.getNextNamespaceNode(src, namespace, true))
175 // String prefix = dtm.getPrefix(namespace);
176 String prefix = dtm.getNodeNameX(namespace);
179 String srcURI = dtm.getNodeValue(namespace);
207 * Returns whether a namespace is defined
213 * @return True if the namespace i
248 ensureNamespaceDeclDeclared( SerializationHandler handler, DTM dtm, int namespace) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExtendedType.java30 private String namespace; field in class:ExtendedType
35 * Create an ExtendedType object from node type, namespace and local name.
36 * The hash code is calculated from the node type, namespace and local name.
39 * @param namespace Namespace of the node
42 public ExtendedType (int nodetype, String namespace, String localName) argument
45 this.namespace = namespace;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
51 * Create an ExtendedType object from node type, namespace, local name
55 * @param namespace Namespac
59 ExtendedType(int nodetype, String namespace, String localName, int hash) argument
72 redefine(int nodetype, String namespace, String localName) argument
85 redefine(int nodetype, String namespace, String localName, int hash) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemExtensionCall.java96 // Register the extension namespace if the extension does not have
107 * @param namespace Namespace associated with this extension element
112 String namespace)
132 if (namespace.equals(declNamespace))
111 getElemExtensionDecl(StylesheetRoot stylesheet, String namespace) argument
/external/emma/core/java12/com/vladium/util/exception/
H A DAbstractException.java293 * 'namespace' should be YourException.class.
295 public static void addExceptionResource (final Class namespace, argument
298 // note: 'namespace' will be the most derived class; it is possible to
301 ExceptionCommon.addExceptionResource (namespace, messageResourceBundleName);
H A DAbstractRuntimeException.java293 * 'namespace' should be YourException.class.
295 public static void addExceptionResource (final Class namespace, argument
298 // note: 'namespace' will be the most derived class; it is possible to
301 ExceptionCommon.addExceptionResource (namespace, messageResourceBundleName);
H A DExceptionCommon.java52 * <LI> when <CODE>getMessage(namespace, code)</CODE> is called, 'code'
54 * under 'namespace';
57 * key 'code', the same step is repeated for the superclass of 'namespace';
73 * @param namespace the Class object acting as the namespace key for the
77 * @param messageResourceBundleName name of a bundle (path relative to 'namespace'
81 * @return ResourceBundle that corresponds to 'namespace' key or null if
84 * @throws Error if 'namespace' does not correspond to an exception class derived
89 public static ResourceBundle addExceptionResource (final Class namespace, argument
92 if ((namespace !
259 getMessage(final Class namespace, final String code) argument
314 getMessage(final Class namespace, final String code, final Object [] arguments) argument
373 lookup(Class namespace, final String propertyName) argument
432 getNameInNamespace(final Class namespace, final String name) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DSubtitleSampleEntry.java21 private String namespace; field in class:SubtitleSampleEntry
31 long contentSize = 8 + namespace.length() + schemaLocation.length() + imageMimeType.length() + 3;
38 namespace = IsoTypeReader.readString(content);
47 IsoTypeWriter.writeUtf8String(byteBuffer, namespace);
53 return namespace;
56 public void setNamespace(String namespace) { argument
57 this.namespace = namespace;
/external/python/cpython2/Doc/includes/
H A Dmp_synchronize.py235 def test(namespace=multiprocessing):
238 multiprocessing = namespace
262 namespace = multiprocessing variable
265 namespace = multiprocessing.Manager() variable
266 namespace.Process = multiprocessing.Process
267 namespace.current_process = multiprocessing.current_process
268 namespace.active_children = multiprocessing.active_children
271 import multiprocessing.dummy as namespace namespace
276 test(namespace)
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DAttrResourceLoader.java41 public String convertValueToEnum(Class<? extends View> viewClass, String namespace, String attrName, String attrValue) { argument
42 boolean isSystem = "android".equals(namespace);
47 public boolean hasAttributeFor(Class<? extends View> viewClass, String namespace, String attrName) { argument
48 boolean isSystem = "android".equals(namespace);
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
H A DRoutingResourceTable.java81 private PackageResourceTable pickFor(String namespace) { argument
82 if (namespace.equals("android.internal")) {
85 PackageResourceTable resourceTable = resourceTables.get(namespace);
87 resourceTable = whichProvidesFor(namespace);
93 private PackageResourceTable whichProvidesFor(String namespace) { argument
95 if (resourceTable.getPackageName().equals(namespace)) {
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncExtFunction.java48 * The namespace for the extension function, which should not normally
102 * Return the namespace of the extension function.
104 * @return The namespace of the extension function.
158 * @param namespace The namespace for the extension function, which should
165 public FuncExtFunction(java.lang.String namespace, argument
168 //try{throw new Exception("FuncExtFunction() " + namespace + " " + extensionName);} catch (Exception e){e.printStackTrace();}
169 m_namespace = namespace;
/external/emma/core/java12/com/vladium/util/
H A DProperty.java91 * Creates a set of properties for an application with a given namespace.
94 * @param namespace application namespace [may not be null]
100 public static Properties getAppProperties (final String namespace, final ClassLoader loader) argument
102 if (namespace == null)
105 final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader);
108 final String fileName = Property.getSystemProperty (namespace + ".properties");
115 final Properties systemOverrides = Property.getSystemProperties (namespace);
116 final Properties resOverrides = Property.getProperties (namespace + ".properties", loader);
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DElement.java35 protected String namespace; field in class:Element
65 String namespace,
69 ? super.createElement(namespace, name)
70 : this.parent.createElement(namespace, name);
96 public String getAttributeValue(String namespace, String name) { argument
99 && (namespace == null || namespace.equals(getAttributeNamespace(i)))) {
131 * returns the namespace of the element */
134 return namespace;
138 * returns the namespace fo
64 createElement( String namespace, String name) argument
227 setAttribute(String namespace, String name, String value) argument
259 setPrefix(String prefix, String namespace) argument
280 setNamespace(String namespace) argument
[all...]

Completed in 443 milliseconds

1234