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.java151 int namespace) throws IOException;
152 private native void bindLocal(FileDescriptor fd, String name, int namespace) argument
150 connectLocal(FileDescriptor fd, String name, int namespace) argument
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java59 // get the attribute namespace
71 // this is not an attribute in the android namespace, we query the customviewloader, if
99 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
100 String value = getAttributeValue(namespace, attribute);
/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/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java40 public String getAttributeValue(String namespace, String name) { argument
41 if (BridgeConstants.NS_RESOURCES.equals(namespace)) {
72 public int getAttributeListValue(String namespace, String attribute, argument
77 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
82 public int getAttributeResourceValue(String namespace, String attribute, argument
87 public int getAttributeIntValue(String namespace, String attribute, argument
92 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
97 public float getAttributeFloatValue(String namespace, String attribute, argument
H A DBridgeXmlBlockParser.java252 public String getAttributeValue(String namespace, String name) { argument
253 return mParser.getAttributeValue(namespace, name);
316 public void require(int type, String namespace, String name) argument
319 || (namespace != null && !namespace.equals(getNamespace()))
374 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
376 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
383 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
384 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
391 public int getAttributeIntValue(String namespace, Strin argument
399 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
412 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
420 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java152 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, argument
155 if (namespace != null) {
156 append(namespace);
186 public XmlSerializer endTag(String namespace, String name) throws IOException, argument
192 if (namespace != null) {
193 append(namespace);
259 public String getPrefix(String namespace, boolean generatePrefix) argument
314 public void setPrefix(String prefix, String namespace) throws IOException, argument
330 public XmlSerializer startTag(String namespace, String name) throws IOException, argument
336 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(int state, String namespace, String name) argument
[all...]

Completed in 380 milliseconds