/frameworks/base/media/java/android/media/ |
D | FaceDetector.java | 139 public int findFaces(Bitmap bitmap, Face[] faces) in findFaces() argument 148 if (faces.length < mMaxFaces) { in findFaces() 157 if (faces[i] == null) in findFaces() 158 faces[i] = new Face(); in findFaces() 159 fft_get_face(faces[i], i); in findFaces()
|
/frameworks/rs/cpp/ |
D | Type.cpp | 31 uint32_t faces = 1; in calcElementCount() local 33 faces = 6; in calcElementCount() 45 uint32_t count = x * y * z * faces; in calcElementCount() 57 count += x * y * z * faces; in calcElementCount()
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Type.java | 145 int faces = 1; in calcElementCount() local 147 faces = 6; in calcElementCount() 159 int count = x * y * z * faces; in calcElementCount() 172 count += x * y * z * faces; in calcElementCount()
|
D | RenderScript.java | 170 …native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int y… in rsnTypeCreate() argument 171 … synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { in nTypeCreate() argument 173 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv); in nTypeCreate()
|
/frameworks/av/services/camera/libcameraservice/camera2/ |
D | FrameProcessor.cpp | 81 Vector<camera_face_t> faces; in processFaceDetect() local 135 faces.setCapacity(metadata.number_of_faces); in processFaceDetect() 176 faces.push_back(face); in processFaceDetect() 179 metadata.faces = faces.editArray(); in processFaceDetect()
|
/frameworks/base/graphics/java/android/renderscript/ |
D | Type.java | 154 int faces = 1; in calcElementCount() local 156 faces = 6; in calcElementCount() 168 int count = x * y * z * faces; in calcElementCount() 181 count += x * y * z * faces; in calcElementCount()
|
D | RenderScript.java | 276 …native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int y… in rsnTypeCreate() argument 277 … synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { in nTypeCreate() argument 279 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv); in nTypeCreate()
|
/frameworks/rs/ |
D | rsType.cpp | 63 rsAssert(mHal.state.faces); in getOffsetForFace() 110 if (mHal.state.faces) { in compute() 183 mHal.state.faces); in dumpLOGV() 202 stream->addU8((uint8_t)(mHal.state.faces ? 1 : 0)); in serialize() 225 uint8_t faces = stream->loadU8(); in createFromStream() local 226 Type *type = Type::getType(rsc, elem, x, y, z, lod != 0, faces !=0, 0); in createFromStream() 279 nt->mHal.state.faces = dimFaces; in getTypeRef() 340 uint32_t dimY, uint32_t dimZ, bool mips, bool faces, uint32_t yuv) { in rsi_TypeCreate() argument 343 return Type::getType(rsc, e, dimX, dimY, dimZ, mips, faces, yuv); in rsi_TypeCreate()
|
D | rsType.h | 53 bool faces; member 71 bool getDimFaces() const {return mHal.state.faces;} in getDimFaces()
|
D | rs.spec | 41 param bool faces
|
/frameworks/av/camera/ |
D | ICameraClient.cpp | 64 data.write(metadata->faces, sizeof(camera_face_t) * metadata->number_of_faces); in dataCallback() 108 metadata->faces = (camera_face_t *) data.readInplace( in onTransact()
|
/frameworks/compile/libbcc/lib/Renderscript/runtime/ |
D | rs_structs.h | 224 bool faces; member
|
/frameworks/base/docs/html/training/graphics/opengl/ |
D | shapes.jd | 41 basics of defining a shape, shape faces, as well as defining a triangle and a square.</p> 95 face feature. For more information about faces and culling, see the <a 96 href="{@docRoot}guide/topics/graphics/opengl.html#faces-winding">OpenGL ES</a> developer guide.</p>
|
D | index.jd | 60 <dd>Learn how to define shapes and why you need to know about faces and winding.</dd>
|
/frameworks/base/core/jni/ |
D | android_hardware_Camera.cpp | 345 env->SetIntField(rect, fields.rect_left, metadata->faces[i].rect[0]); in postMetadata() 346 env->SetIntField(rect, fields.rect_top, metadata->faces[i].rect[1]); in postMetadata() 347 env->SetIntField(rect, fields.rect_right, metadata->faces[i].rect[2]); in postMetadata() 348 env->SetIntField(rect, fields.rect_bottom, metadata->faces[i].rect[3]); in postMetadata() 351 env->SetIntField(face, fields.face_score, metadata->faces[i].score); in postMetadata()
|
/frameworks/native/opengl/tests/angeles/ |
D | README.txt | 21 although it still contains over 60000 faces.
|
/frameworks/support/v8/renderscript/jni/ |
D | android_renderscript_RenderScript.cpp | 329 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nTypeCreate() argument 332 con, eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate() 334 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
|
/frameworks/base/docs/html/guide/topics/media/ |
D | camera.jd | 1114 <td>Identify human faces within a picture and use them for focus, metering and white 1360 <p>For pictures that include people, faces are usually the most important part of the picture, and 1362 (API Level 14) framework provides APIs for identifying faces and calculating picture settings using 1391 public void onFaceDetection(Face[] faces, Camera camera) { 1392 if (faces.length > 0){ 1393 Log.d("FaceDetection", "face detected: "+ faces.length + 1394 " Face 1 Location X: " + faces[0].rect.centerX() + 1395 "Y: " + faces[0].rect.centerY() );
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | opengl.jd | 22 <li><a href="#faces-winding">Shape Faces and Winding</li> 379 <h2 id="faces-winding">Shape Faces and Winding</h2> 405 // specify which faces to not draw
|
/frameworks/base/graphics/jni/ |
D | android_renderscript_RenderScript.cpp | 430 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nTypeCreate() argument 433 con, eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate() 435 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate()
|
/frameworks/base/docs/html/about/versions/ |
D | android-4.0-highlights.jd | 390 detection</strong> locates faces in the frame and automatically sets focus. For 606 option that lets users unlock their devices with their faces. It takes advantage 609 unlocking the device. Users just hold their devices in front of their faces to 826 service identifies and tracks faces in a preview and returns their screen
|
D | android-4.0.jd | 417 <p>The {@link android.hardware.Camera} class now includes APIs for detecting faces and controlling 427 <p>To detect faces in your camera application, you must register a {@link 430 your camera surface and start detecting faces by calling {@link 433 <p>When the system detects one or more faces in the camera scene, it calls the {@link 445 <li>A unique ID so you can track multiple faces</li>
|
/frameworks/rs/scriptc/ |
D | rs_types.rsh | 391 * \brief Enum for selecting cube map faces
|
/frameworks/base/core/java/android/hardware/ |
D | Camera.java | 1271 void onFaceDetection(Face[] faces, Camera camera); in onFaceDetection() argument
|
/frameworks/base/docs/html/tools/adk/ |
D | adk2.jd | 108 <li>Open up the ADK by gently squeezing the two widest faces of the enclosure.</li>
|