Searched defs:face (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/minikin/libs/minikin/
H A DMinikinInternal.cpp38 hb_face_t* face = hb_font_get_face(font); local
39 hb_blob_t* blob = hb_face_reference_table(face, tag);
H A DHbFontCache.cpp105 hb_face_t* face; local
110 face = hb_face_create(blob, minikinFont->GetFontIndex());
113 hb_font_t* parent_font = hb_font_create(face);
116 unsigned int upem = hb_face_get_upem(face);
126 hb_face_destroy(face);
H A DLayout.cpp280 hb_face_t* face = hb_font_get_face(font); local
281 HbBlob cbdt(hb_face_reference_table(face, HB_TAG('C', 'B', 'D', 'T')));
302 int Layout::findFace(const FakedFont& face, LayoutContext* ctx) { argument
305 if (mFaces[ix].font == face.font) {
309 mFaces.push_back(face);
313 hb_font_t* font = getHbFontLocked(face.font);
/frameworks/rs/cpu_ref/
H A DrsCpuCoreRuntime.h35 uint32_t face; member in struct:RsLaunchDimensions
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.cpp136 ALOGE("%s: Camera %d: Unable to read face scores",
148 ALOGE("%s: Camera %d: Unable to read face landmarks",
157 ALOGE("%s: Camera %d: Unable to read face IDs",
190 camera_face_t face; local
192 face.rect[0] = l.mParameters.arrayXToNormalizedWithCrop(
194 face.rect[1] = l.mParameters.arrayYToNormalizedWithCrop(
196 face.rect[2] = l.mParameters.arrayXToNormalizedWithCrop(
198 face.rect[3] = l.mParameters.arrayYToNormalizedWithCrop(
201 face.score = faceScores[i];
203 face
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTypeface.cpp33 Typeface* face = Typeface::createRelative(family, (SkTypeface::Style)style); local
36 if (NULL == face) {
37 face = Typeface::createRelative(family, (SkTypeface::Style)(style ^ SkTypeface::kItalic));
39 for (int i = 0; NULL == face && i < 4; i++) {
40 face = Typeface::createRelative(family, (SkTypeface::Style)i);
42 return reinterpret_cast<jlong>(face);
70 Typeface* face = Typeface::createWithDifferentBaseWeight(family, weight); local
71 return reinterpret_cast<jlong>(face);
75 Typeface* face = reinterpret_cast<Typeface*>(faceHandle); local
76 delete face;
80 Typeface* face = reinterpret_cast<Typeface*>(faceHandle); local
85 Typeface* face = reinterpret_cast<Typeface*>(faceHandle); local
103 Typeface* face = reinterpret_cast<Typeface*>(faceHandle); local
108 Typeface* face = reinterpret_cast<Typeface*>(faceHandle); local
[all...]
H A DHarfBuzzNGFaceSkia.cpp141 hb_blob_t* harfbuzzSkiaReferenceTable(hb_face_t* face, hb_tag_t tag, void* userData) argument
166 hb_font_t* createFont(hb_face_t* face, SkPaint* paint, float sizeX, float sizeY) { argument
167 hb_font_t* font = hb_font_create(face);
/frameworks/base/libs/hwui/hwui/
H A DTypeface.cpp175 void Typeface::setDefault(Typeface* face) { argument
176 gDefaultTypeface = face;
/frameworks/base/media/java/android/media/
H A DFaceDetector.java33 * of a face in a bitmap.
36 /** The minimum confidence factor of good face recognition */
38 /** The x-axis Euler angle of a face. */
40 /** The y-axis Euler angle of a face. */
42 /** The z-axis Euler angle of a face. */
47 * certain what has been found is actually a face. A confidence
56 * face's mid-point
69 * Returns the face's pose. That is, the rotations around either
75 * @return the Euler angle of the of the face, for the given axis
127 * face foun
191 fft_get_face(Face face, int i) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DParameterUtils.java118 * then possible to convert to a more concrete type such as a metering rectangle or a face.
162 * Convert to a face; the rect is considered to be the bounds, and the weight
173 * @return a new face with the optional features set
188 * Convert to a face; the rect is considered to be the bounds, and the weight
196 * @return a new face without the optional features
900 * Convert an api1 face into an active-array based api2 face.
904 * @param face a non-{@code null} api1 face
908 * @return a non-{@code null} api2 face
912 convertFaceFromLegacy(Camera.Face face, Rect activeArray, ZoomData zoomData) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dlight.cpp93 c->lighting.colorMaterial.face = GL_FRONT_AND_BACK;
565 static void materialx(GLenum face, GLenum pname, GLfixed param, ogles_context_t* c) argument
567 if (ggl_unlikely(face != GL_FRONT_AND_BACK)) {
746 void glMaterialf(GLenum face, GLenum pname, GLfloat param) argument
749 materialx(face, pname, gglFloatToFixed(param), c);
752 void glMaterialx(GLenum face, GLenum pname, GLfixed param) argument
755 materialx(face, pname, param, c);
759 GLenum face, GLenum pname, const GLfloat *params)
762 if (ggl_unlikely(face != GL_FRONT_AND_BACK)) {
799 GLenum face, GLenu
758 glMaterialfv( GLenum face, GLenum pname, const GLfloat *params) argument
798 glMaterialxv( GLenum face, GLenum pname, const GLfixed *params) argument
[all...]
H A Dprimitives.cpp830 const GLenum face = (winding == c->cull.frontFace) ? GL_FRONT : GL_BACK; local
831 if (face == c->cull.cullFace)
/frameworks/base/core/java/android/text/
H A DHtml.java1140 String face = attributes.getValue("", "face");
1149 if (!TextUtils.isEmpty(face)) {
1150 start(text, new Font(face));
1278 public Font(String face) { argument
1279 mFace = face;
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp390 ALOGE("Couldn't allocate face metadata array");
395 jobject face = env->NewObject(mFaceClass, fields.face_constructor); local
396 env->SetObjectArrayElement(obj, i, face);
404 env->SetObjectField(face, fields.face_rect, rect);
405 env->SetIntField(face, fields.face_score, metadata->faces[i].score);
413 env->SetIntField(face, fields.face_id, id);
418 env->SetObjectField(face, fields.face_left_eye, leftEye);
424 env->SetObjectField(face, fields.face_right_eye, rightEye);
430 env->SetObjectField(face, fields.face_mouth, mouth);
434 env->DeleteLocalRef(face);
[all...]
H A Dandroid_opengl_GLES11.cpp1616 /* void glGetMaterialfv ( GLenum face, GLenum pname, GLfloat *params ) */
1619 (JNIEnv *_env, jobject _this, jint face, jint pname, jfloatArray params_ref, jint offset) {
1674 (GLenum)face,
1689 /* void glGetMaterialfv ( GLenum face, GLenum pname, GLfloat *params ) */
1692 (JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) {
1742 (GLenum)face,
1756 /* void glGetMaterialxv ( GLenum face, GLenum pname, GLfixed *params ) */
1759 (JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) {
1814 (GLenum)face,
1829 /* void glGetMaterialxv ( GLenum face, GLenu
1618 android_glGetMaterialfv__II_3FI(JNIEnv *_env, jobject _this, jint face, jint pname, jfloatArray params_ref, jint offset) argument
1691 android_glGetMaterialfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
1758 android_glGetMaterialxv__II_3II(JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) argument
1831 android_glGetMaterialxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
[all...]
H A Dandroid_opengl_GLES10.cpp2170 /* void glMaterialf ( GLenum face, GLenum pname, GLfloat param ) */
2173 (JNIEnv *_env, jobject _this, jint face, jint pname, jfloat param) {
2175 (GLenum)face,
2181 /* void glMaterialfv ( GLenum face, GLenum pname, const GLfloat *params ) */
2184 (JNIEnv *_env, jobject _this, jint face, jint pname, jfloatArray params_ref, jint offset) {
2239 (GLenum)face,
2254 /* void glMaterialfv ( GLenum face, GLenum pname, const GLfloat *params ) */
2257 (JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) {
2307 (GLenum)face,
2321 /* void glMaterialx ( GLenum face, GLenu
2172 android_glMaterialf__IIF(JNIEnv *_env, jobject _this, jint face, jint pname, jfloat param) argument
2183 android_glMaterialfv__II_3FI(JNIEnv *_env, jobject _this, jint face, jint pname, jfloatArray params_ref, jint offset) argument
2256 android_glMaterialfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
2323 android_glMaterialx__III(JNIEnv *_env, jobject _this, jint face, jint pname, jint param) argument
2334 android_glMaterialxv__II_3II(JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) argument
2407 android_glMaterialxv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
[all...]
H A Dandroid_opengl_GLES11Ext.cpp1466 /* void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params ) */
1469 (JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) {
1495 (GLenum)face,
1510 /* void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params ) */
1513 (JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) {
1534 (GLenum)face,
1982 /* void glMaterialxOES ( GLenum face, GLenum pname, GLfixed param ) */
1985 (JNIEnv *_env, jobject _this, jint face, jint pname, jint param) {
1987 (GLenum)face,
1993 /* void glMaterialxvOES ( GLenum face, GLenu
1468 android_glGetMaterialxvOES__II_3II(JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) argument
1512 android_glGetMaterialxvOES__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
1984 android_glMaterialxOES__III(JNIEnv *_env, jobject _this, jint face, jint pname, jint param) argument
1995 android_glMaterialxvOES__II_3II(JNIEnv *_env, jobject _this, jint face, jint pname, jintArray params_ref, jint offset) argument
2039 android_glMaterialxvOES__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint face, jint pname, jobject params_buf) argument
[all...]
/frameworks/rs/driver/
H A DrsdAllocation.cpp86 uint32_t lod, RsAllocationCubemapFace face) {
88 ptr += face * alloc->mHal.drvState.faceOffset;
98 RsAllocationCubemapFace face, uint32_t w, uint32_t h) {
107 t = gFaceOrder[face];
127 for (uint32_t face = 0; face < faceCount; face ++) {
129 const uint8_t *p = GetOffsetPtr(alloc, 0, 0, 0, lod, (RsAllocationCubemapFace)face);
133 t = gFaceOrder[face];
837 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
84 GetOffsetPtr(const android::renderscript::Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face) argument
96 Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h) argument
836 rsdAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
949 rsdAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
1132 mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
1150 mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
1168 mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
[all...]
/frameworks/rs/rsov/driver/
H A DrsovAllocation.cpp149 RsAllocationCubemapFace face) {
151 ptr += face * alloc->mHal.drvState.faceOffset;
159 void mip565(const Allocation *alloc, int lod, RsAllocationCubemapFace face) { argument
164 uint16_t *oPtr = (uint16_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
166 (uint16_t *)GetOffsetPtr(alloc, 0, 0, y * 2, lod, face);
168 (uint16_t *)GetOffsetPtr(alloc, 0, 0, y * 2 + 1, lod, face);
179 void mip8888(const Allocation *alloc, int lod, RsAllocationCubemapFace face) { argument
184 uint32_t *oPtr = (uint32_t *)GetOffsetPtr(alloc, 0, y, 0, lod + 1, face);
186 (uint32_t *)GetOffsetPtr(alloc, 0, y * 2, 0, lod, face);
188 (uint32_t *)GetOffsetPtr(alloc, 0, y * 2 + 1, 0, lod, face);
147 GetOffsetPtr(const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face) argument
199 mip8(const Allocation *alloc, int lod, RsAllocationCubemapFace face) argument
338 rsovAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
431 rsovAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES11.java392 // C function void glGetMaterialfv ( GLenum face, GLenum pname, GLfloat *params )
395 int face,
401 // C function void glGetMaterialfv ( GLenum face, GLenum pname, GLfloat *params )
404 int face,
409 // C function void glGetMaterialxv ( GLenum face, GLenum pname, GLfixed *params )
412 int face,
418 // C function void glGetMaterialxv ( GLenum face, GLenum pname, GLfixed *params )
421 int face,
394 glGetMaterialfv( int face, int pname, float[] params, int offset ) argument
403 glGetMaterialfv( int face, int pname, java.nio.FloatBuffer params ) argument
411 glGetMaterialxv( int face, int pname, int[] params, int offset ) argument
420 glGetMaterialxv( int face, int pname, java.nio.IntBuffer params ) argument
H A DGLES11Ext.java405 // C function void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params )
408 int face,
414 // C function void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params )
417 int face,
522 // C function void glMaterialxOES ( GLenum face, GLenum pname, GLfixed param )
525 int face,
530 // C function void glMaterialxvOES ( GLenum face, GLenum pname, const GLfixed *params )
533 int face,
539 // C function void glMaterialxvOES ( GLenum face, GLenum pname, const GLfixed *params )
542 int face,
407 glGetMaterialxvOES( int face, int pname, int[] params, int offset ) argument
416 glGetMaterialxvOES( int face, int pname, java.nio.IntBuffer params ) argument
524 glMaterialxOES( int face, int pname, int param ) argument
532 glMaterialxvOES( int face, int pname, int[] params, int offset ) argument
541 glMaterialxvOES( int face, int pname, java.nio.IntBuffer params ) argument
[all...]
H A DGLErrorWrapper.java510 public void glMaterialf(int face, int pname, float param) { argument
512 mgl.glMaterialf(face, pname, param);
516 public void glMaterialfv(int face, int pname, float[] params, int offset) { argument
518 mgl.glMaterialfv(face, pname, params, offset);
522 public void glMaterialfv(int face, int pname, FloatBuffer params) { argument
524 mgl.glMaterialfv(face, pname, params);
528 public void glMaterialx(int face, int pname, int param) { argument
530 mgl.glMaterialx(face, pname, param);
534 public void glMaterialxv(int face, int pname, int[] params, int offset) { argument
536 mgl.glMaterialxv(face, pnam
540 glMaterialxv(int face, int pname, IntBuffer params) argument
1118 glGetMaterialfv(int face, int pname, float[] params, int offset) argument
1124 glGetMaterialfv(int face, int pname, FloatBuffer params) argument
1130 glGetMaterialxv(int face, int pname, int[] params, int offset) argument
1136 glGetMaterialxv(int face, int pname, IntBuffer params) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java326 int face,
333 int face,
339 int face,
346 int face,
325 glGetMaterialfv( int face, int pname, float[] params, int offset ) argument
332 glGetMaterialfv( int face, int pname, java.nio.FloatBuffer params ) argument
338 glGetMaterialxv( int face, int pname, int[] params, int offset ) argument
345 glGetMaterialxv( int face, int pname, java.nio.IntBuffer params ) argument
/frameworks/rs/
H A DrsAllocation.cpp172 void * Allocation::getPointer(const Context *rsc, uint32_t lod, RsAllocationCubemapFace face, argument
177 ((face != RS_ALLOCATION_CUBEMAP_FACE_POSITIVE_X) && !mHal.state.hasFaces) ||
184 mRSC->mHal.funcs.allocation.getPointer(rsc, this, lod, face, z, array);
212 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
214 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
242 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
258 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
701 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
704 a->data(rsc, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
805 for (uint32_t face
888 rsi_AllocationGetPointer(Context *rsc, RsAllocation valloc, uint32_t lod, RsAllocationCubemapFace face, uint32_t z, uint32_t array, size_t *stride, size_t strideLen) argument
909 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java652 // C function void glMaterialf ( GLenum face, GLenum pname, GLfloat param )
655 int face,
660 // C function void glMaterialfv ( GLenum face, GLenum pname, const GLfloat *params )
663 int face,
669 // C function void glMaterialfv ( GLenum face, GLenum pname, const GLfloat *params )
672 int face,
677 // C function void glMaterialx ( GLenum face, GLenum pname, GLfixed param )
680 int face,
685 // C function void glMaterialxv ( GLenum face, GLenum pname, const GLfixed *params )
688 int face,
654 glMaterialf( int face, int pname, float param ) argument
662 glMaterialfv( int face, int pname, float[] params, int offset ) argument
671 glMaterialfv( int face, int pname, java.nio.FloatBuffer params ) argument
679 glMaterialx( int face, int pname, int param ) argument
687 glMaterialxv( int face, int pname, int[] params, int offset ) argument
696 glMaterialxv( int face, int pname, java.nio.IntBuffer params ) argument
1406 glGetMaterialfv( int face, int pname, float[] params, int offset ) argument
1415 glGetMaterialfv( int face, int pname, java.nio.FloatBuffer params ) argument
1423 glGetMaterialxv( int face, int pname, int[] params, int offset ) argument
1432 glGetMaterialxv( int face, int pname, java.nio.IntBuffer params ) argument
[all...]

Completed in 1428 milliseconds

12