Searched defs:column (Results 151 - 175 of 259) sorted by relevance

1234567891011

/external/jsoncpp/src/lib_json/
H A Djson_reader.cpp838 int &column ) const
859 // column & line start at 1
860 column = int(location - lastLineStart) + 1;
868 int line, column; local
869 getLocationLineAndColumn( location, line, column );
871 sprintf( buffer, "Line %d, Column %d", line, column );
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c250 int column = 1; local
255 column = 1;
258 ++column;
262 debug_printf( "\nTGSI asm error: %s [%d : %d] \n", msg, line, column );
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_disasm.c412 static int column; variable
417 column += strlen (string);
436 column = 0;
444 while (column < c);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DTextFormat.java398 * of delimiters, making it impossible to keep track of line and column
415 // The line and column numbers of the current token.
417 private int column = 0; field in class:TextFormat.Tokenizer
419 // The line and column numbers of the previous token (allows throwing
461 previousColumn = column;
467 column = 0;
469 ++column;
737 * Returns a {@link ParseException} with the current line and column
741 // Note: People generally prefer one-based line and column numbers.
743 (line + 1) + ":" + (column
[all...]
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc86 void AddError(const string& filename, int line, int column, argument
89 filename, line, column, message);
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc242 void Parser::AddError(int line, int column, const string& error) { argument
244 error_collector_->AddError(line, column, error);
250 AddError(input_->current().line, input_->current().column, error);
256 int line, int column) {
258 source_location_table_->Add(descriptor, location, line, column);
266 input_->current().line, input_->current().column);
357 AddError(syntax_token.line, syntax_token.column,
480 name_token.line, name_token.column);
486 AddError(name_token.line, name_token.column,
1103 int* line, int* column) cons
253 RecordLocation( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int line, int column) argument
1117 Add( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int line, int column) argument
[all...]
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliFlexLexer.java2865 public void setColumn(int column) { argument
2866 this.yycolumn = column;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb163 } line #{ e.line }:#{ e.column }
230 attr_reader :column
518 def column method in class:ANTLR3.CommonTree
519 if @token.nil? or @token.column == -1
520 return( empty? ? 0 : first.column )
522 return @token.column
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_win.h290 long column,
299 CONTENT_EXPORT STDMETHODIMP get_columnDescription(long column,
303 long column,
327 long column,
350 CONTENT_EXPORT STDMETHODIMP get_isColumnSelected(long column,
357 long column,
362 long* column,
371 CONTENT_EXPORT STDMETHODIMP selectColumn(long column) { argument
379 CONTENT_EXPORT STDMETHODIMP unselectColumn(long column) { argument
396 long column,
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
H A DSourceFrame.js233 * @param {number=} column
236 revealPosition: function(line, column, shouldHighlight)
240 this._positionToReveal = { line: line, column: column, shouldHighlight: shouldHighlight };
252 this._textEditor.revealPosition(this._positionToReveal.line, this._positionToReveal.column, this._positionToReveal.shouldHighlight);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp793 template <J_COLOR_SPACE colorSpace> void setPixel(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) argument
798 template <> void setPixel<JCS_RGB>(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) argument
800 JSAMPLE* jsample = *samples + column * 3;
804 template <> void setPixel<JCS_CMYK>(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) argument
806 JSAMPLE* jsample = *samples + column * 4;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebAXObject.cpp940 WebAXObject WebAXObject::cellForColumnAndRow(unsigned column, unsigned row) const argument
948 AXTableCell* cell = toAXTable(m_private.get())->cellForColumnAndRow(column, row);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DDynamicHLSL.cpp190 int column = 0; local
194 if (space[x] >= registers && (space[column] < registers || space[x] < space[column]))
196 column = x;
200 if (space[column] >= registers)
204 if (!packing[r][column])
207 varying->columnIndex = column;
211 packing[y][column] = &*varying;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_function.cpp854 * Generate assignment of a portion of a vector to a portion of a matrix column
857 * \param column Column of destination to be assiged
858 * \param row_base First component of the destination column to be assigned
866 assign_to_matrix_column(ir_variable *var, unsigned column, unsigned row_base, argument
870 ir_constant *col_idx = new(mem_ctx) ir_constant(column);
877 * that are to be assigned to the column of the matrix.
957 /* Assign the temporary vector to each column of the destination matrix
960 * get assigned into the column at all (i.e., when the matrix has more
999 * (column i, row j) in the result that has a corresponding
1000 * component (column
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs.cpp512 const glsl_type *column = glsl_type::get_instance(GLSL_TYPE_FLOAT, local
517 offset += setup_uniform_values(loc + offset, column);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dnvfragparse.c167 GLint line, column; local
170 parseState->pos, &line, &column);
172 "nvfragparse.c(%d): line %d, column %d:%s (%s)\n",
173 lineNo, line, column, (char *) lineStr, msg);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc192 void AddError(const string& filename, int line, int column, argument
205 // Users typically expect 1-based line/column numbers, so we add 1
211 cerr << ":" << (line + 1) << ":" << (column + 1);
214 cerr << "(" << (line + 1) << ") : error in column=" << (column + 1);
223 void AddError(int line, int column, const string& message) { argument
224 AddError("input", line, column, message);
H A Dparser.cc285 void Parser::AddError(int line, int column, const string& error) { argument
287 error_collector_->AddError(line, column, error);
293 AddError(input_->current().line, input_->current().column, error);
302 location_->add_span(parser_->input_->current().column);
328 location_->add_span(parser_->input_->current().column);
343 location_->set_span(1, token.column);
475 AddError(syntax_token.line, syntax_token.column,
732 AddError(name_token.line, name_token.column,
947 // TODO(sanjay): Interpret line/column numbers to preserve formatting
1584 int* line, int* column) cons
1598 Add( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int line, int column) argument
[all...]
H A Dparser_unittest.cc69 void AddError(int line, int column, const string& message) { argument
71 line, column, message);
89 int line, column; local
90 source_locations_.Find(descriptor, location, &line, &column);
91 wrapped_collector_->AddError(line, column, message);
1089 // column numbers. We have one test for every call to RecordLocation() in
1668 int column = 0; local
1675 ++column;
1677 markers_[*text] = make_pair(line, column);
1683 column
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dtext_format.cc282 ReportError(tokenizer_.current().line, tokenizer_.current().column,
289 ReportWarning(tokenizer_.current().line, tokenizer_.current().column,
317 int start_column = tokenizer_.current().column;
884 virtual void AddError(int line, int column, const string& message) { argument
885 parser_->ReportError(line, column, message);
888 virtual void AddWarning(int line, int column, const string& message) { argument
889 parser_->ReportWarning(line, column, message);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
H A Ddwarf2-line.c103 unsigned long column; member in struct:dwarf2_line_state
369 if (state->column != loc->column) {
370 state->column = loc->column;
372 yasm_intnum_create_uint(state->column));
607 state.column = 0;
622 bcinfo.loc.column = 0;
961 loc->column = 0;
970 /* Optional column numbe
[all...]
/external/chromium_org/ui/views/controls/table/
H A Dtable_view.cc135 visible_column.column = columns[i];
205 visible_column.column = FindColumnByID(id);
209 if (visible_columns_[i].column.id == id) {
225 if (!visible_columns_[visible_column_index].column.sortable)
227 const int column_id = visible_columns_[visible_column_index].column.id;
243 if (visible_columns_[i].column.id == id)
296 // recalculating column sizes.
512 // Always paint the icon in the first visible column.
527 model_->GetText(model_index, visible_columns_[j].column.id),
535 visible_columns_[j].column
882 const int column = GetClosestVisibleColumnIndex(this, x); local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc1599 int script_id, int line, int column) {
1606 CHECK_EQ(column, node->GetColumnNumber());
1596 CheckFunctionDetails(v8::Isolate* isolate, const v8::CpuProfileNode* node, const char* name, const char* script_name, int script_id, int line, int column) argument
/external/clang/tools/libclang/
H A DIndexing.cpp1068 unsigned *column,
1073 if (column) *column = 0;
1082 IndexCtx.translateLoc(Loc, indexFile, file, line, column, offset);
1064 clang_indexLoc_getFileLocation(CXIdxLoc location, CXIdxClientFile *indexFile, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
H A DIndexingContext.cpp886 unsigned *line, unsigned *column,
908 if (column)
909 *column = SM.getColumnNumber(FID, FileOffset);
884 translateLoc(SourceLocation Loc, CXIdxClientFile *indexFile, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument

Completed in 3072 milliseconds

1234567891011