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

/frameworks/base/core/java/android/net/
H A DLocalSocketAddress.java24 * abstract (non-filesystem) UNIX domain namespace.
29 * The namespace that this address exists in. See also
33 /** A socket in the Linux abstract namespace */
36 * A socket in the Android reserved namespace in /dev/socket.
60 private final Namespace namespace; field in class:LocalSocketAddress
66 * @param namespace namespace the name should be created in.
68 public LocalSocketAddress(String name, Namespace namespace) { argument
70 this.namespace = namespace;
[all...]
H A DLocalSocketImpl.java179 int namespace) throws IOException;
180 private native void bindLocal(FileDescriptor fd, String name, int namespace) argument
178 connectLocal(FileDescriptor fd, String name, int namespace) argument
/frameworks/base/core/java/android/util/
H A DAttributeSet.java90 * @param namespace The namespace of the attribute to get the value from.
96 public String getAttributeValue(String namespace, String name); argument
127 * @param namespace Namespace of attribute to retrieve.
135 public int getAttributeListValue(String namespace, String attribute, argument
141 * @param namespace Namespace of attribute to retrieve.
147 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
159 * @param namespace Namespace of attribute to retrieve.
165 public int getAttributeResourceValue(String namespace, String attribute, argument
171 * @param namespace Namespac
177 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
191 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
203 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
H A DXmlPullAttributes.java45 public String getAttributeValue(String namespace, String name) { argument
46 return mParser.getAttributeValue(namespace, name);
57 public int getAttributeListValue(String namespace, String attribute, argument
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute, argument
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute, argument
78 getAttributeValue(namespace, attribut
81 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
87 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java58 // get the attribute namespace
70 // this is not an attribute in the android namespace, we query the customviewloader, if
83 public int getAttributeListValue(String namespace, String attribute, argument
85 String value = getAttributeValue(namespace, attribute);
100 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
102 String value = getAttributeValue(namespace, attribute);
117 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
118 String value = getAttributeValue(namespace, attribute);
124 public int getAttributeIntValue(String namespace, String attribute, argument
126 String value = getAttributeValue(namespace, attribut
141 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
158 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java41 public String getAttributeValue(String namespace, String name) { argument
42 if (BridgeConstants.NS_RESOURCES.equals(namespace)) {
79 public int getAttributeListValue(String namespace, String attribute, argument
85 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
91 public int getAttributeResourceValue(String namespace, String attribute, argument
97 public int getAttributeIntValue(String namespace, String attribute, argument
103 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
109 public float getAttributeFloatValue(String namespace, String attribute, argument
H A DBridgeXmlBlockParser.java285 public String getAttributeValue(String namespace, String name) { argument
286 return mParser.getAttributeValue(namespace, name);
351 public void require(int type, String namespace, String name) argument
354 || (namespace != null && !namespace.equals(getNamespace()))
414 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
416 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
425 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
426 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
435 public int getAttributeIntValue(String namespace, Strin argument
445 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
461 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
471 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java166 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, argument
169 if (namespace != null) {
170 append(namespace);
201 public XmlSerializer endTag(String namespace, String name) throws IOException, argument
211 if (namespace != null) {
212 append(namespace);
279 public String getPrefix(String namespace, boolean generatePrefix) argument
335 public void setPrefix(String prefix, String namespace) throws IOException, argument
352 public XmlSerializer startTag(String namespace, String name) throws IOException, argument
362 if (namespace !
[all...]
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java223 public String getAttributeValue(String namespace, String name) { argument
224 int idx = nativeGetAttributeIndex(mParseState, namespace, name);
227 + namespace + ":" + name + " index = " + idx);
267 public void require(int type, String namespace, String name) throws XmlPullParserException,IOException { argument
269 || (namespace != null && !namespace.equals( getNamespace () ) )
314 public int getAttributeListValue(String namespace, String attribute, argument
316 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
322 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
324 int idx = nativeGetAttributeIndex(mParseState, namespace, attribut
330 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
338 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
346 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
355 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
512 nativeGetAttributeIndex(long state, String namespace, String name) argument
[all...]

Completed in 536 milliseconds