/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
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) { 305 final int startColumn, final int endColumn, 310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn); 312 final int columnsCount = endColumn + 1 - startColumn; 333 final int startColumn, final int endColumn) { [all...] |
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) { 331 final int startColumn, final int endColumn, 336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn); 338 final int columnsCount = endColumn + 1 - startColumn; 359 final int startColumn, final int endColumn) { 370 }, startRow, endRow, startColumn, endColumn); 810 final int startColumn, final int endColumn) [all...] |
FieldMatrixChangingVisitor.java | 40 * @param endColumn Final column index (inclusive) 43 int startRow, int endRow, int startColumn, int endColumn);
|
FieldMatrixPreservingVisitor.java | 40 * @param endColumn Final column index (inclusive) 43 int startRow, int endRow, int startColumn, int endColumn);
|
RealMatrixChangingVisitor.java | 39 * @param endColumn Final column index (inclusive) 42 int startRow, int endRow, int startColumn, int endColumn);
|
RealMatrixPreservingVisitor.java | 39 * @param endColumn Final column index (inclusive) 42 int startRow, int endRow, int startColumn, int endColumn);
|
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...] |
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...] |
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...] |
DefaultFieldMatrixChangingVisitor.java | 49 int startRow, int endRow, int startColumn, int endColumn) {
|
DefaultFieldMatrixPreservingVisitor.java | 49 int startRow, int endRow, int startColumn, int endColumn) {
|
DefaultRealMatrixChangingVisitor.java | 36 int startRow, int endRow, int startColumn, int endColumn) {
|
DefaultRealMatrixPreservingVisitor.java | 36 int startRow, int endRow, int startColumn, int endColumn) {
|
FieldMatrix.java | 128 * @param endColumn Final column index (inclusive) 133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) 156 * @param endColumn Final column index (inclusive) 162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, 535 * @param endColumn Final column index 553 int startRow, int endRow, int startColumn, int endColumn) 565 * @param endColumn Final column index 583 int startRow, int endRow, int startColumn, int endColumn) 643 * @param endColumn Final column index 661 int startRow, int endRow, int startColumn, int endColumn) [all...] |
RealMatrix.java | 135 * @param endColumn Final column index (inclusive) 140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn) 163 * @param endColumn Final column index (inclusive) 169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, 580 * @param endColumn Final column index 598 int startRow, int endRow, int startColumn, int endColumn) 610 * @param endColumn Final column index 628 int startRow, int endRow, int startColumn, int endColumn) 688 * @param endColumn Final column index 706 int startRow, int endRow, int startColumn, int endColumn) [all...] |
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); [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); [all...] |
MatrixUtils.java | 559 * @param endColumn Final column index 564 final int startColumn, final int endColumn) { 573 checkColumnIndex(m, endColumn); 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...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
Token.java | 34 * of this token; endLine and endColumn describe the position of the 37 public int beginLine, beginColumn, endLine, endColumn;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
Token.java | 34 * of this token; endLine and endColumn describe the position of the 37 public int beginLine, beginColumn, endLine, endColumn;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
Token.java | 34 * of this token; endLine and endColumn describe the position of the 37 public int beginLine, beginColumn, endLine, endColumn;
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/ |
Token.java | 34 * of this token; endLine and endColumn describe the position of the 37 public int beginLine, beginColumn, endLine, endColumn;
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/ |
Token.java | 34 * of this token; endLine and endColumn describe the position of the 37 public int beginLine, beginColumn, endLine, endColumn;
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/parser/ |
Token.java | 34 * of this token; endLine and endColumn describe the position of the 37 public int beginLine, beginColumn, endLine, endColumn;
|
/external/clang/unittests/AST/ |
MatchVerifier.h | 201 unsigned EndLine, unsigned EndColumn) { 205 ExpectEndColumn = EndColumn; 217 unsigned EndColumn = Result.SourceManager->getSpellingColumnNumber(End); 219 EndLine != ExpectEndLine || EndColumn != ExpectEndColumn) {
|