Searched defs:column (Results 26 - 50 of 259) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextPosition.h63 TextPosition(OrdinalNumber line, OrdinalNumber column) argument
65 , m_column(column)
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVariablePacker.cpp84 unsigned VariablePacker::makeColumnFlags(int column, int numComponentsPerRow) argument
87 kColumnMask) >> column;
90 void VariablePacker::fillColumns(int topRow, int numRows, int column, int numComponentsPerRow) argument
92 unsigned columnFlags = makeColumnFlags(column, numComponentsPerRow);
100 bool VariablePacker::searchColumn(int column, int numRows, int* destRow, int* destSize) argument
116 unsigned columnFlags = makeColumnFlags(column, 1);
175 // Packs the 4 column variables.
189 // Packs the 3 column variables.
205 // Packs the 2 column variables.
233 // Packs the 1 column variable
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftlcdfil.c103 FT_Byte* column = bitmap->buffer; local
107 for ( ; width > 0; width--, column++ )
109 FT_Byte* col = column;
228 FT_Byte* column = bitmap->buffer; local
231 for ( ; width > 0; width--, column++ )
233 FT_Byte* col = column;
/external/chromium_org/third_party/mesa/src/src/glx/
H A Drenderpix.c123 const GLvoid * column)
156 column, pc, NULL);
189 (*gc->fillImage) (gc, 1, height, 1, 1, format, type, column,
120 __indirect_glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * row, const GLvoid * column) argument
H A Dsinglepix.c39 GLvoid * row, GLvoid * column, GLvoid * span)
96 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
113 GLvoid * column, GLvoid * span)
123 p(target, format, type, row, column, span);
187 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf, column);
38 __indirect_glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) argument
111 gl_dispatch_stub_GetSeparableFilterEXT(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) argument
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dimagepairset_test.py16 import column namespace
140 # The 'builder' column header uses the default settings,
141 # but the 'test' column header has manual adjustments.
144 column.ColumnHeaderFactory(
/external/chromium_org/ui/views/controls/table/
H A Dtable_utils.cc21 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,
17 WidthForContent(const gfx::FontList& header_font_list, const gfx::FontList& content_font_list, int padding, int header_padding, const ui::TableColumn& column, ui::TableModel* model) argument
73 const ui::TableColumn& column = columns[i]; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceinfo.js70 // This is the last column of last line (note: starting at 0 and +2, due
103 // column progresses as expected.
106 var column; variable
112 assertEquals(column + 1, location.column);
115 assertEquals(0, location.column);
120 assertEquals(0, location.column);
126 column = location.column;
133 for (column
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_getsrc_file.c1 /* Find line information for given file/line/column triple.
64 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, argument
102 file and line/column number. If any of the numbers is zero,
129 /* See whether line and possibly column match. */
132 || (column != 0 && column > line->column)))
145 || (column != 0
146 && (match[inner]->column != line->column
[all...]
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_getsrc_file.c56 const char *fname, int lineno, int column,
96 file and line/column number. If any of the numbers is zero,
123 /* See whether line and possibly column match. */
126 || (column != 0 && column > line->column)))
139 || (column != 0
140 && (dwfl_line (match[inner])->column != line->column
141 || dwfl_line (match[inner])->column !
55 dwfl_module_getsrc_file(Dwfl_Module *mod, const char *fname, int lineno, int column, Dwfl_Line ***srcsp, size_t *nsrcs) argument
[all...]
/external/freetype/src/base/
H A Dftlcdfil.c105 FT_Byte* column = bitmap->buffer; local
109 for ( ; width > 0; width--, column++ )
111 FT_Byte* col = column;
229 FT_Byte* column = bitmap->buffer; local
232 for ( ; width > 0; width--, column++ )
234 FT_Byte* col = column;
/external/lldb/include/lldb/Symbol/
H A DDeclaration.h24 /// the column info and can help track where functions, blocks, inlined
45 /// Construct with file specification, and optional line and column.
55 /// @param[in] column
56 /// The column number that describes where this was declared.
57 /// Set to zero if there is no column number information.
59 Declaration (const FileSpec& file_spec, uint32_t line = 0, uint32_t column = 0) :
63 ,m_column (column)
98 /// Sets the file specification to be empty, and the line and column
116 /// line number and column numbers respectively.
147 /// Get accessor for the declaration column numbe
228 SetColumn(uint32_t column) argument
[all...]
/external/lldb/source/Core/
H A DStreamString.cpp81 StreamString::FillLastLineToColumn (uint32_t column, char fill_char) argument
95 if (column > line_columns)
97 m_packet.append(column - line_columns, fill_char);
/external/mesa3d/src/glx/
H A Drenderpix.c123 const GLvoid * column)
156 column, pc, NULL);
189 (*gc->fillImage) (gc, 1, height, 1, 1, format, type, column,
120 __indirect_glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid * row, const GLvoid * column) argument
H A Dsinglepix.c39 GLvoid * row, GLvoid * column, GLvoid * span)
96 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
113 GLvoid * column, GLvoid * span)
123 p(target, format, type, row, column, span);
187 __glEmptyImage(gc, 1, height, 1, 1, format, type, buf, column);
38 __indirect_glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) argument
111 gl_dispatch_stub_GetSeparableFilterEXT(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) argument
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dfxft_ftlcdfil.c104 FT_Byte* column = bitmap->buffer; local
108 for ( ; width > 0; width--, column++ )
110 FT_Byte* col = column;
229 FT_Byte* column = bitmap->buffer; local
232 for ( ; width > 0; width--, column++ )
234 FT_Byte* col = column;
/external/pixman/demos/
H A Dconical-test.c79 int column = i % GRADIENTS_PER_ROW; local
89 0, 0, 0, 0, column * SIZE, row * SIZE,
/external/skia/gm/rebaseline_server/
H A Dimagepairset.py16 import column namespace
78 column_id: string; unique ID of this column (must match a key within
88 column_id: string; unique ID of this column (must match a key within
93 column_header_factory = column.ColumnHeaderFactory(header_text=column_id)
101 column_id: string; unique ID of this column
102 value: string; a possible value for this column
111 We use this information to generate tallies within the column header
116 column_id: string; unique ID of this column (must match a key within
118 value: string; a possible value for this column
130 """Returns all column header
[all...]
H A Dimagepairset_test.py16 import column namespace
131 # The 'builder' column header uses the default settings,
132 # but the 'test' column header has manual adjustments.
135 column.ColumnHeaderFactory(
/external/svox/pico/src/com/svox/pico/providers/
H A DSettingsProvider.java54 public String getString(int column){ argument
/external/bison/src/
H A Dlocation.c37 add_column_width (int column, char const *buf, size_t bufsize) argument
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);
79 column = add_column_width (column, NUL
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProviderSuggestionsCursor.java59 public String getString(int column) { argument
60 switch (column) {
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_context_observer.h18 int column,
22 column_number(column),
16 ErrorInfo(const base::string16& message, int line, int column, const GURL& url) argument
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DTableSectionPainter.cpp166 // 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;
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);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dconvolve.c156 GLsizei columnBufSize, GLvoid *column,
167 GLvoid *row, GLvoid *column, GLvoid *span)
170 INT_MAX, column, span);
175 _mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column) argument
154 _mesa_GetnSeparableFilterARB(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span) argument
166 _mesa_GetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span) argument

Completed in 3851 milliseconds

1234567891011