Home
last modified time | relevance | path

Searched refs:MatrixOperationFailedException (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DMatrixUtils.java33 public static class MatrixOperationFailedException extends Exception { class in MatrixUtils
36 public MatrixOperationFailedException(String msg) { in MatrixOperationFailedException() method in MatrixUtils.MatrixOperationFailedException
73 final float[][] squareMatrix1, final int size) throws MatrixOperationFailedException { in sweep()
76 throw new MatrixOperationFailedException("Inverse failed. Invalid pivot"); in sweep()
102 final float[][] inverseMatrix) throws MatrixOperationFailedException { in inverse()
106 throw new MatrixOperationFailedException( in inverse()
124 final float[][] retval) throws MatrixOperationFailedException { in multiply()
126 throw new MatrixOperationFailedException( in multiply()
133 throw new MatrixOperationFailedException( in multiply()
DSmoothingUtils.java20 import com.android.inputmethod.keyboard.internal.MatrixUtils.MatrixOperationFailedException;
45 final float[][] retval) throws MatrixOperationFailedException { in get3DParameters()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
DMatrixUtilsTests.java25 import com.android.inputmethod.keyboard.internal.MatrixUtils.MatrixOperationFailedException;
44 } catch (MatrixOperationFailedException e) { in testMulti()
71 } catch (MatrixOperationFailedException e) { in testInverse()
76 } catch (MatrixOperationFailedException e) { in testInverse()
DSmoothingUtilsTests.java25 import com.android.inputmethod.keyboard.internal.MatrixUtils.MatrixOperationFailedException;
49 } catch (MatrixOperationFailedException e) { in testGet3DParamaters()