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

<<111213

/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;
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp35 #include <map>
410 std::map<std::string, unsigned> SectionMap;
411 std::map<std::string, unsigned> GCMap;
/frameworks/native/opengl/libagl/
H A Degl.cpp2033 extention_map_t const * const map = gExtentionMap; local
2035 if (!strcmp(procname, map[i].name)) {
2036 return map[i].address;
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java937 Bundle map, boolean sync, int sendingUser, int processState) throws RemoteException {
945 data.writeBundle(map);
935 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
H A DActivityManagerNative.java579 Bundle map = data.readBundle();
582 activityStopped(token, map, persistentState, description);
3486 int resultCode, String resultData, Bundle map,
3499 data.writeBundle(map);
3527 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, argument
3536 data.writeBundle(map);
3484 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java857 @NonNull final ArrayMap<String, ArraySet<String>> map) {
861 for (ArrayMap.Entry<String, ArraySet<String>> entry : map.entrySet()) {
856 buildInputMethodsAndSubtypesString( @onNull final ArrayMap<String, ArraySet<String>> map) argument
/frameworks/base/libs/hwui/
H A DBakedOpDispatcher.cpp59 entry->uvMapper.map(texCoords);
472 mapper.map(u1, v1, u2, v2);
H A DFontRenderer.cpp290 uint8_t* cacheBuffer = cacheTexture->getPixelBuffer()->map();
H A DGlopBuilder.cpp124 uvMapper->map(uvs);
677 // Final step: populate program and map bounds into render target space
H A DDisplayListOp.h699 mEntry->uvMapper.map(texCoords);
H A DOpenGLRenderer.cpp902 // create LayerShader to map SaveLayer content into subsequent draw
1547 mapper.map(u1, v1, u2, v2);
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java497 // Keeps track of whether we've seen a character (in map if we've seen it)
499 // map is TRUE). Linked hashmap for consistent ordering.
/frameworks/base/include/androidfw/
H A DResourceTypes.h1394 * Extended form of a ResTable_entry for map entries, defining a parent map
1477 // supplied as additional entries in the map.
1481 // supplied as additional entries in the map.
1645 ResTable_map map; member in struct:android::ResTable::bag_entry
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp49 typedef std::map<Relocator::Type, ApplyFunctionEntry> ApplyFunctionMap;
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java150 mMappedByteBuffer = f.getChannel().map(MapMode.READ_ONLY, 0, mFileLen = f.length());
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java1306 final SparseArray<WallpaperData> map =
1309 WallpaperData wallpaper = map.get(userId);
1833 * Sometimes it is expected the wallpaper map may not have a user's data. E.g. This could
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java432 private static <K, V> void removeFromMap(Map<K, V> map, List<K> keys) { argument
434 map.remove(key);
/frameworks/base/libs/androidfw/
H A DLocaleDataTables.cpp1694 const std::unordered_map<uint32_t, uint32_t>* map; member in struct:__anon1018
/frameworks/base/tools/aapt2/link/
H A DLink.cpp430 std::map<std::pair<ConfigDescription, StringPiece16>, FileOperation> configSortedFiles;
477 // garbage in the map.
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java1040 ByteBuffer buf = file.getChannel().map(MapMode.READ_WRITE, 0, exifSize);
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.cpp1182 typedef std::map<clang::SourceLocation, clang::Stmt*, decltype(OccursBefore)> DMap;
/frameworks/native/services/inputflinger/
H A DInputReader.cpp119 const int32_t map[][4], size_t mapSize) {
122 if (value == map[i][0]) {
123 return map[i][orientation];
4678 // Walk through the the active pointers and map device coordinates onto
118 rotateValueUsingRotationMap(int32_t value, int32_t orientation, const int32_t map[][4], size_t mapSize) argument
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp1112 std::map<int,int> pidToPriorityMap;
1412 // Update UID map - this is used in the torch status changed callbacks, so must be done

Completed in 3481 milliseconds

<<111213