Home
last modified time | relevance | path

Searched refs:namespace (Results 1 – 25 of 1631) sorted by relevance

12345678910>>...66

/frameworks/base/libs/androidfw/tests/data/appaslib/
DR.h20 namespace appaslib {
21 namespace R {
22 namespace lib {
23 namespace integer {
29 namespace array {
36 namespace app {
37 namespace integer {
43 namespace array {
/frameworks/base/core/java/android/util/
DXmlPullAttributes.java45 public String getAttributeValue(String namespace, String name) { in getAttributeValue() argument
46 return mParser.getAttributeValue(namespace, name); in getAttributeValue()
57 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
60 getAttributeValue(namespace, attribute), options, defaultValue); in getAttributeListValue()
63 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
66 getAttributeValue(namespace, attribute), defaultValue); in getAttributeBooleanValue()
69 public int getAttributeResourceValue(String namespace, String attribute, in getAttributeResourceValue() argument
72 getAttributeValue(namespace, attribute), defaultValue); in getAttributeResourceValue()
75 public int getAttributeIntValue(String namespace, String attribute, in getAttributeIntValue() argument
78 getAttributeValue(namespace, attribute), defaultValue); in getAttributeIntValue()
[all …]
DAttributeSet.java96 public String getAttributeValue(String namespace, String name); in getAttributeValue() argument
135 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
147 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
165 public int getAttributeResourceValue(String namespace, String attribute, in getAttributeResourceValue() argument
177 public int getAttributeIntValue(String namespace, String attribute, in getAttributeIntValue() argument
191 public int getAttributeUnsignedIntValue(String namespace, String attribute, in getAttributeUnsignedIntValue() argument
203 public float getAttributeFloatValue(String namespace, String attribute, in getAttributeFloatValue() argument
/frameworks/base/libs/androidfw/tests/data/basic/
DR.h20 namespace base {
21 namespace R {
23 namespace attr {
30 namespace layout {
36 namespace string {
47 namespace integer {
56 namespace style {
63 namespace array {
/frameworks/base/libs/androidfw/tests/data/system/
DR.h20 namespace android {
21 namespace R {
23 namespace attr {
30 namespace style {
36 namespace integer {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeLayoutParamsMapAttributes.java41 public String getAttributeValue(String namespace, String name) { in getAttributeValue() argument
42 if (BridgeConstants.NS_RESOURCES.equals(namespace)) { in getAttributeValue()
79 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
85 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
91 public int getAttributeResourceValue(String namespace, String attribute, in getAttributeResourceValue() argument
97 public int getAttributeIntValue(String namespace, String attribute, in getAttributeIntValue() argument
103 public int getAttributeUnsignedIntValue(String namespace, String attribute, in getAttributeUnsignedIntValue() argument
109 public float getAttributeFloatValue(String namespace, String attribute, in getAttributeFloatValue() argument
DBridgeXmlBlockParser.java285 public String getAttributeValue(String namespace, String name) { in getAttributeValue() argument
286 return mParser.getAttributeValue(namespace, name); in getAttributeValue()
351 public void require(int type, String namespace, String name) in require() argument
354 || (namespace != null && !namespace.equals(getNamespace())) in require()
414 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
416 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue); in getAttributeBooleanValue()
425 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { in getAttributeFloatValue() argument
426 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue); in getAttributeFloatValue()
435 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { in getAttributeIntValue() argument
436 return mAttrib.getAttributeIntValue(namespace, attribute, defaultValue); in getAttributeIntValue()
[all …]
/frameworks/base/core/java/android/net/
DLocalSocketAddress.java60 private final Namespace namespace; field in LocalSocketAddress
68 public LocalSocketAddress(String name, Namespace namespace) { in LocalSocketAddress() argument
70 this.namespace = namespace; in LocalSocketAddress()
98 return namespace; in getNamespace()
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
DAssetFactory.java37 String namespace = asset.optString(Utils.NAMESPACE_FIELD, null); in create() local
38 if (namespace == null) { in create()
43 if (namespace.equals(Utils.NAMESPACE_WEB)) { in create()
45 } else if (namespace.equals(Utils.NAMESPACE_ANDROID_APP)) { in create()
48 throw new AssociationServiceException("Namespace " + namespace + " is not supported."); in create()
DAssetMatcherFactory.java34 String namespace = queryObject.optString(Utils.NAMESPACE_FIELD, null); in create() local
35 if (namespace == null) { in create()
40 if (namespace.equals(Utils.NAMESPACE_WEB)) { in create()
42 } else if (namespace.equals(Utils.NAMESPACE_ANDROID_APP)) { in create()
46 String.format(NAMESPACE_NOT_SUPPORTED_STRING, namespace)); in create()
/frameworks/base/core/java/android/content/res/
DXmlBlock.java223 public String getAttributeValue(String namespace, String name) { in getAttributeValue() argument
224 int idx = nativeGetAttributeIndex(mParseState, namespace, name); in getAttributeValue()
227 + namespace + ":" + name + " index = " + idx); in getAttributeValue()
267 …public void require(int type, String namespace, String name) throws XmlPullParserException,IOExcep… in require() argument
269 || (namespace != null && !namespace.equals( getNamespace () ) ) in require()
314 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
316 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); in getAttributeListValue()
322 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
324 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); in getAttributeBooleanValue()
330 public int getAttributeResourceValue(String namespace, String attribute, in getAttributeResourceValue() argument
[all …]
/frameworks/base/tools/layoutlib/bridge/src/android/util/
DBridgeXmlPullAttributes.java83 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
85 String value = getAttributeValue(namespace, attribute); in getAttributeListValue()
100 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
102 String value = getAttributeValue(namespace, attribute); in getAttributeBooleanValue()
117 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { in getAttributeResourceValue() argument
118 String value = getAttributeValue(namespace, attribute); in getAttributeResourceValue()
124 public int getAttributeIntValue(String namespace, String attribute, in getAttributeIntValue() argument
126 String value = getAttributeValue(namespace, attribute); in getAttributeIntValue()
141 public int getAttributeUnsignedIntValue(String namespace, String attribute, in getAttributeUnsignedIntValue() argument
143 String value = getAttributeValue(namespace, attribute); in getAttributeUnsignedIntValue()
[all …]
/frameworks/base/libs/androidfw/tests/data/app/
DR.h20 namespace app {
21 namespace R {
23 namespace attr {
29 namespace style {
/frameworks/base/libs/androidfw/tests/data/lib/
DR.h20 namespace lib {
21 namespace R {
23 namespace attr {
30 namespace style {
/frameworks/base/libs/hwui/tests/common/scenes/
DTestSceneBase.h29 using namespace android;
30 using namespace android::uirenderer;
31 using namespace android::uirenderer::renderthread;
32 using namespace android::uirenderer::test;
/frameworks/av/include/camera/camera2/
DSubmitInfo.h23 namespace android {
24 namespace hardware {
25 namespace camera2 {
26 namespace utils {
/frameworks/compile/mclinker/unittests/
DDirIteratorTest.h14 namespace mcld {
15 namespace sys {
16 namespace fs {
23 namespace mcldtest {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DLayoutParserWrapper.java174 public String getAttributeValue(@Nullable String namespace, String name) { in getAttributeValue() argument
186 if (attribute.name.equals(name) && (attribute.namespace == namespace || in getAttributeValue()
187 attribute.namespace != null && attribute.namespace.equals(namespace))) { in getAttributeValue()
194 returnValue = mDelegate.getAttributeValue(namespace, name); in getAttributeValue()
208 public final String namespace; field in LayoutParserWrapper.Attribute
212 public Attribute(@Nullable String namespace, String name, String value) { in Attribute() argument
213 this.namespace = namespace; in Attribute()
/frameworks/av/include/camera/
DCaptureResult.h25 namespace android {
27 namespace hardware {
28 namespace camera2 {
29 namespace impl {
/frameworks/compile/mclinker/include/mcld/Support/
DRealPath.h15 namespace mcld {
16 namespace sys {
17 namespace fs {
49 namespace std {
/frameworks/base/libs/hwui/renderthread/
DDrawFrameTask.h31 namespace android {
32 namespace uirenderer {
38 namespace renderthread {
43 namespace SyncResult {
/frameworks/compile/mclinker/lib/Support/Windows/
DFileSystem.inc31 namespace mcld {
32 namespace sys {
33 namespace fs {
34 namespace detail {
143 } // namespace detail
144 } // namespace fs
145 } // namespace sys
162 } // namespace mcld
/frameworks/base/libs/hwui/
DIContextFactory.h19 namespace android {
20 namespace uirenderer {
22 namespace renderthread {
DGlop.h31 namespace android {
32 namespace uirenderer {
45 namespace VertexAttribFlags {
62 namespace TransformFlags {
/frameworks/compile/slang/
Drs_cc_options.h30 namespace llvm {
31 namespace cl {
34 namespace opt {
39 namespace slang {

12345678910>>...66