/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_curses.py | 255 lines, cols = curses.LINES, curses.COLS
256 curses.resizeterm(lines - 1, cols + 1)
258 if curses.LINES != lines - 1 or curses.COLS != cols + 1:
259 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
|
/external/dng_sdk/source/ |
dng_parse_utils.cpp | 1718 uint32 cols = count - (row << 4); local 1792 uint32 cols = count - (row << 4); local [all...] |
/external/doclava/res/assets/templates-sdk/ |
footer.cs | 4 <div class="cols dac-footer-main"> 88 <div class="cols"> 115 <div class="cols"> 163 <div class="cols"> 197 <div class="cols"> 206 <div class="cols">
|
/external/opencv/cv/src/ |
cvcamshift.cpp | 87 if( windowIn.x < 0 || windowIn.x + windowIn.width > mat->cols || 116 else if( nx + cur_rect.width > mat->cols ) 117 nx = mat->cols - cur_rect.width;
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
Matrix.java | 31 * @param cols - number of columns (m) 33 public Matrix(int rows, int cols) { 35 m = cols; 36 mem = new double[rows * cols];
|
/frameworks/support/tv-provider/tests/src/android/support/media/tv/ |
ChannelTest.java | 238 String[] cols = Channel.PROJECTION; local 239 MatrixCursor cursor = new MatrixCursor(cols); 241 for (String col : cols) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_curses.py | 260 lines, cols = curses.LINES, curses.COLS 261 curses.resizeterm(lines - 1, cols + 1) 263 if curses.LINES != lines - 1 or curses.COLS != cols + 1: 264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_curses.py | 260 lines, cols = curses.LINES, curses.COLS 261 curses.resizeterm(lines - 1, cols + 1) 263 if curses.LINES != lines - 1 or curses.COLS != cols + 1: 264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_curses.py | 260 lines, cols = curses.LINES, curses.COLS 261 curses.resizeterm(lines - 1, cols + 1) 263 if curses.LINES != lines - 1 or curses.COLS != cols + 1: 264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_curses.py | 260 lines, cols = curses.LINES, curses.COLS 261 curses.resizeterm(lines - 1, cols + 1) 263 if curses.LINES != lines - 1 or curses.COLS != cols + 1: 264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
|
/system/media/camera/docs/ |
html.mako | 151 cols = 1 152 if prop.details: cols = cols + 2 153 if prop.hal_details: cols = cols + 2 154 return cols
|
/external/eigen/Eigen/src/CholmodSupport/ |
CholmodSupport.h | 63 res.ncol = mat.cols(); 141 res.ncol = mat.cols(); 217 inline StorageIndex cols() const { return internal::convert_index<StorageIndex, Index>(m_cholmodFactor->n); } function in class:Eigen::CholmodBase 303 dest = Matrix<Scalar,Dest::RowsAtCompileTime,Dest::ColsAtCompileTime>::Map(reinterpret_cast<Scalar*>(x_cd->x),b.rows(),b.cols());
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
IncompleteLUT.h | 135 Index cols() const { return m_lu.cols(); } function in class:Eigen::IncompleteLUT 260 eigen_assert((amat.rows() == amat.cols()) && "The factorization should be done on a square matrix"); 261 Index n = amat.cols(); // Size of the matrix
|
/external/eigen/Eigen/src/LU/ |
Determinant.h | 94 eigen_assert(rows() == cols());
|
/external/eigen/Eigen/src/OrderingMethods/ |
Ordering.h | 133 StorageIndex n = StorageIndex(mat.cols());
|
/external/eigen/Eigen/src/SVD/ |
JacobiSVD_LAPACKE.h | 48 allocate(matrix.rows(), matrix.cols(), computationOptions); \
|
/external/eigen/bench/spbench/ |
test_sparseLU.cpp | 55 n = A.cols();
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
AutoDiffJacobian.h | 89 for (Index i=0; i<jac.cols(); i++)
|
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
LMcovar.h | 32 const Index n = r.cols();
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
covar.h | 20 const Index n = r.cols();
|
qrsolv.h | 22 Index n = s.cols();
|
r1updt.h | 20 const Index n = s.cols();
|
/external/eigen/unsupported/bench/ |
bench_svd.cpp | 36 MatrixType m = MatrixType::Random(a.rows(), a.cols());
|
/external/gemmlowp/eight_bit_int_gemm/ |
eight_bit_int_gemm.cc | 192 bool IsRowMajorOrVector(bool transpose, int stride, int rows, int cols) { 194 if (transpose && stride == cols) { 206 bool IsColumnMajorOrVector(bool transpose, int stride, int rows, int cols) { 213 if (cols == 1) {
|
/external/gemmlowp/public/ |
gemmlowp.h | 62 const OffsetRowDup rhs_offset_vector(rhs_offset, rhs.cols());
|