Home
last modified time | relevance | path

Searched refs:flat (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/data/keyboards/
DVendor_045e_Product_028e.kl32 # The reported value for flat is 128 out of a range from -32767 to 32768, which is absurd.
33 # This confuses applications that rely on the flat value because the joystick actually
34 # settles in a flat range of +/- 4096 or so.
35 axis 0x00 X flat 4096
36 axis 0x01 Y flat 4096
37 axis 0x03 Z flat 4096
38 axis 0x04 RZ flat 4096
/frameworks/base/libs/binder/
DParcel.cpp146 const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) in finish_flatten_binder() argument
148 return out->writeObject(flat, false); in finish_flatten_binder()
231 BpBinder* proxy, const flat_binder_object& flat, const Parcel& in) in finish_unflatten_binder() argument
239 const flat_binder_object* flat = in.readObject(false); in unflatten_binder() local
241 if (flat) { in unflatten_binder()
242 switch (flat->type) { in unflatten_binder()
244 *out = static_cast<IBinder*>(flat->cookie); in unflatten_binder()
245 return finish_unflatten_binder(NULL, *flat, in); in unflatten_binder()
247 *out = proc->getStrongProxyForHandle(flat->handle); in unflatten_binder()
249 static_cast<BpBinder*>(out->get()), *flat, in); in unflatten_binder()
[all …]
/frameworks/base/core/java/android/view/
DInputDevice.java426 float min, float max, float flat, float fuzz) { in addMotionRange() argument
427 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz)); in addMotionRange()
443 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz) { in MotionRange() argument
448 mFlat = flat; in MotionRange()
/frameworks/base/media/libstagefright/codecs/mp3dec/include/
Dpvmp3decoder_api.h81 flat = 0, enumerator
/frameworks/base/services/java/com/android/server/
DPackageManagerBackupAgent.java323 byte[] flat = sig.toByteArray(); in writeSignatureArray()
324 out.writeInt(flat.length); in writeSignatureArray()
325 out.write(flat); in writeSignatureArray()
/frameworks/base/include/binder/
DParcel.h289 const flat_binder_object& flat, sp<IBinder>* out);
291 const flat_binder_object& flat, wp<IBinder>* out);
/frameworks/base/services/input/
DEventHub.h65 int32_t flat; // center flat position, eg. flat == 8 means center is between -8 and 8 member
73 flat = 0; in clear()
DInputReader.cpp884 name, range.source, range.min, range.max, range.flat, range.fuzz); in dump()
1721 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo()
2753 mOrientedRanges.touchMajor.flat = 0; in configureSurface()
2763 mOrientedRanges.toolMajor.flat = 0; in configureSurface()
2773 mOrientedRanges.size.flat = 0; in configureSurface()
2796 mOrientedRanges.pressure.flat = 0; in configureSurface()
2819 mOrientedRanges.tilt.flat = 0; in configureSurface()
2833 mOrientedRanges.orientation.flat = 0; in configureSurface()
2853 mOrientedRanges.orientation.flat = 0; in configureSurface()
2877 mOrientedRanges.distance.flat = 0; in configureSurface()
[all …]
DInputReader.h1589 float flat; // normalized flat region size member
1601 float min, float max, float flat, float fuzz) { in initialize()
1611 this->flat = flat; in initialize()
DEventHub.cpp258 outAxisInfo->flat = info.flat; in getAbsoluteAxisInfo()
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dicon_design_menu.jd37 when they press the Menu button. They are drawn in a flat-front perspective and
179 <p>Menu icons are flat, pictured face on, and greyscale. A slight deboss and
248 flat-front perspective. Elements in a menu icon must not be visualized in 3D or
294 <p>Menu icons are flat and pictured face on. A slight deboss and some other
Dicon_design_dialog.jd123 <p>Dialog icons are flat and pictured face-on. In order to stand out against a
Dicon_design_list.jd121 <p>List view icons are flat and pictured face-on with an inner shadow. Built up
Dicon_design_action_bar.jd116 <p>Action Bar icons are flat, pictured face on, and generally greyscale, depending on the
Dicon_design_status_bar.jd177 <p>Status bar icons are flat, pictured face on, and must be white on a transparent background.</p>
332 <p>Status bar icons are flat, matte, and pictured face-on.</p>
Dicon_design_launcher_archive.jd294 <p>Launcher icons are flat and the perspective is straight-on, rather than at an
348 <li>Antique, over-complicated, glossy, flat vector</li>
Dicon_design_tab.jd222 <p>Tab icons are flat, matte, and pictured face-on.</p>
/frameworks/base/include/ui/
DInput.h809 float flat; member
823 float min, float max, float flat, float fuzz);
/frameworks/base/media/libstagefright/codecs/mp3dec/
DSoftMP3.cpp111 mConfig->equalizerType = flat; in initDecoder()
/frameworks/base/opengl/tests/angeles/
DREADME.txt15 flat shaded with three different lights.
/frameworks/base/media/libstagefright/codecs/mp3dec/src/
Dpvmp3_equalizer.cpp330 if (equalizerType == flat) in pvmp3_equalizer()
/frameworks/base/libs/ui/
DInput.cpp1214 float flat, float fuzz) { in addMotionRange() argument
1215 MotionRange range = { axis, source, min, max, flat, fuzz }; in addMotionRange()
/frameworks/base/services/input/tests/
DInputReader_test.cpp338 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) { in addAbsoluteAxis() argument
345 info.flat = flat; in addAbsoluteAxis()
1454 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) { in assertMotionRange() argument
1461 ASSERT_NEAR(flat, range->flat, EPSILON) << "Axis: " << axis << " Source: " << source; in assertMotionRange()
/frameworks/base/services/jni/
Dcom_android_server_InputManager.cpp1243 range.axis, range.source, range.min, range.max, range.flat, range.fuzz); in android_server_InputManager_nativeGetInputDevice()
/frameworks/base/services/java/com/android/server/am/
DActivityManagerService.java8394 String flat = comp.flattenToString(); in match() local
8396 if (flat.contains(strings.get(i))) { in match()

12