Searched defs:namespace (Results 26 - 50 of 100) sorted by relevance

1234

/external/smack/src/org/jivesoftware/smackx/
H A DPrivateDataManager.java41 * XML namespace. Example private data:
51 * If no PrivateDataProvider is registered for a given element name and namespace, then
68 * Returns the private data provider registered to the specified XML element name and namespace.
70 * namespace "http://www.xmppclient.com/prefs", then the following packet would trigger
86 * @param namespace the XML namespace.
89 public static PrivateDataProvider getPrivateDataProvider(String elementName, String namespace) { argument
90 String key = getProviderKey(elementName, namespace);
99 * @param namespace the XML namespace
102 addPrivateDataProvider(String elementName, String namespace, PrivateDataProvider provider) argument
115 removePrivateDataProvider(String elementName, String namespace) argument
178 getPrivateData(final String elementName, final String namespace) argument
270 getProviderKey(String elementName, String namespace) argument
[all...]
/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/emma/core/java12/com/vladium/util/exception/
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/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...]
H A DNode.java81 For no namespace, please use Xml.NO_NAMESPACE, null is not a
85 public Element createElement(String namespace, String name) { argument
88 e.namespace = namespace == null ? "" : namespace;
115 /** Returns the element with the given namespace and name. If the
119 public Element getElement(String namespace, String name) { argument
121 int i = indexOf(namespace, name, 0);
122 int j = indexOf(namespace, name, i + 1);
127 + namespace
199 indexOf(String namespace, String name, int startIndex) argument
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DPropertyInfo.java57 public String namespace; field in class:PropertyInfo
93 namespace = null;
165 * @return Returns the namespace.
169 return namespace;
173 * @param namespace
174 * The namespace to set.
176 public void setNamespace(String namespace) argument
178 this.namespace = namespace;
H A DSoapObject.java45 * The namespace of this soap object.
47 protected String namespace; field in class:SoapObject
72 * @param namespace
73 * the namespace for the soap object
78 public SoapObject(String namespace, String name) { argument
79 this.namespace = namespace;
91 || !namespace.equals(otherSoapObject.namespace)) {
143 return namespace;
[all...]
H A DSppPropertyInfo.java57 public String namespace; field in class:SppPropertyInfo
93 namespace = null;
165 * @return Returns the namespace.
169 return namespace;
173 * @param namespace
174 * The namespace to set.
176 public void setNamespace(String namespace) argument
178 this.namespace = namespace;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestAttributeSet.java54 public boolean getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) { argument
55 String value = getAttributeValueInMap(namespace, attribute);
60 public String getAttributeValue(String namespace, String attribute) { argument
61 return getAttributeValueInMap(namespace, attribute);
65 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
66 String value = getAttributeValueInMap(namespace, attribute);
101 public int getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) { argument
106 public int getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) { argument
111 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
112 String value = getAttributeValueInMap(namespace, attribut
132 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
196 getAttributeValueInMap(String namespace, String attribute) argument
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DPacketParserUtils.java102 String namespace = parser.getNamespace();
136 namespace.equals(PROPERTIES_NAMESPACE))
143 PacketParserUtils.parsePacketExtension(elementName, namespace, parser));
218 String namespace = parser.getNamespace();
248 namespace.equals(PROPERTIES_NAMESPACE))
259 presence.addExtension(PacketParserUtils.parsePacketExtension(elementName, namespace, parser));
297 String namespace = parser.getNamespace();
301 else if (elementName.equals("query") && namespace.equals("jabber:iq:auth")) {
304 else if (elementName.equals("query") && namespace.equals("jabber:iq:roster")) {
307 else if (elementName.equals("query") && namespace
789 parsePacketExtension(String elementName, String namespace, XmlPullParser parser) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DPubSubElementType.java68 public static PubSubElementType valueOfFromElemName(String elemName, String namespace) argument
70 int index = namespace.lastIndexOf('#');
71 String fragment = (index == -1 ? null : namespace.substring(index+1));
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElement.java83 Return the namespace name of the element's type.
85 @return The element type namespace name
88 public String namespace() { return theType.namespace(); } method in class:Element
H A DElementType.java26 private String theNamespace; // element type namespace name
57 theNamespace = namespace(name, false);
62 Return a namespace name from a Qname.
63 The attribute flag tells us whether to return an empty namespace
67 @return The namespace name
69 public String namespace(String name, boolean attribute) { method in class:ElementType
76 return "http://www.w3.org/XML/1998/namespace";
106 Returns the namespace name of this element type.
107 @return The namespace name of the element type
110 public String namespace() { retur method in class:ElementType
[all...]
/external/robolectric/lib/main/
H A Dxpp3-1.1.4c.jar ... XmlPullParserFactory XPP3_1.1.4c_VERSION javax/ javax/xml/ javax/xml/namespace/ javax/xml/namespace/QName.class QName.java package ...
/external/smack/asmack-master/lib/
H A Dxpp3-1.1.4c.jar ... XmlPullParserFactory XPP3_1.1.4c_VERSION javax/ javax/xml/ javax/xml/namespace/ javax/xml/namespace/QName.class QName.java package ...
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js15 * The org.antlr global namespace object. If antlr is already defined, the
18 * @namespace org.antlr
31 * Returns the namespace specified and creates it if it doesn't exist.
36 * org.antlr.namespace("really.long.nested.namespace");
42 * @return {Object} A reference to the last namespace object created
44 * org.antlr.namespace("org.antlr.property.package");
46 org.antlr.namespace = function() {
65 * @namespace org.antlr.env
78 * @namespace or
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExpandedNameTable.java145 * Given an expanded name represented by namespace, local name and node type,
150 * @param namespace The namespace
156 public int getExpandedTypeID(String namespace, String localName, int type) argument
158 return getExpandedTypeID(namespace, localName, type, false);
162 * Given an expanded name represented by namespace, local name and node type,
171 * @param namespace The namespace
179 public int getExpandedTypeID(String namespace, String localName, int type, boolean searchOnly) argument
181 if (null == namespace)
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DNodeTest.java43 * The namespace or local name for node tests with a wildcard.
92 * The namespace to be tested for, which may be null.
98 * Return the namespace to be tested.
100 * @return The namespace to be tested for, or {@link #WILD}, or null.
108 * Set the namespace to be tested.
110 * @param ns The namespace to be tested for, or {@link #WILD}, or null.
196 * @param namespace The namespace to be tested.
199 public NodeTest(int whatToShow, String namespace, String name) argument
201 initNodeTest(whatToShow, namespace, nam
284 initNodeTest(int whatToShow, String namespace, String name) argument
[all...]
H A DStepPattern.java51 * @param namespace The namespace to be tested.
56 public StepPattern(int whatToShow, String namespace, String name, int axis, argument
60 super(whatToShow, namespace, name);
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dhidgnubbydevice.js44 {namespace: HidGnubbyDevice.NAMESPACE, device: this.id});
467 namespace: HidGnubbyDevice.NAMESPACE,
H A Dusbgnubbydevice.js50 {namespace: UsbGnubbyDevice.NAMESPACE, device: this.id});
531 namespace: UsbGnubbyDevice.NAMESPACE,
/external/smack/src/org/jivesoftware/smack/packet/
H A DPacket.java250 * Returns the first extension of this packet that has the given namespace.
252 * @param namespace the namespace of the extension that is desired.
253 * @return the packet extension with the given namespace.
255 public PacketExtension getExtension(String namespace) { argument
256 return getExtension(null, namespace);
261 * namespace, or <tt>null</tt> if it doesn't exist. If the provided elementName is null
262 * than only the provided namespace is attempted to be matched. Packet extensions are
271 * @param namespace the XML element namespace o
274 getExtension(String elementName, String namespace) argument
[all...]
H A DXMPPError.java253 * namespace, or <tt>null</tt> if it doesn't exist.
256 * @param namespace the XML element namespace of the packet extension.
259 public synchronized PacketExtension getExtension(String elementName, String namespace) { argument
260 if (applicationExtensions == null || elementName == null || namespace == null) {
264 if (elementName.equals(ext.getElementName()) && namespace.equals(ext.getNamespace())) {
/external/smack/src/org/jivesoftware/smackx/packet/
H A DAdHocCommandData.java253 public static final String namespace = "http://jabber.org/protocol/commands"; field in class:AdHocCommandData.SpecificError
265 return namespace;

Completed in 1827 milliseconds

1234