Home
last modified time | relevance | path

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

12345678910>>...99

/frameworks/av/apex/
Dld.config.txt14 # "default" namespace
16 # This namespace is for the binaries and libraries on the swcodec APEX.
19 namespace.default.isolated = true
20 namespace.default.visible = true
22 namespace.default.search.paths = /apex/com.android.media.swcodec/${LIB}
23 namespace.default.asan.search.paths = /apex/com.android.media.swcodec/${LIB}
25 namespace.default.links = platform
28 # namespace.default.link.platform.shared_libs = %LLNDK_LIBRARIES%
29 # namespace.default.link.platform.shared_libs += %SANITIZER_RUNTIME_LIBRARIES%
30 namespace.default.link.platform.shared_libs = libEGL.so:libGLESv1_CM.so:libGLESv2.so:libGLESv3.so:l…
[all …]
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
DSettingsHelper.java40 public static void set(@NonNull String namespace, @NonNull String key, @Nullable String value) { in set() argument
42 delete(namespace, key); in set()
45 ShellHelper.runShellCommand("settings put %s %s %s default", namespace, key, value); in set()
52 public static void syncSet(@NonNull Context context, @NonNull String namespace, in syncSet() argument
55 syncDelete(context, namespace, key); in syncSet()
59 String currentValue = get(namespace, key); in syncSet()
65 OneTimeSettingsListener observer = new OneTimeSettingsListener(context, namespace, key, in syncSet()
67 set(namespace, key, value); in syncSet()
69 assertNewValue(namespace, key, value); in syncSet()
75 public static void delete(@NonNull String namespace, @NonNull String key) { in delete() argument
[all …]
/frameworks/base/core/java/android/provider/
DDeviceConfig.java367 public static String getProperty(@NonNull String namespace, @NonNull String name) { in getProperty() argument
369 String compositeName = createCompositeName(namespace, name); in getProperty()
386 public static String getString(@NonNull String namespace, @NonNull String name, in getString() argument
388 String value = getProperty(namespace, name); in getString()
405 public static boolean getBoolean(@NonNull String namespace, @NonNull String name, in getBoolean() argument
407 String value = getProperty(namespace, name); in getBoolean()
424 public static int getInt(@NonNull String namespace, @NonNull String name, int defaultValue) { in getInt() argument
425 String value = getProperty(namespace, name); in getInt()
432 Log.e(TAG, "Parsing integer failed for " + namespace + ":" + name); in getInt()
450 public static long getLong(@NonNull String namespace, @NonNull String name, long defaultValue) { in getLong() argument
[all …]
/frameworks/base/cmds/statsd/src/
Dstatscompanion_util.h21 using namespace android;
22 using namespace android::base;
23 using namespace android::binder;
24 using namespace android::os;
25 using namespace std;
27 namespace android {
28 namespace os {
29 namespace statsd {
/frameworks/av/media/libaudiohal/impl/include/libaudiohal/
DFactoryHalHidl.h26 namespace android {
28 namespace effect {
29 namespace V2_0 {
33 namespace V4_0 {
37 namespace V5_0 {
42 namespace V2_0 {
46 namespace V4_0 {
50 namespace V5_0 {
/frameworks/base/core/java/android/util/
DXmlPullAttributes.java51 public String getAttributeValue(String namespace, String name) { in getAttributeValue() argument
52 return mParser.getAttributeValue(namespace, name); in getAttributeValue()
63 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
66 getAttributeValue(namespace, attribute), options, defaultValue); in getAttributeListValue()
69 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
72 getAttributeValue(namespace, attribute), defaultValue); in getAttributeBooleanValue()
75 public int getAttributeResourceValue(String namespace, String attribute, in getAttributeResourceValue() argument
78 getAttributeValue(namespace, attribute), defaultValue); in getAttributeResourceValue()
81 public int getAttributeIntValue(String namespace, String attribute, in getAttributeIntValue() argument
84 getAttributeValue(namespace, attribute), defaultValue); in getAttributeIntValue()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/java/
Djava_message_builder_lite.h42 namespace google {
43 namespace protobuf {
44 namespace compiler {
45 namespace java {
50 namespace io {
55 namespace protobuf {
56 namespace compiler {
57 namespace java {
Djava_enum_lite.h42 namespace google {
43 namespace protobuf {
44 namespace compiler {
45 namespace java {
50 namespace io {
55 namespace protobuf {
56 namespace compiler {
57 namespace java {
Djava_enum.h42 namespace google {
43 namespace protobuf {
44 namespace compiler {
45 namespace java {
50 namespace io {
55 namespace protobuf {
56 namespace compiler {
57 namespace java {
Djava_shared_code_generator.h48 namespace google {
49 namespace protobuf {
51 namespace compiler {
53 namespace java {
57 namespace io {
62 namespace protobuf {
63 namespace compiler {
64 namespace java {
Djava_message_builder.h42 namespace google {
43 namespace protobuf {
44 namespace compiler {
45 namespace java {
50 namespace io {
55 namespace protobuf {
56 namespace compiler {
57 namespace java {
Djava_extension.h43 namespace google {
44 namespace protobuf {
46 namespace compiler {
47 namespace java {
52 namespace io {
57 namespace protobuf {
58 namespace compiler {
59 namespace java {
Djava_file.h47 namespace google {
48 namespace protobuf {
50 namespace io {
53 namespace compiler {
55 namespace java {
65 namespace protobuf {
66 namespace compiler {
67 namespace java {
Djava_context.h44 namespace google {
45 namespace protobuf {
51 namespace compiler {
52 namespace java {
58 namespace protobuf {
59 namespace compiler {
60 namespace java {
Djava_generator_factory.h38 namespace google {
39 namespace protobuf {
43 namespace compiler {
44 namespace java {
53 namespace protobuf {
54 namespace compiler {
55 namespace java {
/frameworks/layoutlib/bridge/src/android/util/
DBridgeXmlPullAttributes.java47 @NonNull ResourceNamespace namespace, @NonNull String attrName); in getEnumValues()
111 ResourceNamespace namespace = ResourceNamespace.fromNamespaceUri(ns); in getAttributeNameResource() local
112 if (namespace != null) { in getAttributeNameResource()
114 ResourceReference.attr(namespace, name)); in getAttributeNameResource()
122 public int getAttributeListValue(String namespace, String attribute, in getAttributeListValue() argument
124 String value = getAttributeValue(namespace, attribute); in getAttributeListValue()
139 public boolean getAttributeBooleanValue(String namespace, String attribute, in getAttributeBooleanValue() argument
141 String value = getAttributeValue(namespace, attribute); in getAttributeBooleanValue()
156 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { in getAttributeResourceValue() argument
157 String value = getAttributeValue(namespace, attribute); in getAttributeResourceValue()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/javanano/
Djavanano_file.h43 namespace google {
44 namespace protobuf {
46 namespace io {
49 namespace compiler {
54 namespace protobuf {
55 namespace compiler {
56 namespace javanano {
Djavanano_extension.h43 namespace google {
44 namespace protobuf {
45 namespace io {
50 namespace protobuf {
51 namespace compiler {
52 namespace javanano {
Djavanano_enum.h44 namespace google {
45 namespace protobuf {
46 namespace io {
51 namespace protobuf {
52 namespace compiler {
53 namespace javanano {
/frameworks/native/libs/gui/include/gui/bufferqueue/1.0/
DH2BProducerListener.h24 namespace android {
25 namespace hardware {
26 namespace graphics {
27 namespace bufferqueue {
28 namespace V1_0 {
29 namespace utils {
/frameworks/native/libs/gui/include/gui/bufferqueue/2.0/
DH2BProducerListener.h24 namespace android {
25 namespace hardware {
26 namespace graphics {
27 namespace bufferqueue {
28 namespace V2_0 {
29 namespace utils {
DB2HProducerListener.h27 namespace android {
28 namespace hardware {
29 namespace graphics {
30 namespace bufferqueue {
31 namespace V2_0 {
32 namespace utils {
/frameworks/av/media/codec2/core/include/media/stagefright/codec2/1.0/
DInputSurfaceConnection.h26 namespace android {
27 namespace hardware {
28 namespace media {
29 namespace c2 {
30 namespace V1_0 {
31 namespace implementation {
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/objectivec/
Dobjectivec_extension.h36 namespace google {
37 namespace protobuf {
39 namespace io {
44 namespace protobuf {
45 namespace compiler {
46 namespace objectivec {
/frameworks/av/media/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/
DClientBlockHelper.h24 namespace android {
25 namespace hardware {
26 namespace media {
27 namespace c2 {
28 namespace V1_0 {
29 namespace utils {

12345678910>>...99