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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/xml/
xmlattrs.in 0 namespace="XML"
2 namespaceURI="http://www.w3.org/XML/1998/namespace"
xmlnsattrs.in 0 namespace="XMLNS"
  /system/extras/tests/bionic/libc/common/
hello_world.cpp 2 using namespace std;
  /cts/tests/tests/net/src/android/net/cts/
LocalSocketAddress_NamespaceTest.java 19 import android.net.LocalSocketAddress.Namespace;
25 @TestTargetClass(Namespace.class)
35 assertEquals(Namespace.ABSTRACT, Namespace.valueOf("ABSTRACT"));
36 assertEquals(Namespace.RESERVED, Namespace.valueOf("RESERVED"));
37 assertEquals(Namespace.FILESYSTEM, Namespace.valueOf("FILESYSTEM"));
47 Namespace[] expected = Namespace.values()
    [all...]
  /frameworks/base/core/java/android/net/
LocalSocketAddress.java 24 * abstract (non-filesystem) UNIX domain namespace.
29 * The namespace that this address exists in. See also
32 public enum Namespace {
33 /** A socket in the Linux abstract namespace */
36 * A socket in the Android reserved namespace in /dev/socket.
47 Namespace (int id) {
60 private final Namespace namespace; field in class:LocalSocketAddress
66 * @param namespace namespace the name should be created in
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
ExtendedType.java 30 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)
45 this.namespace = namespace;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
51 * Create an ExtendedType object from node type, namespace, local nam
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
NameSpace.java 19 * $Id: NameSpace.java 468655 2006-10-28 07:12:06Z minchau $
26 * A representation of a namespace. One of these will
27 * be pushed on the namespace stack for each
31 public class NameSpace implements Serializable
35 /** Next NameSpace element on the stack.
37 public NameSpace m_next = null;
39 /** Prefix of this NameSpace element.
43 /** Namespace URI of this NameSpace element.
45 public String m_uri; // if null, then Element namespace is empty
    [all...]
  /build/tools/atree/
options.h 7 using namespace std;
  /external/chromium/base/
rand_util_win.cc 12 namespace {
20 } // namespace
22 namespace base {
30 } // namespace base
  /external/webkit/WebCore/mathml/
mathattrs.in 0 namespace="MathML"
  /external/webkit/WebCore/svg/
xlinkattrs.in 0 namespace="XLink"
  /frameworks/base/tools/aidl/
generate_java.h 8 using namespace std;
  /frameworks/base/tools/localize/
res_check.h 8 using namespace std;
xmb.h 7 using namespace std;
  /external/chromium/base/i18n/
icu_util_nacl_win64.cc 7 namespace icu_util {
13 } // namespace icu_util
number_formatting.h 13 namespace base {
17 } // namespace base
  /external/chromium/net/base/
network_change_notifier_linux.cc 7 namespace net {
12 } // namespace net
network_change_notifier_win.cc 7 namespace net {
12 } // namespace net
  /external/chromium/net/ftp/
ftp_directory_listing_parser.cc 7 namespace net {
12 } // namespace
ftp_request_info.h 10 namespace net {
18 } // namespace net
  /external/chromium/net/proxy/
proxy_config_service_mac.h 10 namespace net {
18 } // namespace net
  /external/chromium/net/tools/flip_server/
http_message_constants.h 8 namespace net {
14 } // namespace net
  /external/protobuf/src/google/protobuf/stubs/
structurally_valid_unittest.cc 7 namespace google {
8 namespace protobuf {
9 namespace internal {
10 namespace {
37 } // namespace
38 } // namespace internal
39 } // namespace protobuf
40 } // namespace google
  /frameworks/base/core/java/android/util/
XmlPullAttributes.java 45 public String getAttributeValue(String namespace, String name) {
46 return mParser.getAttributeValue(namespace, name);
57 public int getAttributeListValue(String namespace, String attribute,
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute,
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute,
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute,
78 getAttributeValue(namespace, attribute), defaultValue)
    [all...]
  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 20 package javax.xml.namespace;
25 * <p>Interface for read only XML Namespace context processing.</p>
27 * <p>An XML Namespace has the properties:</p>
29 * <li>Namespace URI:
30 * Namespace name expressed as a URI to which the prefix is bound</li>
33 * ("xmlns") in the Namespace declaration</li>
35 * <p> example: <code>&lt;element xmlns:prefix="http://Namespace-name-URI"&gt;</code></p>
38 * for Namespace URI and prefix resolution.</p>
40 * <p>Note that a Namespace URI can be bound to
43 * ("xmlns") Namespace declarations occur in the same Start-Tag an
    [all...]

Completed in 2448 milliseconds

1 2 3 4 5 6 7 8 91011>>