/prebuilts/go/linux-x86/src/text/scanner/ |
scanner.go | 32 Column int // column number, starting at 1 (character count per line) 44 s += fmt.Sprintf(":%d:%d", pos.Line, pos.Column) 124 column int // character count 125 lastLineLen int // length of last line in characters (for correct column reporting) 189 s.column = 0 247 s.column++ 268 s.column++ 278 s.column++ 287 s.lastLineLen = s.column [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
FreshValueGenerator.java | 711 @Generates private static <R, C, V> Table<R, C, V> freshTable(R row, C column, V value) { 712 return freshHashBasedTable(row, column, value); 716 R row, C column, V value) { 718 table.put(row, column, value); 724 freshRowSortedTable(R row, C column, V value) { 725 return freshTreeBasedTable(row, column, value); 730 freshTreeBasedTable(R row, C column, V value) { 732 table.put(row, column, value); 737 R row, C column, V value) { 738 return ImmutableTable.of(row, column, value) [all...] |
/external/v8/src/debug/ |
debug.js | 222 // column. 281 ScriptBreakPoint.prototype.column = function() { method in class:ScriptBreakPoint 295 ScriptBreakPoint.prototype.update_positions = function(line, column) { 297 this.column_ = column; 350 var column = this.column(); 352 // If the column is undefined the break is on the line. To help locate the 353 // first piece of breakable code on the line try to find the column on the 355 if (IS_UNDEFINED(column)) { 363 // Fill cache if needed and get column where the actual source starts [all...] |
/external/robolectric/v3/libs/ |
sqlite4java-0.282.jar | |
/prebuilts/misc/common/robolectric/3.1.1/lib/ |
sqlite4java-0.282.jar | |
/prebuilts/misc/common/robolectric/3.4.2/lib/ |
sqlite4java-0.282.jar | |
/prebuilts/misc/common/robolectric/3.5.1/lib/ |
sqlite4java-0.282.jar | |
/prebuilts/misc/common/robolectric/3.6.1/lib/ |
sqlite4java-0.282.jar | |
/prebuilts/tools/common/m2/repository/com/almworks/sqlite4java/sqlite4java/0.282/ |
sqlite4java-0.282.jar | |
/external/swiftshader/src/OpenGL/compiler/ |
Intermediate.cpp | [all...] |
/external/ImageMagick/scripts/ |
txt2html | 771 local($i, $column); 772 for($i=0, $column = 0; $i < $oldlen; $i++) 776 $column++; 778 $column += $tab_width - ($column % $tab_width); 781 $line = (" " x $column) . substr($line, $oldlen);
|
/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/icu/icu4c/source/common/ |
uchar.cpp | 527 u_getUnicodeProperties(UChar32 c, int32_t column) { 528 U_ASSERT(column>=0); 529 if(column>=propsVectorsColumns) { 533 return propsVectors[vecIndex+column]; 538 uprv_getMaxValues(int32_t column) { 539 switch(column) {
|
/frameworks/native/libs/math/include/math/ |
mat4.h | 45 * A 4x4 column-major matrix class. 47 * Conceptually a 4x4 matrix is a an array of 4 column double4: 80 * m[n] is the \f$ n^{th} \f$ column of the matrix and is a double4. 101 static constexpr size_t COL_SIZE = col_type::SIZE; // size of a column (i.e.: number of rows) 125 inline constexpr col_type const& operator[](size_t column) const { 128 assert(column < NUM_COLS); 130 return m_value[column]; 133 inline col_type& operator[](size_t column) { 134 assert(column < NUM_COLS); 135 return m_value[column]; [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatParser.java | 593 * Gets the current column number within the XML file. 595 private int column() { method in class:ExpatParser 596 return column(this.pointer); 599 private static native int column(long pointer); method in class:ExpatParser 691 return column(); 698 + ", column: " + getColumnNumber() + "]"; 730 * Includes line and column in the message. 744 String message, int line, int column) { 745 return "At line " + line + ", column " 746 + 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 | 136 private String getString(String column) { 137 int index = mCursor.getColumnIndexOrThrow(column); 142 private Integer getInt(String column) { 143 return mCursor.getInt(mCursor.getColumnIndexOrThrow(column)); 146 private Long getLong(String column) { 147 return mCursor.getLong(mCursor.getColumnIndexOrThrow(column));
|
/prebuilts/go/darwin-x86/src/cmd/internal/src/ |
pos_test.go | 105 // special case: unknown column (column too large to represent) 135 {makeLico(1, colMax+1), ":1", 1, 0}, // column too large
|
/prebuilts/go/linux-x86/src/cmd/internal/src/ |
pos_test.go | 105 // special case: unknown column (column too large to represent) 135 {makeLico(1, colMax+1), ":1", 1, 0}, // column too large
|
/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/pdfium/core/fpdfapi/render/ |
cpdf_dibsource.cpp | 861 for (int column = 0; column < m_Width; column++) { 879 for (int column = 0; column < m_Width; column++) { 914 for (int column = 0; column < m_Width; column++) { 939 for (int column = 0; column < m_Width; column++) [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser.h | 81 // and column numbers for errors reported by DescriptorPool during validation. 200 void AddError(int line, int column, const string& error); 202 // Invokes error_collector_->AddError() with the line and column number 529 // DescriptorPool when validating descriptors -- to line and column numbers 542 // *column with the line and column numbers. If not found, sets *line to 543 // -1 and *column to 0 (since line = -1 is used to mean "error has no exact 548 int* line, int* column) const; 553 int line, int 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);
|
/external/v8/src/profiler/ |
sampling-heap-profiler.cc | 219 int column = v8::AllocationProfile::kNoColumnNumberInfo; local 235 column = 1 + Script::GetColumnNumber(script, node->script_position_); 245 script_name, node->script_id_, node->script_position_, line, column, 265 // To resolve positions to line/column numbers, we will need to look up
|