Searched refs:map (Results 276 - 300 of 332) sorted by relevance

<<11121314

/frameworks/av/media/libmedia/
H A DIMediaSource.cpp262 std::map<uint64_t, sp<IMemory>> mIndexToMemory;
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp143 sAudioFormatToPcmEncoding.map(pcmEncoding, &audioFormat);
148 ALOGE("Couldn't map mime type \"%s\" to a valid AudioSystem::audio_format", mime);
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java273 private static <T> void addKeys(ArraySet<T> set, ArrayMap<T, ?> map) { argument
274 if (map != null) {
275 for (int i = 0; i < map.size(); i++) {
276 set.add(map.keyAt(i));
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java306 fontBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, fontSize);
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp521 static jobject KeyedVectorToHashMap (JNIEnv *env, KeyedVector<String8, String8> const &map) { argument
524 for (size_t i = 0; i < map.size(); ++i) {
525 jstring jkey = env->NewStringUTF(map.keyAt(i).string());
526 jstring jvalue = env->NewStringUTF(map.valueAt(i).string());
H A Dandroid_media_Utils.cpp282 JNIEnv *env, const sp<AMessage> &msg, jobject *map) {
416 *map = hashMap;
677 // only map until last pixel
693 // only map until last pixel
281 ConvertMessageToMap( JNIEnv *env, const sp<AMessage> &msg, jobject *map) argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp249 virtual void loadAdditionalMouseResources(std::map<int32_t, SpriteIcon>* outResources,
250 std::map<int32_t, PointerAnimation>* outAnimationResources);
1072 void NativeInputManager::loadAdditionalMouseResources(std::map<int32_t, SpriteIcon>* outResources,
1073 std::map<int32_t, PointerAnimation>* outAnimationResources) {
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp19 #include <map>
/frameworks/native/services/inputflinger/
H A DEventHub.cpp426 // check the possible scan codes identified by the layout map against the
427 // map of codes actually emitted by the driver
449 // Check the key character map first.
571 const sp<KeyCharacterMap>& map) {
575 if (map != device->overlayKeyMap) {
576 device->overlayKeyMap = map;
578 device->keyMap.keyCharacterMap, map);
1267 // Load the key map.
1439 // The virtual key map is supplied by the kernel as a system board property file.
570 setKeyboardLayoutOverlay(int32_t deviceId, const sp<KeyCharacterMap>& map) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .JsonSerializationContextDefault contextImpl protected static final java.util.Map constructMapType (java.lang.reflect.Type, com. ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .JsonSerializationContextDefault contextImpl protected static final java.util.Map constructMapType (java.lang.reflect.Type, com. ...
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp32 #include <map>
346 typedef std::map<float, SkPoint> PointMap;
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.cpp763 const sp<GraphicBuffer>& buffer, int64_t* map, size_t mapSize) {
764 thread.eglManager().setTextureAtlas(buffer, map, mapSize);
762 setTextureAtlas(RenderThread& thread, const sp<GraphicBuffer>& buffer, int64_t* map, size_t mapSize) argument
/frameworks/rs/
H A DAndroid.mk253 LOCAL_LDFLAGS += -Wl,--version-script,${LOCAL_PATH}/libRS.map
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java361 HashMap<String, Action> map = new HashMap<String, Action>();
369 map.put(a.getUniqueKey(), a);
379 if (map.containsKey(key) && mergeBehavior == Action.MERGE_REPLACE) {
380 mActions.remove(map.get(key));
381 map.remove(key);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DBaseShortcutManagerTest.java1030 LinkedHashMap<ComponentName, Integer> map = mActivityMetadataResId.get(packageName);
1031 if (map == null) {
1032 map = new LinkedHashMap<>();
1033 mActivityMetadataResId.put(packageName, map);
1035 map.put(activity, resId);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp2798 const std::map<String8, SourcePos>& configSrcMap = nameIter.second;
3803 ResTable_map map; local
3804 map.name.ident = htodl(it.bagKeyId);
3805 map.value.size = htods(it.parsedValue.size);
3806 map.value.dataType = it.parsedValue.dataType;
3807 map.value.res0 = it.parsedValue.res0;
3808 map.value.data = htodl(it.parsedValue.data);
3809 err = data->writeData(&map, sizeof(map));
3814 amt += sizeof(map);
[all...]
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp247 const extention_map_t* map, size_t n))() {
249 if (!strcmp(name, map[i].name)) {
250 return map[i].address;
246 findProcAddress(const char* name, const extention_map_t* map, size_t n) argument
/frameworks/av/include/media/stagefright/
H A DACodec.h113 static status_t getOMXChannelMapping(size_t numChannels, OMX_AUDIO_CHANNELTYPE map[]);
/frameworks/base/libs/hwui/font/
H A DFont.cpp221 const uint8_t* cacheBuffer = pixelBuffer->map();
/frameworks/base/tools/aapt2/flatten/
H A DTableFlattener.cpp443 std::map<ConfigDescription, std::vector<FlatEntry>> configToEntryListMap;
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h63 #include <map>
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java784 Log.w(TAG, "getLensShadingMap - Lens shading map size was null.");
788 LensShadingMap map = new LensShadingMap(lsmArray, s.getHeight(), s.getWidth());
789 return map;
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp33 #include <map>
399 std::map<std::string, unsigned> SectionMap;
400 std::map<std::string, unsigned> GCMap;
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp33 #include <map>
397 std::map<std::string, unsigned> SectionMap;
398 std::map<std::string, unsigned> GCMap;

Completed in 3097 milliseconds

<<11121314