Searched defs:namespace (Results 1 - 11 of 11) sorted by last modified time

/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/base/tools/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/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/tools/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/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/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java167 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, argument
170 if (namespace != null) {
171 append(namespace);
202 public XmlSerializer endTag(String namespace, String name) throws IOException, argument
212 if (namespace != null) {
213 append(namespace);
280 public String getPrefix(String namespace, boolean generatePrefix) argument
338 public void setPrefix(String prefix, String namespace) throws IOException, argument
355 public XmlSerializer startTag(String namespace, String name) throws IOException, argument
365 if (namespace !
[all...]

Completed in 529 milliseconds