Searched refs:flat (Results 1 - 18 of 18) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/include/
H A Dpvmp3decoder_api.h81 flat = 0, enumerator in enum:__anon495
/frameworks/native/include/input/
H A DInputDevice.h70 float flat; member in struct:android::InputDeviceInfo::MotionRange
95 float min, float max, float flat, float fuzz, float resolution);
/frameworks/native/libs/binder/
H A DParcel.cpp237 const sp<IBinder>& /*binder*/, const flat_binder_object& flat, Parcel* out)
239 return out->writeObject(flat, false);
324 BpBinder* /*proxy*/, const flat_binder_object& /*flat*/,
333 const flat_binder_object* flat = in.readObject(false); local
335 if (flat) {
336 switch (flat->type) {
338 *out = reinterpret_cast<IBinder*>(flat->cookie);
339 return finish_unflatten_binder(NULL, *flat, in);
341 *out = proc->getStrongProxyForHandle(flat->handle);
343 static_cast<BpBinder*>(out->get()), *flat, i
236 finish_flatten_binder( const sp<IBinder>& , const flat_binder_object& flat, Parcel* out) argument
352 const flat_binder_object* flat = in.readObject(false); local
568 flat_binder_object* flat local
1988 const flat_binder_object* flat = readObject(true); local
2166 const flat_binder_object* flat local
2237 const flat_binder_object* flat local
2258 const flat_binder_object* flat local
2272 const flat_binder_object* flat local
2459 const flat_binder_object* flat local
2569 const flat_binder_object* flat local
[all...]
/frameworks/native/libs/input/
H A DInputDevice.cpp179 float flat, float fuzz, float resolution) {
180 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
178 addMotionRange(int32_t axis, uint32_t source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/av/media/libstagefright/codecs/mp3dec/test/
H A Dmp3dec_test.cpp54 config.equalizerType = flat;
/frameworks/base/core/java/android/view/
H A DInputDevice.java731 float min, float max, float flat, float fuzz, float resolution) {
732 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution));
809 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, argument
815 mFlat = flat;
874 * Gets the extent of the center flat position with respect to this axis.
876 * For example, a flat value of 8 means that the center position is between -8 and +8.
879 * @return The extent of the center flat position.
987 description.append(" flat=").append(range.mFlat);
730 addMotionRange(int axis, int source, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/base/core/jni/
H A Dandroid_view_InputDevice.cpp75 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java1655 String flat = SystemProperties.get(PROP_WALLPAPER_COMPONENT);
1656 if (!TextUtils.isEmpty(flat)) {
1657 final ComponentName cn = ComponentName.unflattenFromString(flat);
1663 flat = context.getString(com.android.internal.R.string.default_wallpaper_component);
1664 if (!TextUtils.isEmpty(flat)) {
1665 final ComponentName cn = ComponentName.unflattenFromString(flat);
/frameworks/native/services/inputflinger/
H A DEventHub.h86 int32_t flat; // center flat position, eg. flat == 8 means center is between -8 and 8 member in struct:android::RawAbsoluteAxisInfo
94 flat = 0;
H A DInputReader.cpp989 "min=%0.3f, max=%0.3f, flat=%0.3f, fuzz=%0.3f, resolution=%0.3f\n",
990 name, range.source, range.min, range.max, range.flat, range.fuzz,
1934 dump.appendFormat(INDENT4 "%s: min=%d, max=%d, flat=%d, fuzz=%d, resolution=%d\n",
1935 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution);
2938 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_1, mSource, x.min, x.max, x.flat,
2940 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_2, mSource, y.min, y.max, y.flat,
2942 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_3, mSource, x.min, x.max, x.flat,
2944 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_4, mSource, y.min, y.max, y.flat,
3437 mOrientedRanges.touchMajor.flat = 0;
3448 mOrientedRanges.toolMajor.flat
[all...]
H A DInputReader.h1975 float flat; // normalized flat region size member in struct:android::JoystickInputMapper::Axis
1988 float min, float max, float flat, float fuzz, float resolution) {
1998 this->flat = flat;
1985 initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, bool explicitlyMapped, float scale, float offset, float highScale, float highOffset, float min, float max, float flat, float fuzz, float resolution) argument
H A DEventHub.cpp301 outAxisInfo->flat = info.flat;
/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp113 mConfig->equalizerType = flat;
/frameworks/base/services/core/java/com/android/server/vr/
H A DVrManagerService.java786 String flat = Settings.Secure.getStringForUser(resolver,
790 if (flat != null) {
791 String[] allowed = flat.split(":");
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_equalizer.cpp330 if (equalizerType == flat)
/frameworks/native/include/binder/
H A DParcel.h790 const flat_binder_object& flat, sp<IBinder>* out);
792 const flat_binder_object& flat, wp<IBinder>* out);
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp377 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) {
384 info.flat = flat;
1453 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) {
1460 ASSERT_NEAR(flat, range->flat, EPSILON) << "Axis: " << axis << " Source: " << source;
376 addAbsoluteAxis(int32_t deviceId, int axis, int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) argument
1452 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java15199 String flat = comp.flattenToString();
15201 if (flat.contains(strings.get(i))) {

Completed in 1200 milliseconds