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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/mac/
SoundMac.mm 29 namespace WebCore {
33 } // namespace WebCore
FileSystemMac.mm 33 namespace WebCore {
40 } // namespace WebCore
Language.mm 33 namespace WebCore {
SuddenTermination.mm 31 namespace WebCore {
43 } // namespace WebCore
  /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...]
  /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...]
  /cts/tools/host/src/com/android/cts/
InvalidNameSpaceException.java 26 public InvalidNameSpaceException(String namespace) {
29 mNamespace = namespace;
35 return "Invalid namespace: " + mNamespace;
  /external/astl/include/
iosfwd 36 namespace std {
41 } // namespace std
  /external/webkit/WebCore/platform/text/mac/
StringImplMac.mm 26 namespace WebCore {
  /external/webkit/WebCore/bindings/objc/
ObjCNodeFilterCondition.mm 36 using namespace JSC;
38 namespace WebCore {
47 } // namespace WebCore
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFunctionResolver.java 21 import javax.xml.namespace.QName;
31 * namespace (functions with an explicit prefix). This means that you cannot
35 * same namespace. This is a consequence of the design of the resolver.</p>
XPathVariableResolver.java 21 import javax.xml.namespace.QName;
  /bionic/libstdc++/include/
cstddef 35 * The following 2 types are also declared in the 'std' namespace:
43 namespace std {
46 } // namespace std
csignal 41 namespace std
46 } // namespace std
utility 33 #define __STL_BEGIN_NAMESPACE namespace std {
  /ndk/sources/cxx-stl/system/include/
cstddef 35 * The following 2 types are also declared in the 'std' namespace:
43 namespace std {
46 } // namespace std
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
csignal 39 namespace std
44 } // namespace std
cstddef 35 * The following 2 types are also declared in the 'std' namespace:
41 namespace std {
44 } // namespace std
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
csignal 39 namespace std
44 } // namespace std
cstddef 35 * The following 2 types are also declared in the 'std' namespace:
41 namespace std {
44 } // namespace std
  /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...]
AttributeSet.java 62 public String getAttributeValue(String namespace, String name);
91 public int getAttributeListValue(String namespace, String attribute,
102 public boolean getAttributeBooleanValue(String namespace, String attribute,
119 public int getAttributeResourceValue(String namespace, String attribute,
130 public int getAttributeIntValue(String namespace, String attribute,
143 public int getAttributeUnsignedIntValue(String namespace, String attribute,
154 public float getAttributeFloatValue(String namespace, String attribute,
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 52 * <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,
92 if ((namespace != null) && (messageResourceBundleName != null
    [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...]
  /external/webkit/WebCore/loader/mac/
ResourceLoaderMac.mm 36 namespace WebCore {

Completed in 195 milliseconds

1 2 3 4 5 6 7 8 91011>>