HomeSort by relevance Sort by last modified time
    Searched defs:column (Results 1 - 25 of 456) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextPosition.cpp 62 int column = offset - lineStartOffset; local
63 return TextPosition(OrdinalNumber::fromZeroBasedInt(lineIndex), OrdinalNumber::fromZeroBasedInt(column));
  /external/chromium_org/ui/views/controls/table/
table_utils_unittest.cc 30 ui::TableColumn column; local
31 column.width = width;
32 return column;
59 // Verifies if no size is specified the last column gets all the available
75 // Verifies a single column with a percent=1 is resized correctly.
101 // Verify padding for the first column is honored.
111 // Just enough space to show the first two columns. Should force last column
table_utils.cc 21 const ui::TableColumn& column,
24 if (!column.title.empty())
25 width = gfx::GetStringWidth(column.title, header_font_list) +
30 gfx::GetStringWidth(model->GetText(i, column.id), content_font_list);
49 const ui::TableColumn& column(columns[i]);
50 if (column.width <= 0) {
51 if (column.percent > 0) {
52 total_percent += column.percent;
54 content_widths[i] = gfx::GetStringWidth(column.title, header_font_list)
58 padding, header_padding, column,
73 const ui::TableColumn& column = columns[i]; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 39 /** {@code >= 0;} current output column (zero-based) */
40 private int column; field in class:IndentingWriter
105 if ((column == width) && (c != '\n')) {
107 column = 0;
114 if (column == 0) {
123 column = indent;
132 column++;
165 column = 0;
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 39 /** {@code >= 0;} current output column (zero-based) */
40 private int column; field in class:IndentingWriter
105 if ((column == width) && (c != '\n')) {
107 column = 0;
114 if (column == 0) {
123 column = indent;
132 column++;
165 column = 0;
  /external/bison/src/
location.h 38 /* If nonnegative, the (origin-1) column just after the boundary.
40 column count. If this is INT_MAX, the column number has
45 int column; member in struct:__anon5002
55 b->column = c;
67 res = a.column - b.column;
75 return (a.column == b.column
123 /* LOC_STR must be formatted as `file:line.column', it will be modified. *
    [all...]
location.c 32 INT_MAX) to COLUMN; otherwise, add mbsnwidth (BUF, BUFSIZE, 0) to
33 COLUMN. If an overflow occurs, or might occur but is undetectable,
34 return INT_MAX. Assume COLUMN is nonnegative. */
37 add_column_width (int column, char const *buf, size_t bufsize)
40 unsigned int remaining_columns = INT_MAX - column;
51 return width <= remaining_columns ? column + width : INT_MAX;
61 int column = cur->column; local
73 column = 1;
78 column = add_column_width (column, p0, p - p0)
    [all...]
  /external/chromium_org/extensions/common/
stack_frame.cc 55 size_t column = 1; local
60 &function, &source, &line, &column) &&
63 &source, &line, &column)) {
68 column,
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXARIAGrid.cpp 119 AXTableColumn* column = toAXTableColumn(axCache->getOrCreate(ColumnRole)); local
120 column->setColumnIndex((int)i);
121 column->setParent(this);
122 m_columns.append(column);
123 if (!column->accessibilityIsIgnored())
124 m_children.append(column);
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 39 /** {@code >= 0;} current output column (zero-based) */
40 private int column; field in class:IndentingWriter
105 if ((column == width) && (c != '\n')) {
107 column = 0;
114 if (column == 0) {
123 column = indent;
132 column++;
165 column = 0;
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 28 private final int column; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
43 * @param column number of a column in {@code resourceName} where error occurred (ignored if set
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
53 this.column = column;
57 int line, int column) {
68 if (column != UNKNOWN_POSITION)
    [all...]
  /external/lldb/include/lldb/Symbol/
LineEntry.h 150 uint16_t column; ///< The column number of the source line, or zero if there is no column information. member in struct:lldb_private::LineEntry
  /external/smali/util/src/main/java/org/jf/util/
WrappedIndentingWriter.java 54 /** &gt;= 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;
  /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/bison/examples/calc++/
position.hh 68 , column (c)
80 column = c;
83 /** \name Line and Column related manipulators
88 column = 1u;
92 /// (column related) Advance to the COUNT next columns.
95 column = std::max (1u, column + count);
103 /// Current column number.
104 unsigned int column; member in class:yy::position
142 && pos1.column == pos2.colum
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
console_logger.cc 71 int column = -1; local
72 if (message_dict->GetInteger("column", &column)) {
73 base::SStringPrintf(&line_column, "%d:%d", line, column);
  /external/chromium_org/net/ftp/
ftp_util_unittest.cc 232 int column; member in struct:__anon13865::__anon13871
248 kTestCases[i].text, kTestCases[i].column));
252 ASCIIToUTF16(kTestCases[i].text), kTestCases[i].column));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
MetricsSidebarPane.js 253 "table-column": true,
254 "table-column-group": true,
263 "table-column": true,
264 "table-column-group": true,
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
70 unsigned *column,
76 unsigned column; member in struct:clang::CXLoadedDiagnostic::Location
79 Location() : line(0), column(0), offset(0) {}
  /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/javasqlite/src/main/java/SQLite/
TableResult.java 45 * Column names of the result set.
48 public String column[]; field in class:TableResult
96 column = new String[0];
108 column = coldata;
109 ncolumns = column.length;
144 sb.append(column[i] == null ? "NULL" : column[i]);
  /external/pixman/demos/
conical-test.c 79 int column = i % GRADIENTS_PER_ROW; local
89 0, 0, 0, 0, column * SIZE, row * SIZE,
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Message.java 56 public int column = -1; field in class:Message
75 public void setColumn(int column) {
76 this.column = column;
104 if (column != -1) {
105 locationST.add("column", column+1);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8ScriptRunner.cpp 110 v8::Handle<v8::Integer> column = v8::Integer::New(isolate, scriptStartPosition.m_column.zeroBasedInt()); local
112 v8::ScriptOrigin origin(name, line, column, isSharedCrossOrigin);
  /external/chromium_org/third_party/WebKit/Source/core/paint/
TableSectionPainter.cpp 166 // the column group, column, row group, row, and then the cell.
167 RenderTableCol* column = m_renderTableSection.table()->colElement(cell->col()); local
168 RenderTableCol* columnGroup = column ? column->enclosingColumnGroup() : 0;
170 // Column groups and columns first.
171 // FIXME: Columns and column groups do not currently support opacity, and they are being painted "too late" in
176 cell->paintBackgroundsBehindCell(paintInfo, cellPoint, column);

Completed in 801 milliseconds

1 2 3 4 5 6 7 8 91011>>