HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 51 - 75 of 2025) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/smali/util/src/main/java/org/jf/util/
WrappedIndentingWriter.java 54 /** >= 0; current output column (zero-based) */
55 private int column; field in class:WrappedIndentingWriter
120 if ((column == width) && (c != '\n')) {
122 column = 0;
129 if (column == 0) {
138 column = indent;
147 column++;
180 column = 0;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/
mock_test.py 15 client_class.column.List.Expect(request=1, response=2)
17 self.assertEqual(client.column.List(1), 2)
19 client.column.List(3)
23 client_class.column.List.Expect(
28 client.column.List(1)
32 client_class.column.List.Expect(request=1, response=2)
33 client_class.column.List.Expect(request=2, response=1)
35 self.assertEqual(client.column.List(1), 2)
36 self.assertEqual(client.column.List(2), 1)
40 client_class.column.List.Expect(request=1, response=2
    [all...]
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixBitMatrixParser.cpp 75 int32_t column = 0; local
83 if ((row == numRows) && (column == 0) && !corner1Read) {
86 column += 2;
88 } else if ((row == numRows - 2) && (column == 0) &&
92 column += 2;
94 } else if ((row == numRows + 4) && (column == 2) &&
98 column += 2;
100 } else if ((row == numRows - 2) && (column == 0) &&
104 column += 2;
108 if ((row < numRows) && (column >= 0) &&
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_location.py 10 def assert_location(loc, line, column, offset):
12 assert loc.column == column
23 assert_location(one.location,line=1,column=5,offset=4)
24 assert_location(two.location,line=2,column=5,offset=13)
34 assert_location(one.location,line=2,column=5,offset=5)
35 assert_location(two.location,line=3,column=5,offset=14)
37 # adding a space should affect column on first line only
42 assert_location(one.location,line=1,column=6,offset=5)
43 assert_location(two.location,line=2,column=5,offset=14
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractFieldMatrix.java 59 * Create a new FieldMatrix<T> with the supplied row and column dimensions.
64 * @throws IllegalArgumentException if row or column dimension is not positive
319 public T visit(final int row, final int column, final T value) {
320 return getEntry(selectedRows[row], selectedColumns[column]);
352 /** Initial column index. */
366 public void visit(final int row, final int column, final T value) {
367 destination[row - startRow][column - startColumn] = value;
399 public void setSubMatrix(final T[][] subMatrix, final int row, final int column)
421 checkColumnIndex(column);
423 checkColumnIndex(nCols + column - 1)
    [all...]
AbstractRealMatrix.java 51 * Create a new RealMatrix with the supplied row and column dimensions.
55 * @throws IllegalArgumentException if row or column dimension is not positive
201 /** Sum of absolute values on one column. */
217 public void visit(final int row, final int column, final double value) {
248 public void visit(final int row, final int column, final double value) {
293 public double visit(final int row, final int column, final double value) {
294 return getEntry(selectedRows[row], selectedColumns[column]);
326 /** Initial column index. */
340 public void visit(final int row, final int column, final double value) {
341 destination[row - startRow][column - startColumn] = value
    [all...]
RealMatrix.java 27 * returns the element in the first row, first column of the matrix.</p>
35 * row and column dimensions.
40 * @throws IllegalArgumentException if row or column dimension is not positive
134 * @param startColumn Initial column index
135 * @param endColumn Final column index (inclusive)
148 * @param selectedColumns Array of column indices.
151 * @exception MatrixIndexException if row or column selections are not valid
162 * @param startColumn Initial column index
163 * @param endColumn Final column index (inclusive)
178 * @param selectedColumns Array of column indices
    [all...]
DefaultRealMatrixChangingVisitor.java 40 public double visit(int row, int column, double value) throws MatrixVisitorException {
DefaultRealMatrixPreservingVisitor.java 40 public void visit(int row, int column, double value)
RealMatrixChangingVisitor.java 38 * @param startColumn Initial column index
39 * @param endColumn Final column index (inclusive)
47 * @param column column index of the entry
52 double visit(int row, int column, double value)
RealMatrixPreservingVisitor.java 38 * @param startColumn Initial column index
39 * @param endColumn Final column index (inclusive)
47 * @param column column index of the entry
51 void visit(int row, int column, double value)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 88 /** Width assigned to a newly added column with the Add Column action */
113 * Array of positions (indexed by column) of the left edge of table cells; this
114 * corresponds to the column positions in the grid
125 * Array of positions (indexed by column) of the maximum right hand side bounds of a
126 * node in the given column; this represents the visual edge of a column even when the
127 * actual column is wider
231 * should be positioned at the given row and column. This will skip over any nodes
236 * @param column the target column of the new nod
469 int column = declaredColumnCount; local
504 int column = 0; local
548 int column = 0; local
559 assert nextColumn > column; local
581 assert nextColumn > column; local
761 int column = view.column; local
835 int column = view.column; local
1328 int column = Arrays.binarySearch(mLeft, x); local
1370 int column = Arrays.binarySearch(mLeft, x); local
1690 int column = view.column; local
1841 public int column; field in class:GridModel.ViewData
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
CounterColumnTest.java 79 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
82 assertTrue(column.init(Arrays.asList(item), item.getNode()));
88 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
91 assertFalse(column.init(Arrays.asList(item), createNode(1, 0)));
97 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
100 column.init(Collections.singletonList(item), item.getNode());
101 column.item(td, item, resources, root);
110 IColumnRenderer column = CounterColumn.newMissed(CounterEntity.LINE, local
113 column.init(Collections.singletonList(item), item.getNode());
114 column.item(td, item, resources, root)
123 IColumnRenderer column = CounterColumn.newCovered(CounterEntity.LINE, local
136 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
149 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
162 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 14 protected int column = -1; field in class:XmlPullParserException
29 public XmlPullParserException(String s, int row, int column) {
32 this.column = column;
43 this.column = parser.getColumnNumber();
51 public int getColumnNumber() { return column; }
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 22 public SourcePositionInfo(String file, int line, int column) {
25 this.column = column;
31 this.column = that.column;
102 public int column; field in class:SourcePositionInfo
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_printer.cc 72 buffer->append("%d", info.column);
86 RenderSourceLocation(buffer, info.file, info.line, info.column, vs_style,
92 RenderSourceLocation(buffer, info.file, info.line, info.column,
120 int line, int column, bool vs_style,
124 if (column > 0)
125 buffer->append(",%d", column);
133 if (column > 0)
134 buffer->append(":%d", column);
sanitizer_stacktrace_printer.h 42 // %c - column in the source file;
46 // %S - prints file/line/column information;
47 // %L - prints location information: file/line/column, if it is known, or
56 int line, int column, bool vs_style,
  /external/vulkan-validation-layers/libs/glm/gtc/
matrix_access.hpp 67 /// Get a specific column of a matrix.
70 GLM_FUNC_DECL typename genType::col_type column(
74 /// Set a specific column to a matrix.
77 GLM_FUNC_DECL genType column(
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 185 public String getString(int column)
187 return mCursor.getString(column);
191 public short getShort(int column)
193 return mCursor.getShort(column);
197 public int getInt(int column)
199 return mCursor.getInt(column);
203 public long getLong(int column)
205 return mCursor.getLong(column);
209 public float getFloat(int column)
211 return mCursor.getFloat(column);
    [all...]
  /frameworks/support/compat/tests/java/android/support/v4/testutils/
TestUtils.java 79 for (int column = 0; column < drawableWidth; column++) {
80 if (rowPixels[column] != color) {
85 + "] but at position (" + row + "," + column + ") found ["
86 + Color.red(rowPixels[column]) + ","
87 + Color.green(rowPixels[column]) + ","
88 + Color.blue(rowPixels[column]) + "]";
  /frameworks/support/core-ui/tests/java/android/support/v4/testutils/
TestUtils.java 73 for (int column = 0; column < drawableWidth; column++) {
74 if (rowPixels[column] != color) {
79 + "] but at position (" + row + "," + column + ") found ["
80 + Color.red(rowPixels[column]) + ","
81 + Color.green(rowPixels[column]) + ","
82 + Color.blue(rowPixels[column]) + "]";
  /packages/apps/Music/src/com/android/music/
SortCursor.java 185 public String getString(int column)
187 return mCursor.getString(column);
191 public short getShort(int column)
193 return mCursor.getShort(column);
197 public int getInt(int column)
199 return mCursor.getInt(column);
203 public long getLong(int column)
205 return mCursor.getLong(column);
209 public float getFloat(int column)
211 return mCursor.getFloat(column);
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 51 // Get table and column metadata from reflection.
62 ColumnInfo column = columns[i]; local
63 projection[i] = column.name;
64 if (column.fullText) {
86 for (ColumnInfo column : mColumnInfo) {
87 if (column.name.equals(columnName)) {
88 return column.projectionIndex;
105 for (ColumnInfo column : mColumnInfo) {
106 int columnIndex = column.projectionIndex;
107 Field field = column.field
251 ColumnInfo column = getColumn(columnName); local
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_getsrc_file.c 53 const char *fname, int lineno, int column,
80 file and line/column number. If any of the numbers is zero,
107 /* See whether line and possibly column match. */
110 || (column != 0 && column > line->column)))
123 || (column != 0
124 && (dwfl_line (match[inner])->column != line->column
125 || dwfl_line (match[inner])->column != column)))
    [all...]
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 22 struct Column {
32 Column(StringRef Str, unsigned Width)
35 Column &set(TrimKind Value) {
40 Column &set(AlignmentKind Value) {
48 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) {
54 void Column::render(raw_ostream &OS) const {
82 static Column column(StringRef Str, unsigned Width) { function
83 return Column(Str, Width);
87 static Column column(StringRef Str, unsigned Width, const T &Value) function
    [all...]

Completed in 3985 milliseconds

1 23 4 5 6 7 8 91011>>