Searched refs:invert (Results 1 - 25 of 42) sorted by relevance

12

/frameworks/av/media/libstagefright/filters/
H A DZeroFilter.cpp32 int32_t invert; local
33 if (params->findInt32("invert", &invert)) {
34 mInvertData = (invert != 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java30 * Helper to invert the colors of views and fade between the states.
48 public void fade(final boolean invert, long delay) { argument
49 float startIntensity = invert ? 0f : 1f;
50 float endIntensity = invert ? 1f : 0f;
62 if (!invert) {
73 public void update(boolean invert) { argument
74 if (invert) {
88 final float[] invert = {
94 mMatrix.set(invert);
/frameworks/av/cmds/screenrecord/
H A DProgram.h55 // content if "invert" is set.
58 bool invert = false) const;
72 const float* vertices, const float* texes, bool invert) const;
H A DProgram.cpp204 int32_t x, int32_t y, int32_t w, int32_t h, bool invert) const {
221 err = beforeDraw(texName, texMatrix, pos, uv, invert);
244 const float* vertices, const float* texes, bool invert) const {
254 if (invert) {
/frameworks/base/core/java/android/animation/
H A DBidirectionalTypeConverter.java48 public BidirectionalTypeConverter<V, T> invert() { method in class:BidirectionalTypeConverter
/frameworks/base/media/mca/filterpacks/
H A DAndroid.mk46 native/imageproc/invert.c \
/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp231 static jboolean invert(JNIEnv* env, jobject clazz, jlong matrixHandle, jlong inverseHandle) { function in class:android::SkMatrixGlue
234 return matrix->invert(inverse);
345 {"native_invert","!(JJ)Z", (void*) SkMatrixGlue::invert},
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java107 next.getMatrix().invert(tmpInverseMatrix);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec85 void glSampleCoverage ( GLclampf value, GLboolean invert )
86 void glSampleCoveragex ( GLclampx value, GLboolean invert )
H A DGLES11Ext.spec46 void glSampleCoveragexOES ( GLclampx value, GLboolean invert )
H A DGLES20.spec97 void glSampleCoverage ( GLclampf value, GLboolean invert )
/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java1069 // C function void glSampleCoverage ( GLclampf value, GLboolean invert )
1073 boolean invert
1076 // C function void glSampleCoveragex ( GLclampx value, GLboolean invert )
1080 boolean invert
H A DGLES11Ext.java633 // C function void glSampleCoveragexOES ( GLclampx value, GLboolean invert )
637 boolean invert
H A DGLErrorWrapper.java682 public void glSampleCoverage(float value, boolean invert) { argument
684 mgl.glSampleCoverage(value, invert);
688 public void glSampleCoveragex(int value, boolean invert) { argument
690 mgl.glSampleCoveragex(value, invert);
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java818 boolean invert
823 boolean invert
/frameworks/base/core/java/android/widget/
H A DStackView.java1048 private float getDuration(boolean invert, float velocity) { argument
1056 return (invert ? (1 - d / maxd) : d / maxd) * DEFAULT_ANIMATION_DURATION;
1058 float duration = invert ? d / Math.abs(velocity) :
1062 return getDuration(invert, 0);
/frameworks/native/services/sensorservice/
H A DFusion.cpp448 const mat33_t Si(invert(S));
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java894 // C function void glSampleCoverage ( GLclampf value, GLboolean invert )
898 boolean invert
901 // C function void glSampleCoveragex ( GLclampx value, GLboolean invert )
905 boolean invert
/frameworks/native/opengl/include/GLES/
H A Dgl.h717 GL_API void GL_APIENTRY glSampleCoverage (GLclampf value, GLboolean invert);
718 GL_API void GL_APIENTRY glSampleCoveragex (GLclampx value, GLboolean invert);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h557 GLAPI void APIENTRY glSampleCoverage (GLclampf value, GLboolean invert);
558 GLAPI void APIENTRY glSampleCoveragex (GLclampx value, GLboolean invert);
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp538 void invert(GLfloat* inverse, const GLfloat* src) function in namespace:android
590 invert(r, mv);
615 invert(r, mv);
/frameworks/base/core/java/android/transition/
H A DChangeTransform.java394 endParentMatrix.invert(toLocal);
/frameworks/base/core/jni/
H A Dandroid_view_RenderNode.cpp427 if (!outMatrix->invert(outMatrix)) {
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java619 public boolean invert(Matrix inverse) { method in class:Matrix
/frameworks/base/libs/hwui/font/
H A DFont.cpp61 if (!mLookupTransform.invert(&mInverseLookupTransform)) {

Completed in 4047 milliseconds

12