/frameworks/base/libs/androidfw/tests/data/appaslib/ |
D | R.h | 20 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/ |
D | XmlPullAttributes.java | 45 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 …]
|
D | AttributeSet.java | 96 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/ |
D | R.h | 20 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/ |
D | R.h | 20 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/ |
D | BridgeLayoutParamsMapAttributes.java | 41 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
|
D | BridgeXmlBlockParser.java | 285 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/ |
D | LocalSocketAddress.java | 60 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/ |
D | AssetFactory.java | 37 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()
|
D | AssetMatcherFactory.java | 34 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/ |
D | XmlBlock.java | 223 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/ |
D | BridgeXmlPullAttributes.java | 83 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/ |
D | R.h | 20 namespace app { 21 namespace R { 23 namespace attr { 29 namespace style {
|
/frameworks/base/libs/androidfw/tests/data/lib/ |
D | R.h | 20 namespace lib { 21 namespace R { 23 namespace attr { 30 namespace style {
|
/frameworks/base/libs/hwui/tests/common/scenes/ |
D | TestSceneBase.h | 29 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/ |
D | SubmitInfo.h | 23 namespace android { 24 namespace hardware { 25 namespace camera2 { 26 namespace utils {
|
/frameworks/compile/mclinker/unittests/ |
D | DirIteratorTest.h | 14 namespace mcld { 15 namespace sys { 16 namespace fs { 23 namespace mcldtest {
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | LayoutParserWrapper.java | 174 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/ |
D | CaptureResult.h | 25 namespace android { 27 namespace hardware { 28 namespace camera2 { 29 namespace impl {
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | RealPath.h | 15 namespace mcld { 16 namespace sys { 17 namespace fs { 49 namespace std {
|
/frameworks/base/libs/hwui/renderthread/ |
D | DrawFrameTask.h | 31 namespace android { 32 namespace uirenderer { 38 namespace renderthread { 43 namespace SyncResult {
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 31 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/ |
D | IContextFactory.h | 19 namespace android { 20 namespace uirenderer { 22 namespace renderthread {
|
D | Glop.h | 31 namespace android { 32 namespace uirenderer { 45 namespace VertexAttribFlags { 62 namespace TransformFlags {
|
/frameworks/compile/slang/ |
D | rs_cc_options.h | 30 namespace llvm { 31 namespace cl { 34 namespace opt { 39 namespace slang {
|