HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 251 - 275 of 2687) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/
cfi-sh-1.d 10 Return address column: 17
cfi-sparc-1.d 12 Return address column: 15
cfi-sparc64-1.d 12 Return address column: 15
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/cfi/
cfi-common-1.d 11 Return address column: .*
cfi-common-2.d 11 Return address column: .*
cfi-common-4.d 11 Return address column: .*
cfi-common-5.d 11 Return address column: .*
cfi-common-7.d 11 Return address column: .*
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
eh6.d 16 Return address column: .*
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
cfi32.d 12 Return address column: 8
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITestExtended.java 116 int column = 0; local
139 column = charIdx - colStart + 1;
253 tp.srcCol[breakIdx] = column;
263 tp.srcCol[idx] = column;
277 ", col " + column);
285 ", col " + column);
292 tp.srcCol[i] = column;
307 tp.srcCol[breakIdx] = column;
317 if (c == '#' && column==3) { // TODO: why is column off so far
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITestExtended.java 113 int column = 0; local
136 column = charIdx - colStart + 1;
250 tp.srcCol[breakIdx] = column;
260 tp.srcCol[idx] = column;
274 ", col " + column);
282 ", col " + column);
289 tp.srcCol[i] = column;
304 tp.srcCol[breakIdx] = column;
314 if (c == '#' && column==3) { // TODO: why is column off so far
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
FragmentedTable.java 23 public Element getElement(int row, int column) {
24 checkCellBounds(row, column);
26 return getCellElement(bodyElem, getRowWithinFragment(row), column);
90 int column = DOM.getChildIndex(tr, td); local
91 return new RowColumn(row, column);
  /external/llvm/include/llvm/MC/
MCCodeView.h 35 uint16_t Column;
41 MCCVLoc(unsigned functionid, unsigned fileNum, unsigned line, unsigned column,
43 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column),
58 /// \brief Get the Column of this MCCVLoc.
59 unsigned getColumn() const { return Column; }
72 /// \brief Set the Column of this MCCVLoc.
73 void setColumn(unsigned column) {
74 assert(column <= UINT16_MAX);
75 Column = column
    [all...]
  /external/mesa3d/src/glx/
singlepix.c 38 GLvoid * row, GLvoid * column, GLvoid * span)
95 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
112 GLvoid * column, GLvoid * span)
122 p(target, format, type, row, column, span);
185 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf, column);
  /external/mesa3d/src/mesa/main/
image.h 49 GLint img, GLint row, GLint column );
57 GLint img, GLint row, GLint column );
64 GLint column );
71 GLint row, GLint column );
78 GLint img, GLint row, GLint column );
  /frameworks/base/core/java/android/hardware/camera2/params/
ColorSpaceTransform.java 103 * column {@code j}.</p>
126 * Get an element of this matrix by its row and column.
129 * and the column must be within the range [0, 3).</p>
133 * @throws IllegalArgumentException if column or row was out of range
135 public Rational getElement(int column, int row) {
136 if (column < 0 || column >= COLUMNS) {
137 throw new IllegalArgumentException("column out of range");
142 int numerator = mElements[(row * COLUMNS + column) * RATIONAL_SIZE + OFFSET_NUMERATOR];
143 int denominator = mElements[(row * COLUMNS + column) * RATIONAL_SIZE + OFFSET_DENOMINATOR]
    [all...]
  /frameworks/support/content/src/androidTest/java/androidx/contentpager/content/
TestContentProvider.java 285 throw new IllegalArgumentException("Unsupported column: " + col);
290 * Asserts that the value at the current cursor position x column
298 * @param column
301 public static void assertExpectedCellValue(Cursor cursor, int row, int column) {
302 int type = cursor.getType(column);
307 assertEquals(createCellValue(row, column), cursor.getInt(column));
310 assertEquals(createCellValue(row, column), cursor.getDouble(column));
313 assertEquals(createCellValue(row, column), cursor.getBlob(column))
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowFieldMatrix.java 33 * returns the element in the first row, first column of the matrix.</li></ul>
56 * Create a new FieldMatrix<T> with the supplied row and column dimensions.
61 * @throws IllegalArgumentException if row or column dimension is not
135 * Create a new (column) FieldMatrix<T> using <code>v</code> as the
136 * data for the unique column of the <code>v.length x 1</code> matrix
140 * @param v column vector holding data for new matrix
307 public void setSubMatrix(final T[][] subMatrix, final int row, final int column)
314 if (column > 0) {
316 LocalizedFormats.FIRST_COLUMNS_NOT_INITIALIZED_YET, column);
335 System.arraycopy(subMatrix[i], 0, data[i + row], column, nCols)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
Emitter.java 126 private int column; field in class:Emitter
179 column = 0;
449 if (canonical || (column > bestWidth && splitLines) || prettyFlow) {
474 if (canonical || (column > bestWidth && splitLines) || prettyFlow) {
503 if (canonical || (column > bestWidth && splitLines) || prettyFlow) {
534 if (canonical || (column > bestWidth && splitLines) || prettyFlow) {
559 if (canonical || (column > bestWidth) || prettyFlow) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 109 // Column matches:
178 int column = mGrid.getColumn(x1); local
181 int leftDistance = mGrid.getColumnDistance(column, x1);
182 int rightDistance = mGrid.getColumnDistance(column + 1, x1);
189 column = Math.min(column + 1, mGrid.actualColumnCount);
233 mColumnMatch = new GridMatch(horizontalType, 0, x1, column, createColumn, 0);
244 description.append(String.format("Shift column %1$d right",
262 int column = (mGrid.getViewCount() == 0) ? 0 : mGrid.getClosestColumn(x1); local
263 int columnX = mGrid.getColumnX(column);
477 int column = mColumnMatch.cellIndex; local
770 int column = mColumnMatch.cellIndex; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DefaultRenderingContext.java 62 private int column; field in class:DefaultRenderingContext
120 autoEscapeContext.setCurrentPosition(line, column);
146 return "[" + getCurrentResourceName() + ":" + line + ":" + column + "]";
156 autoEscapeContext.setCurrentPosition(line, column);
177 public void setCurrentPosition(int line, int column) {
181 this.column = column;
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Type_Definitions.py 179 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem
180 """column - a column of a list view """
187 """visible - is this column visible """
191 """width - the width of this column """
195 columns = column
201 """sort column - the column that the list view is sorted on """
267 column._superclassnames = []
268 column._privpropdict =
    [all...]
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 148 * @param columnDelay the delay by which each column animation must be offset
159 * column to the other. The delay is expressed as a fraction of the
174 * children's animations are offset from one column to the other.
272 * will first play on the column, then on the rows.Z
305 final int column = getTransformedColumnIndex(params); local
324 viewDelay = (long) (row * rowDelay + column * rowsCount * rowDelay);
328 viewDelay = (long) (column * columnDelay + row * columnsCount * columnDelay);
333 viewDelay = (long) (column * columnDelay + row * rowDelay);
348 index = params.columnsCount - 1 - params.column;
358 index = params.column;
407 public int column; field in class:GridLayoutAnimationController.AnimationParameters
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/account/
AccountType.java 411 * Includes flags to apply to an {@link EditText}, and the column where this field is stored.
415 public String column; field in class:AccountType.EditField
423 public EditField(String column, int titleRes) {
424 this.column = column;
428 public EditField(String column, int titleRes, int inputType) {
429 this(column, titleRes);
461 + " column="
462 + column

Completed in 2189 milliseconds

<<11121314151617181920>>