Searched defs:namespace (Results 1 - 12 of 12) 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.java201 int namespace) throws IOException;
202 private native void bindLocal(FileDescriptor fd, String name, int namespace) argument
200 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/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java82 // get the attribute namespace
90 // this is not an attribute in the android namespace, we query the customviewloader, if
103 public int getAttributeListValue(String namespace, String attribute, argument
105 String value = getAttributeValue(namespace, attribute);
120 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
122 String value = getAttributeValue(namespace, attribute);
137 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
138 String value = getAttributeValue(namespace, attribute);
144 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
145 String value = getAttributeValue(namespace, attribut
179 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
196 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DNopAttributeSet.java41 public String getAttributeValue(String namespace, String name) { argument
56 public int getAttributeListValue(String namespace, String attribute, String[] options, int argument
62 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
68 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
73 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
78 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
84 public float getAttributeFloatValue(String namespace, String attribute, argument
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.java286 public String getAttributeValue(String namespace, String name) { argument
287 return mParser.getAttributeValue(namespace, name);
352 public void require(int type, String namespace, String name) argument
355 || (namespace != null && !namespace.equals(getNamespace()))
415 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
417 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
426 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
427 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
436 public int getAttributeIntValue(String namespace, Strin argument
446 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
462 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
472 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java184 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, argument
187 if (namespace != null) {
188 append(namespace);
219 public XmlSerializer endTag(String namespace, String name) throws IOException, argument
229 if (namespace != null) {
230 append(namespace);
297 public String getPrefix(String namespace, boolean generatePrefix) argument
355 public void setPrefix(String prefix, String namespace) throws IOException, argument
372 public XmlSerializer startTag(String namespace, String name) throws IOException, argument
382 if (namespace !
[all...]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java174 public String getAttributeValue(@Nullable String namespace, String name) { argument
186 if (attribute.name.equals(name) && (attribute.namespace == namespace ||
187 attribute.namespace != null && attribute.namespace.equals(namespace))) {
194 returnValue = mDelegate.getAttributeValue(namespace, name);
208 public final String namespace; field in class:LayoutParserWrapper.Attribute
212 public Attribute(@Nullable String namespace, String name, String value) { argument
213 this.namespace
[all...]
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java225 public String getAttributeValue(String namespace, String name) { argument
226 int idx = nativeGetAttributeIndex(mParseState, namespace, name);
229 + namespace + ":" + name + " index = " + idx);
269 public void require(int type, String namespace, String name) throws XmlPullParserException,IOException { argument
271 || (namespace != null && !namespace.equals( getNamespace () ) )
316 public int getAttributeListValue(String namespace, String attribute, argument
318 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
324 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
326 int idx = nativeGetAttributeIndex(mParseState, namespace, attribut
332 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
340 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
348 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
357 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
534 nativeGetAttributeIndex(long state, String namespace, String name) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 2506 milliseconds