Searched refs:map (Results 151 - 175 of 259) sorted by relevance

1234567891011

/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
H A DVectorDrawableTest.java147 Map<String, Object> map = (Map<String, Object>)l.getItemAtPosition(position);
149 Intent intent = (Intent) map.get("intent");
/frameworks/base/tools/aapt2/
H A DDebug.cpp24 #include <map>
141 std::map<ResourceName, std::set<ResourceName>> graph;
H A DJavaClassGenerator_test.cpp99 std::make_shared<MockResolver>(mTable, std::map<ResourceName, ResourceId>()),
128 std::map<ResourceName, ResourceId>({
H A DStringPool.h25 #include <map>
H A DXmlFlattener.cpp32 #include <map>
240 std::map<std::u16string, StringPool>* packagePools,
454 std::map<std::u16string, StringPool>* mPackagePools;
544 std::map<std::u16string, StringPool> packagePools;
/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrame.h21 #include <map>
56 typedef std::map</*offset*/ size_t, CIE*> CIEMap;
249 // We need this map to find the corresponding CIE for FDE. Not all FDE point
/frameworks/compile/slang/
H A Dslang_rs_reflection.h22 #include <map>
92 typedef std::map<const RSExportRecordType::Field *, unsigned> FieldIndexMapTy;
/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.cpp465 CREATE_BRIDGE4(setTextureAtlas, RenderThread* thread, GraphicBuffer* buffer, int64_t* map, size_t size) { argument
466 CanvasContext::setTextureAtlas(*args->thread, args->buffer, args->map, args->size);
471 void RenderProxy::setTextureAtlas(const sp<GraphicBuffer>& buffer, int64_t* map, size_t size) { argument
476 args->map = map;
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java906 // Get the map of attribute-constant -> IntegerValue
907 Map<String, Integer> map = null;
909 map = Bridge.getEnumValues(mNames[index]);
915 map = ((AttrResourceValue) attr).getAttributeValues();
919 if (map != null) {
927 Integer i = map.get(keyword.trim());
/frameworks/rs/api/
H A DGenerateDocumentation.cpp153 map<string, DetailedFunctionEntry>* entries) {
286 static void writeSummaryTables(GeneratedFile* file, const map<string, Constant*>& constants, argument
287 const map<string, Type*>& types,
288 const map<string, Function*>& functions,
551 map<string, DetailedFunctionEntry> entries;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java2287 HashMap<String,String> map = new HashMap<String,String>();
2288 map.put("_id", "status._id as _id");
2289 map.put("account", "stats.account as account");
2291 map.put("account_type", "stats.account_type as account_type");
2293 map.put("authority", "stats.authority as authority");
2294 map.put("totalElapsedTime", "totalElapsedTime");
2295 map.put("numSyncs", "numSyncs");
2296 map.put("numSourceLocal", "numSourceLocal");
2297 map.put("numSourcePoll", "numSourcePoll");
2298 map
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java111 /** The map adds cookies to each view so that IDE can link xml tags to views. */
115 * converted to views. This map stores the mapping from objects to cookies which can then be
159 * This a map from value to attribute name. Warning for missing references shouldn't be logged
160 * if value and attr name pair is the same as an entry in this map.
627 Map<Integer, BridgeTypedArray> map = new HashMap<Integer, BridgeTypedArray>();
628 mTypedArrayCache.put(attrs, map);
631 map.put(resid, ta);
636 // get the 2nd map
637 Map<Integer, BridgeTypedArray> map = mTypedArrayCache.get(attrs);
638 if (map
[all...]
/frameworks/av/media/img_utils/src/
H A DTiffWriter.cpp30 KeyedVector<uint16_t, const TagDefinition_t*> map; local
32 map.add(definitions[i].tagId, definitions + i);
34 return map;
/frameworks/base/core/java/android/view/
H A DViewDebug.java98 * A mapping can be defined to map int values to specific strings. For
119 * A mapping can be defined to map array indices to specific strings.
140 * A flags mapping can be defined to map flags encoded in an integer to
213 * The original int value to map to a String.
1025 final HashMap<Class<?>, Field[]> map = sFieldsForClasses;
1027 Field[] fields = map.get(klass);
1044 map.put(klass, fields);
1060 final HashMap<Class<?>, Method[]> map = sMethodsForClasses;
1062 Method[] methods = map.get(klass);
1089 map
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp19 #include <map>
120 static std::map<const String8*, jstring, InternedStringCompare> internedStrings;
123 std::map<const String8*, jstring>::iterator iterator = internedStrings.find(string);
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageTest.java119 Map<String, String> map = new HashMap<String, String>();
127 map.put(parts[0], parts[1]);
129 return map;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java63 /** FQCN Names of the classes to rename: map old-FQCN => new-FQCN */
69 /** A map { FQCN => set { list of return types to delete from the FQCN } }. */
71 /** A map { FQCN => set { method names } } of methods to rewrite as delegates.
75 * map old-FQCN => new-FQCN */
80 /** A map { FQCN => set { field names } } which should be promoted to public visibility */
112 // Create the map/set of methods to change to delegates
126 // Create the map of classes to rename.
140 // Create a map of classes to be refactored.
151 // create the map of renamed class -> return type of method to delete.
157 // if we reach the end of a section, add it to the main map
190 addToMap(String[] entries, Map<String, Set<String>> map) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMALTEPhone.java217 ContentValues map = new ContentValues();
218 map.put(Telephony.Carriers.NUMERIC, operatorNumeric);
219 mContext.getContentResolver().insert(uri, map);
/frameworks/base/include/androidfw/
H A DAsset.h256 * a buffer or memory-map it. For small files it's probably best to
261 FileMap* mMap; // for memory map
264 const void* ensureAlignment(FileMap* map);
/frameworks/base/media/java/android/media/tv/
H A DTvInputInfo.java704 * Returns a map of TV input ID/custom label pairs set by the user in the settings.
707 * @param userId The user ID for the stored hidden input map
714 Map<String, String> map = new HashMap<>();
716 return map;
721 map.put(Uri.decode(pair[0]), Uri.decode(pair[1]));
723 return map;
754 * Stores a map of TV input ID/custom label set by user. This is expected to be
758 * @param customLabels A map of TV input ID/custom label pairs
759 * @param userId The user ID for the stored hidden input map
/frameworks/base/native/android/
H A Dsensor.cpp43 std::map<String16, SensorManager*> android::SensorManager::sPackageInstances;
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt37 fun String.stripNonJava() = this.split("[^a-zA-Z0-9]".toRegex()).map{ it.trim() }.joinToCamelCaseAsVar()
361 includeMap.get(it).map {
366 includeMap.get(it).map {
371 includeMap.get(it).map {
507 val flagCheck = 0.rangeTo(mDirtyFlags.buckets.size() - 1).map {
827 }.map { it.getOther() }
829 tab ("if ( ${nullables.map { "${it.executePendingLocalName} != null" }.joinToString(" && ")}) {") {
844 .map { it.getDependant() }
900 val implements = expr.getListenerTypes().filter{ it.isInterface() }.map {
923 parameterTypes.withIndex().map {
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapEventReport.java17 package android.bluetooth.client.map;
H A DBluetoothMnsService.java17 package android.bluetooth.client.map;
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexAppParameters.java17 package android.bluetooth.client.map.utils;

Completed in 814 milliseconds

1234567891011