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

/frameworks/base/tools/aapt2/integration-tests/NamespaceTest/App/src/com/android/aapt/namespace/app/
H A DMainActivity.java16 package com.android.aapt.namespace.app;
28 com.android.aapt.namespace.libtwo.TextView tv = findViewById(R.id.textview);
/frameworks/base/tools/aapt2/integration-tests/NamespaceTest/Split/src/com/android/aapt/namespace/split/
H A DSplitActivity.java16 package com.android.aapt.namespace.split;
/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/tools/aapt2/integration-tests/NamespaceTest/LibTwo/src/com/android/aapt/namespace/libtwo/
H A DTextView.java16 package com.android.aapt.namespace.libtwo;
/frameworks/base/core/java/android/util/
H A DAttributeSet.java74 * Returns the namespace of the specified attribute.
81 * @return A String containing the namespace of the attribute, or null if th
116 * @param namespace The namespace of the attribute to get the value from.
122 public String getAttributeValue(String namespace, String name); argument
153 * @param namespace Namespace of attribute to retrieve.
161 public int getAttributeListValue(String namespace, String attribute, argument
167 * @param namespace Namespace of attribute to retrieve.
173 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
185 * @param namespace Namespac
191 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
203 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
217 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
229 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
H A DXmlPullAttributes.java49 public String getAttributeValue(String namespace, String name) { argument
50 return mParser.getAttributeValue(namespace, name);
61 public int getAttributeListValue(String namespace, String attribute, argument
64 getAttributeValue(namespace, attribute), options, defaultValue);
67 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
70 getAttributeValue(namespace, attribute), defaultValue);
73 public int getAttributeResourceValue(String namespace, String attribute, argument
76 getAttributeValue(namespace, attribute), defaultValue);
79 public int getAttributeIntValue(String namespace, String attribute, argument
82 getAttributeValue(namespace, attribut
85 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
91 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.java46 public String getAttributeValue(String namespace, String name) { argument
61 public int getAttributeListValue(String namespace, String attribute, String[] options, int argument
67 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
73 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
78 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
83 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
89 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)) {
84 public int getAttributeListValue(String namespace, String attribute, argument
90 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
96 public int getAttributeResourceValue(String namespace, String attribute, argument
102 public int getAttributeIntValue(String namespace, String attribute, argument
108 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
114 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/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteXmlPullParserAdapter.java200 public String getAttributeValue(String namespace, String name) throws RemoteException { argument
201 return mDelegate.getAttributeValue(namespace, name);
220 public void require(int type, String namespace, String name) argument
222 mDelegate.require(type, namespace, name);
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteXmlPullParser.java95 String getAttributeValue(String namespace, String name) throws RemoteException; argument
103 void require(int type, String namespace, String name) argument
/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/
H A DRemoteXmlPullParserAdapter.java311 public String getAttributeValue(String namespace, String name) { argument
313 return mDelegate.getAttributeValue(namespace, name);
339 public void require(int type, String namespace, String name) argument
341 mDelegate.require(type, namespace, name);
/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.java227 public String getAttributeValue(String namespace, String name) { argument
228 int idx = nativeGetAttributeIndex(mParseState, namespace, name);
231 + namespace + ":" + name + " index = " + idx);
271 public void require(int type, String namespace, String name) throws XmlPullParserException,IOException { argument
273 || (namespace != null && !namespace.equals( getNamespace () ) )
318 public int getAttributeListValue(String namespace, String attribute, argument
320 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
326 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
328 int idx = nativeGetAttributeIndex(mParseState, namespace, attribut
334 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
342 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
350 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
359 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
536 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 258 milliseconds