Searched
refs:column (Results
601 -
625 of
2687) sorted by null
<<21222324252627282930>>
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
text_format.h | 358 int column; member in struct:google::protobuf::TextFormat::ParseLocation 360 ParseLocation() : line(-1), column(-1) {} 362 : line(line_param), column(column_param) {}
|
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/ |
parser.h | 82 // and column numbers for errors reported by DescriptorPool during validation. 198 void AddError(int line, int column, const string& error); 200 // Invokes error_collector_->AddError() with the line and column number 437 // DescriptorPool when validating descriptors -- to line and column numbers 450 // *column with the line and column numbers. If not found, sets *line to 451 // -1 and *column to 0 (since line = -1 is used to mean "error has no exact 456 int* line, int* column) const; 461 int line, int column);
|
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/ |
text_format.h | 229 int column; member in struct:google::protobuf::TextFormat::ParseLocation 231 ParseLocation() : line(-1), column(-1) {} 233 : line(line_param), column(column_param) {}
|
/cts/tests/pdf/src/android/graphics/pdf/cts/ |
PdfRendererTest.java | 229 for (int column = 0; column < 4; column++) { 230 probes[row * 4 + column] = bm.getPixel((int) (bm.getWidth() * (column + 0.5) / 4),
|
/cts/tests/tests/widget/src/android/widget/cts/util/ |
TestUtils.java | 225 for (int column = startColumn; column < endColumn; column++) { 226 @ColorInt int colorAtCurrPixel = rowPixels[column]; 233 + " but at position (" + row + "," + column + ") out of ("
|
/external/chromium-trace/catapult/devil/devil/android/ |
device_utils_devicetest.py | 247 # Check column names at each index match expected values. 249 for column, idx in device_utils._PS_COLUMNS.iteritems(): 250 column = column.upper() 252 header[idx], column, 253 'Expected column %s at index %d but found %s\nsource: %r' % ( 254 column, idx, header[idx], lines[0]))
|
/external/clang/tools/libclang/ |
CXLoadedDiagnostic.cpp | 154 unsigned int *column, 179 if (column) 180 *column = Loc.column; 286 LoadedLoc.column = SDLoc.Col;
|
/external/llvm/include/llvm/MC/ |
MCDwarf.h | 57 uint16_t Column; 74 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 76 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 89 /// \brief Get the Column of this MCDwarfLoc. 90 unsigned getColumn() const { return Column; } 107 /// \brief Set the Column of this MCDwarfLoc. 108 void setColumn(unsigned column) { 109 assert(column <= UINT16_MAX); 110 Column = column [all...] |