/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/ |
dwarf2-line.c | 103 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; [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
parser.cc | 285 void Parser::AddError(int line, int column, const string& error) { 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 [all...] |
importer.h | 91 // has the ability to determine exact line and column numbers of errors 183 // Line and column numbers are zero-based. A line number of -1 indicates 185 virtual void AddError(const string& filename, int line, int column,
|
/external/chromium_org/v8/src/ |
messages.js | 415 // Determine start, end and column. 422 var column = position - start; 428 column += this.column_offset; 432 return new SourceLocation(this, position, line, column, start, end); 437 * Get information on a specific source line and column possibly offset by a 439 * a line and column position. The fixed source position offset is typically 440 * used to find a source position in a function based on a line and column in 444 * @param {number} opt_column The column in within the line. Default value is 0 446 * source from where the line and column calculation starts. 459 // Default is first column. If on the first line add the offset within th [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
basic.rb | 276 exc.column.should == 10 319 exc.column.should == 6 370 exc.column.should == 3 423 exc.column.should == 1 486 exc.column.should == 1 555 exc.column.should == 1
|
/external/chromium_org/third_party/icu/source/common/ |
uchar.c | 520 u_getUnicodeProperties(UChar32 c, int32_t column) { 521 U_ASSERT(column>=0); 522 if(column>=propsVectorsColumns) { 526 return propsVectors[vecIndex+column]; 531 uprv_getMaxValues(int32_t column) { 532 switch(column) {
|
/external/clang/tools/libclang/ |
CXLoadedDiagnostic.cpp | 151 unsigned int *column, 176 if (column) 177 *column = Loc.column; 500 Loc.column = 0; 512 Loc.column = Record[offset++];
|
/external/icu/icu4c/source/common/ |
uchar.c | 520 u_getUnicodeProperties(UChar32 c, int32_t column) { 521 U_ASSERT(column>=0); 522 if(column>=propsVectorsColumns) { 526 return propsVectors[vecIndex+column]; 531 uprv_getMaxValues(int32_t column) { 532 switch(column) {
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
fpdf_edit_image.cpp | 286 for (FX_INT32 column = 0; column < BitmapWidth; column ++) {
334 for (FX_INT32 column = 0; column < BitmapWidth; column ++) {
|
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatParser.java | 589 * Gets the current column number within the XML file. 591 private int column() { method in class:ExpatParser 592 return column(this.pointer); 595 private static native int column(long pointer); method in class:ExpatParser 684 return column(); 691 + ", column: " + getColumnNumber() + "]"; 723 * Includes line and column in the message. 737 String message, int line, int column) { 738 return "At line " + line + ", column " 739 + column + ": " + message [all...] |
/packages/apps/Email/provider_src/com/android/email/provider/ |
ContentCache.java | 441 * Get a CacheToken for a row as specified by its id (_id column) 512 * @param id the _id column of the desired row 557 for (String column: projection) { 558 int columnIndex = c.getColumnIndex(column); 564 if (values != null && values.containsKey(column)) { 565 Object val = values.get(column); 569 value = values.getAsString(column); 571 values.remove(column);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadInfo.java | 143 private String getString(String column) { 144 int index = mCursor.getColumnIndexOrThrow(column); 149 private Integer getInt(String column) { 150 return mCursor.getInt(mCursor.getColumnIndexOrThrow(column)); 153 private Long getLong(String column) { 154 return mCursor.getLong(mCursor.getColumnIndexOrThrow(column));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTable.h | 149 // our column's width. In practice, horizontal border-spacing won't change often. 172 unsigned colToEffCol(unsigned column) const 175 return column; 179 for (unsigned c = 0; effColumn < numColumns && c + m_columns[effColumn].span - 1 < column; ++effColumn) 213 // Return the first column or column-group.
|
/external/clang/bindings/python/tests/cindex/ |
test_translation_unit.py | 183 assert location.column == 3 201 assert r.start.column == 2 203 assert r.end.column == 3
|
/external/clang/utils/ |
token-delta.py | 98 def __init__(self, type, data, flags, file, line, column): 104 self.column = column
|
/external/replicaisland/tools/ |
ExtractPoints.js | 119 var column = Math.floor(tile.centerX / tileSizeX); 122 tile.xOffset = column * tileSizeX; 128 var tileIndex = Math.floor(row * tilesPerRow + column);
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
KindSectionView.java | 210 final String column = mKind.fieldList.get(i).column; local 211 final String value = item.getAsString(column);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
MoreSuggestions.java | 166 final int column = getColumnNumber(index); local 167 if (column == 0) 169 if (column == numColumnInRow - 1)
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRDebugEventProxy.h | 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRDebugEventProxy.h | 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRDebugEventProxy.h | 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugEventProxy.h | 89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
token.rb | 43 column). 82 attr_accessor :column 142 self.column = orig.column 179 text_position = line > 0 ? "@ line #{ line } col #{ column } " : '' 214 :stop, :index, :line, :column ) 239 * <tt>column</tt> 249 :column => -1 266 token.input, token.start, token.stop, -1, token.line, token.column 272 line = 0, column = -1 [all...] |
/external/chromium_org/base/json/ |
json_parser.h | 216 // Sets the error information to |code| at the current column, based on 221 // Given the line and column number of an error, formats one of the error 223 static std::string FormatErrorMessage(int line, int column,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
sourcesView.css | 103 flex-direction: column; 158 flex-direction: column;
|