Home
last modified time | relevance | path

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

/frameworks/base/libs/binder/
DParcel.cpp141 const sp<IBinder>& binder, const flat_binder_object& flat, Parcel* out) in finish_flatten_binder() argument
143 return out->writeObject(flat, false); in finish_flatten_binder()
226 BpBinder* proxy, const flat_binder_object& flat, const Parcel& in) in finish_unflatten_binder() argument
234 const flat_binder_object* flat = in.readObject(false); in unflatten_binder() local
236 if (flat) { in unflatten_binder()
237 switch (flat->type) { in unflatten_binder()
239 *out = static_cast<IBinder*>(flat->cookie); in unflatten_binder()
240 return finish_unflatten_binder(NULL, *flat, in); in unflatten_binder()
242 *out = proc->getStrongProxyForHandle(flat->handle); in unflatten_binder()
244 static_cast<BpBinder*>(out->get()), *flat, in); in unflatten_binder()
[all …]
/frameworks/base/core/java/android/view/
DInputDevice.java329 private void addMotionRange(int rangeType, float min, float max, float flat, float fuzz) { in addMotionRange() argument
331 MotionRange range = new MotionRange(min, max, flat, fuzz); in addMotionRange()
346 private MotionRange(float min, float max, float flat, float fuzz) { in MotionRange() argument
349 mFlat = flat; in MotionRange()
/frameworks/base/media/libstagefright/codecs/mp3dec/include/
Dpvmp3decoder_api.h81 flat = 0, enumerator
/frameworks/base/include/ui/
DEventHub.h81 int32_t flat; // center flat position, eg. flat == 8 means center is between -8 and 8 member
90 flat = 0; in clear()
DInput.h467 float flat; member
480 void addMotionRange(int32_t rangeType, float min, float max, float flat, float fuzz);
/frameworks/base/libs/ui/
DInput.cpp206 float flat, float fuzz) { in addMotionRange() argument
207 MotionRange range = { min, max, flat, fuzz }; in addMotionRange()
DInputReader.cpp645 name, range->min, range->max, range->flat, range->fuzz); in dumpMotionRange()
1392 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz); in dumpAxisInfo()
1471 mLocked.orientedRanges.touchMajor.flat = 0; in configureSurfaceLocked()
1519 mLocked.orientedRanges.toolMajor.flat = 0; in configureSurfaceLocked()
1552 mLocked.orientedRanges.pressure.flat = 0; in configureSurfaceLocked()
1568 mLocked.orientedRanges.size.flat = 0; in configureSurfaceLocked()
1584 mLocked.orientedRanges.orientation.flat = 0; in configureSurfaceLocked()
1615 mLocked.orientedRanges.x.flat = 0; in configureSurfaceLocked()
1620 mLocked.orientedRanges.y.flat = 0; in configureSurfaceLocked()
DEventHub.cpp168 outAxisInfo->flat = info.flat; in getAbsoluteAxisInfo()
/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.h240 const flat_binder_object& flat, sp<IBinder>* out);
242 const flat_binder_object& flat, wp<IBinder>* out);
/frameworks/base/libs/rs/java/Film/res/raw/
Dfilmimage.c5 #pragma stateRaster(flat)
/frameworks/base/media/libstagefright/codecs/mp3dec/
DMP3Decoder.cpp76 mConfig->equalizerType = flat; in start()
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dicon_design_menu.jd36 when they press the Menu button. They are drawn in a flat-front perspective and
170 <p>Menu icons are flat, pictured face on, and greyscale. A slight deboss and
239 flat-front perspective. Elements in a menu icon must not be visualized in 3D or
285 <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_launcher.jd290 <p>Launcher icons are flat and the perspective is straight-on, rather than at an
344 <li>Antique, over-complicated, glossy, flat vector</li>
Dicon_design_status_bar.jd160 <p>Status bar icons are flat, matte, and pictured face-on.</p>
Dicon_design_tab.jd222 <p>Tab icons are flat, matte, and pictured face-on.</p>
/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/tests/
DInputReader_test.cpp416 int32_t minValue, int32_t maxValue, int flat, int fuzz) { in addAxis() argument
423 info.flat = flat; in addAxis()
1332 int32_t rangeType, float min, float max, float flat, float fuzz) { in assertMotionRange() argument
1337 ASSERT_NEAR(flat, range->flat, EPSILON) << "Range: " << rangeType; in assertMotionRange()
/frameworks/base/services/jni/
Dcom_android_server_InputManager.cpp1233 rangeType, range.min, range.max, range.flat, range.fuzz); in android_server_InputManager_nativeGetInputDevice()