Home
last modified time | relevance | path

Searched refs:mapper (Results 1 – 13 of 13) sorted by relevance

/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp1011 FakeInputMapper* mapper = new FakeInputMapper(device, sources); in addDeviceWithFakeInputMapper() local
1012 device->addMapper(mapper); in addDeviceWithFakeInputMapper()
1015 return mapper; in addDeviceWithFakeInputMapper()
1046 FakeInputMapper* mapper = NULL; in TEST_F() local
1047 ASSERT_NO_FATAL_FAILURE(mapper = addDeviceWithFakeInputMapper(1, 0, String8("fake"), in TEST_F()
1049 mapper->setKeyCodeState(AKEYCODE_A, AKEY_STATE_DOWN); in TEST_F()
1073 FakeInputMapper* mapper = NULL; in TEST_F() local
1074 ASSERT_NO_FATAL_FAILURE(mapper = addDeviceWithFakeInputMapper(1, 0, String8("fake"), in TEST_F()
1076 mapper->setScanCodeState(KEY_A, AKEY_STATE_DOWN); in TEST_F()
1100 FakeInputMapper* mapper = NULL; in TEST_F() local
[all …]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DCursorObjectAdapter.java104 public final void setMapper(CursorMapper mapper) { in setMapper() argument
105 boolean changed = mMapper != mapper; in setMapper()
106 mMapper = mapper; in setMapper()
/frameworks/base/libs/hwui/
DAssetAtlas.h97 Texture* texture, const UvMapper& mapper, const AssetAtlas& atlas): in Entry()
99 texture(texture), uvMapper(mapper), atlas(atlas) { in Entry()
DPatch.cpp52 UvMapper mapper; in createMesh() local
53 return createMesh(bitmapWidth, bitmapHeight, width, height, mapper, patch); in createMesh()
57 float width, float height, const UvMapper& mapper, const Res_png_9patch* patch) { in createMesh() argument
127 mUvMapper = mapper; in createMesh()
DAssetAtlas.cpp129 const UvMapper mapper( in createEntries() local
139 Entry* entry = new Entry(bitmap, x, y, rotated, texture, mapper, *this); in createEntries()
DPatch.h61 float width, float height, const UvMapper& mapper, const Res_png_9patch* patch);
DOpenGLRenderer.cpp2114 const UvMapper& mapper(getMapper(texture));
2125 mapper.map(u1, v1, u2, v2);
/frameworks/av/media/libstagefright/colorconversion/
DSoftwareRenderer.cpp195 GraphicBufferMapper &mapper = GraphicBufferMapper::get(); in render() local
200 CHECK_EQ(0, mapper.lock( in render()
276 CHECK_EQ(0, mapper.unlock(buf->handle)); in render()
/frameworks/rs/driver/
DrsdAllocation.cpp518 GraphicBufferMapper &mapper = GraphicBufferMapper::get(); in rsdAllocationDestroy() local
519 mapper.unlock(drv->wndBuffer->handle); in rsdAllocationDestroy()
656 GraphicBufferMapper &mapper = GraphicBufferMapper::get(); in IoGetBuffer() local
660 mapper.lock(drv->wndBuffer->handle, in IoGetBuffer()
689 GraphicBufferMapper &mapper = GraphicBufferMapper::get(); in rsdAllocationSetSurface() local
690 mapper.unlock(drv->wndBuffer->handle); in rsdAllocationSetSurface()
768 GraphicBufferMapper &mapper = GraphicBufferMapper::get(); in rsdAllocationIoSend() local
769 mapper.unlock(drv->wndBuffer->handle); in rsdAllocationIoSend()
/frameworks/base/tools/obbtool/
Dmkobb.sh235 loop_dev=/dev/mapper/${unique_dm_name}
/frameworks/native/services/inputflinger/
DInputReader.cpp905 InputMapper* mapper = mMappers[i]; in dump() local
906 mapper->dump(dump); in dump()
910 void InputDevice::addMapper(InputMapper* mapper) { in addMapper() argument
911 mMappers.add(mapper); in addMapper()
944 InputMapper* mapper = mMappers[i]; in configure() local
945 mapper->configure(when, config, changes); in configure()
946 mSources |= mapper->getSources(); in configure()
954 InputMapper* mapper = mMappers[i]; in reset() local
955 mapper->reset(when); in reset()
994 InputMapper* mapper = mMappers[i]; in process() local
[all …]
DInputReader.h561 void addMapper(InputMapper* mapper);
/frameworks/base/core/java/android/view/
DViewDebug.java1165 final IntToString mapper = mapping[j]; in exportMethods() local
1166 if (mapper.from() == intValue) { in exportMethods()
1167 methodValue = mapper.to(); in exportMethods()