HomeSort by relevance Sort by last modified time
    Searched refs:startColumn (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /external/apache-xml/src/main/java/org/apache/xml/utils/
FastStringBuffer.java 864 int startColumn = start & m_chunkMask;
866 if (startColumn + length < m_chunkMask && m_innerFSB == null) {
867 return getOneChunkString(startChunk, startColumn, length);
869 return getString(new StringBuffer(length), startChunk, startColumn,
873 protected String getOneChunkString(int startChunk, int startColumn,
875 return new String(m_array[startChunk], startColumn, length);
908 * @param startColumn
913 StringBuffer getString(StringBuffer sb, int startChunk, int startColumn,
917 int stop = (startChunk << m_chunkBits) + startColumn + length;
926 m_innerFSB.getString(sb, startColumn, m_chunkSize - startColumn)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DefaultRealMatrixChangingVisitor.java 36 int startRow, int endRow, int startColumn, int endColumn) {
DefaultRealMatrixPreservingVisitor.java 36 int startRow, int endRow, int startColumn, int endColumn) {
RealMatrixChangingVisitor.java 38 * @param startColumn Initial column index
42 int startRow, int endRow, int startColumn, int endColumn);
RealMatrixPreservingVisitor.java 38 * @param startColumn Initial column index
42 int startRow, int endRow, int startColumn, int endColumn);
RealMatrix.java 134 * @param startColumn Initial column index
140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
162 * @param startColumn Initial column index
169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn,
579 * @param startColumn Initial column index
598 int startRow, int endRow, int startColumn, int endColumn)
609 * @param startColumn Initial column index
628 int startRow, int endRow, int startColumn, int endColumn)
687 * @param startColumn Initial column index
706 int startRow, int endRow, int startColumn, int endColumn
    [all...]
FieldMatrixChangingVisitor.java 39 * @param startColumn Initial column index
43 int startRow, int endRow, int startColumn, int endColumn);
FieldMatrixPreservingVisitor.java 39 * @param startColumn Initial column index
43 int startRow, int endRow, int startColumn, int endColumn);
AbstractFieldMatrix.java 288 final int startColumn, final int endColumn)
291 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
294 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
296 for (int j = startColumn; j <= endColumn; ++j) {
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
331 final int startColumn, final int endColumn,
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
338 final int columnsCount = endColumn + 1 - startColumn;
353 private int startColumn;
359 final int startColumn, final int endColumn)
    [all...]
Array2DRowRealMatrix.java 494 final int startColumn, final int endColumn)
496 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
498 startRow, endRow, startColumn, endColumn);
501 for (int j = startColumn; j <= endColumn; ++j) {
512 final int startColumn, final int endColumn)
514 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
516 startRow, endRow, startColumn, endColumn);
519 for (int j = startColumn; j <= endColumn; ++j) {
561 final int startColumn, final int endColumn)
563 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn)
    [all...]
DefaultFieldMatrixChangingVisitor.java 49 int startRow, int endRow, int startColumn, int endColumn) {
DefaultFieldMatrixPreservingVisitor.java 49 int startRow, int endRow, int startColumn, int endColumn) {
RealMatrixImpl.java 502 final int startColumn, final int endColumn)
504 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
506 startRow, endRow, startColumn, endColumn);
509 for (int j = startColumn; j <= endColumn; ++j) {
520 final int startColumn, final int endColumn)
522 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
524 startRow, endRow, startColumn, endColumn);
527 for (int j = startColumn; j <= endColumn; ++j) {
569 final int startColumn, final int endColumn)
571 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn)
    [all...]
AbstractRealMatrix.java 210 final int startColumn, final int endColumn) {
243 final int startColumn, final int endColumn) {
262 final int startColumn, final int endColumn)
265 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
268 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
270 for (int j = startColumn; j <= endColumn; ++j) {
271 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
305 final int startColumn, final int endColumn,
310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
312 final int columnsCount = endColumn + 1 - startColumn;
    [all...]
FieldMatrix.java 127 * @param startColumn Initial column index
133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
155 * @param startColumn Initial column index
162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn,
534 * @param startColumn Initial column index
553 int startRow, int endRow, int startColumn, int endColumn)
564 * @param startColumn Initial column index
583 int startRow, int endRow, int startColumn, int endColumn)
642 * @param startColumn Initial column index
661 int startRow, int endRow, int startColumn, int endColumn
    [all...]
Array2DRowFieldMatrix.java 486 final int startColumn, final int endColumn)
488 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
490 startRow, endRow, startColumn, endColumn);
493 for (int j = startColumn; j <= endColumn; ++j) {
504 final int startColumn, final int endColumn)
506 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
508 startRow, endRow, startColumn, endColumn);
511 for (int j = startColumn; j <= endColumn; ++j) {
553 final int startColumn, final int endColumn)
555 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn)
    [all...]
BigMatrix.java 130 * @param startColumn Initial column index
136 BigMatrix getSubMatrix(int startRow, int endRow, int startColumn,
BlockFieldMatrix.java 680 final int startColumn, final int endColumn)
684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1);
693 final int blockStartColumn = startColumn / BLOCK_SIZE;
694 final int columnsShift = startColumn % BLOCK_SIZE;
    [all...]
BlockRealMatrix.java 705 final int startColumn, final int endColumn)
709 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
713 new BlockRealMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
718 final int blockStartColumn = startColumn / BLOCK_SIZE;
719 final int columnsShift = startColumn % BLOCK_SIZE;
    [all...]
MatrixUtils.java 558 * @param startColumn Initial column index
564 final int startColumn, final int endColumn) {
572 checkColumnIndex(m, startColumn);
574 if (startColumn > endColumn) {
576 startColumn, endColumn);
684 int startRow, int endRow, int startColumn, int endColumn) {
728 int startRow, int endRow, int startColumn, int endColumn) {
    [all...]
BigMatrixImpl.java 593 * @param startColumn Initial column index
600 int startColumn, int endColumn)
610 MatrixUtils.checkColumnIndex(this, startColumn);
612 if (startColumn > endColumn) {
614 startColumn, endColumn);
618 new BigDecimal[endRow - startRow + 1][endColumn - startColumn + 1];
620 System.arraycopy(data[i], startColumn,
622 endColumn - startColumn + 1);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 435 int startColumn = grid.getColumn(state.bounds.x);
437 int columnSpan = endColumn - startColumn + 1;
443 Rect cellBounds = grid.getCellBounds(startRow, startColumn, rowSpan, columnSpan);
565 int startColumn = grid.getColumn(state.bounds.x);
567 int columnSpan = endColumn - startColumn + 1;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsMoultonIntegrator.java 372 int startRow, int endRow, int startColumn, int endColumn) {
  /prebuilts/devtools/tools/lib/
lint.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-alpha2/
lint-24.3.0-alpha2.jar 

Completed in 305 milliseconds

1 2 3 4 5 6 7