/external/clang/bindings/python/tests/cindex/ |
test_location.py | 10 def assert_location(loc, line, column, offset): 12 assert loc.column == column 23 assert_location(one.location,line=1,column=5,offset=4) 24 assert_location(two.location,line=2,column=5,offset=13) 34 assert_location(one.location,line=2,column=5,offset=5) 35 assert_location(two.location,line=3,column=5,offset=14) 37 # adding a space should affect column on first line only 42 assert_location(one.location,line=1,column=6,offset=5) 43 assert_location(two.location,line=2,column=5,offset=14 [all...] |
test_diagnostics.py | 11 assert tu.diagnostics[0].location.column == 11 21 assert tu.diagnostics[0].location.column == 7 25 # assert tu.diagnostics[1].location.column == 11 33 assert tu.diagnostics[0].location.column == 26 37 assert tu.diagnostics[0].fixits[0].range.start.column == 26 39 assert tu.diagnostics[0].fixits[0].range.end.column == 30 47 assert tu.diagnostics[0].location.column == 16 52 assert tu.diagnostics[0].ranges[0].start.column == 20 54 assert tu.diagnostics[0].ranges[0].end.column == 27 70 assert d.location.column == 1 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridModel.java | 88 /** Width assigned to a newly added column with the Add Column action */ 113 * Array of positions (indexed by column) of the left edge of table cells; this 114 * corresponds to the column positions in the grid 125 * Array of positions (indexed by column) of the maximum right hand side bounds of a 126 * node in the given column; this represents the visual edge of a column even when the 127 * actual column is wider 231 * should be positioned at the given row and column. This will skip over any nodes 236 * @param column the target column of the new nod 469 int column = declaredColumnCount; local 504 int column = 0; local 548 int column = 0; local 559 assert nextColumn > column; local 581 assert nextColumn > column; local 761 int column = view.column; local 835 int column = view.column; local 1328 int column = Arrays.binarySearch(mLeft, x); local 1370 int column = Arrays.binarySearch(mLeft, x); local 1690 int column = view.column; local 1841 public int column; field in class:GridModel.ViewData [all...] |
/external/chromium_org/chrome/browser/history/android/ |
sqlite_cursor.cc | 83 jint column) { 84 base::string16 value = statement_->statement()->ColumnString16(column); 89 jlong SQLiteCursor::GetLong(JNIEnv* env, jobject obj, jint column) { 90 return statement_->statement()->ColumnInt64(column); 93 jint SQLiteCursor::GetInt(JNIEnv* env, jobject obj, jint column) { 94 return statement_->statement()->ColumnInt(column); 97 jdouble SQLiteCursor::GetDouble(JNIEnv* env, jobject obj, jint column) { 98 return statement_->statement()->ColumnDouble(column); 103 jint column) { 107 if (statement_->favicon_index() == column) { [all...] |
sqlite_cursor.h | 33 // Mapping to the column type definitions in java.sql.Types. 93 // Returns the given column value as jstring. 96 jint column); 98 // Returns the given column value as jlong. 99 jlong GetLong(JNIEnv* env, jobject obj, jint column); 101 // Returns the given column value as int. 102 jint GetInt(JNIEnv* env, jobject obj, jint column); 104 // Returns the given column value as double. 105 jdouble GetDouble(JNIEnv* env, jobject obj, jint column); 107 // Returns the given column value as jbyteArray [all...] |
/libcore/xml/src/main/java/org/xmlpull/v1/ |
XmlPullParserException.java | 14 protected int column = -1; field in class:XmlPullParserException 29 public XmlPullParserException(String s, int row, int column) { 32 this.column = column; 43 this.column = parser.getColumnNumber(); 51 public int getColumnNumber() { return column; }
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXARIAGrid.cpp | 119 AXTableColumn* column = toAXTableColumn(axCache->getOrCreate(ColumnRole)); local 120 column->setColumnIndex((int)i); 121 column->setParent(this); 122 m_columns.append(column); 123 if (!column->accessibilityIsIgnored()) 124 m_children.append(column);
|
/external/doclava/src/com/google/doclava/ |
SourcePositionInfo.java | 22 public SourcePositionInfo(String file, int line, int column) { 25 this.column = column; 31 this.column = that.column; 102 public int column; field in class:SourcePositionInfo
|
/external/chromium-trace/trace-viewer/src/cc/ |
raster_task_slice_view.css | 6 -webkit-flex-direction: column;
|
layer_viewer.css | 7 -webkit-flex-direction: column; 16 -webkit-flex-direction: column;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
ScriptCallFrame.cpp | 45 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column) 50 , m_column(column)
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
LensShadingMap.java | 102 * Get a single color channel gain factor from this lens shading map by its row and column. 105 * the column must be within the range [0, {@link #getColumnCount}), 114 * @param column within the range [0, {@link #getColumnCount}) 128 public float getGainFactor(final int colorChannel, final int column, final int row) { 131 } else if (column < 0 || column >= mColumns) { 132 throw new IllegalArgumentException("column out of range"); 137 return mElements[colorChannel + (row * mColumns + column) * COUNT ]; 141 * Get a gain factor vector from this lens shading map by its row and column. 144 * the column must be within the range [0, {@link #getColumnCount}).</p [all...] |
/frameworks/base/core/java/com/android/internal/database/ |
SortCursor.java | 185 public String getString(int column) 187 return mCursor.getString(column); 191 public short getShort(int column) 193 return mCursor.getShort(column); 197 public int getInt(int column) 199 return mCursor.getInt(column); 203 public long getLong(int column) 205 return mCursor.getLong(column); 209 public float getFloat(int column) 211 return mCursor.getFloat(column); [all...] |
/packages/apps/Music/src/com/android/music/ |
SortCursor.java | 185 public String getString(int column) 187 return mCursor.getString(column); 191 public short getShort(int column) 193 return mCursor.getShort(column); 197 public int getInt(int column) 199 return mCursor.getInt(column); 203 public long getLong(int column) 205 return mCursor.getLong(column); 209 public float getFloat(int column) 211 return mCursor.getFloat(column); [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
EntrySchema.java | 51 // Get table and column metadata from reflection. 62 ColumnInfo column = columns[i]; local 63 projection[i] = column.name; 64 if (column.fullText) { 86 for (ColumnInfo column : mColumnInfo) { 87 if (column.name.equals(columnName)) { 88 return column.projectionIndex; 105 for (ColumnInfo column : mColumnInfo) { 106 int columnIndex = column.projectionIndex; 107 Field field = column.field 251 ColumnInfo column = getColumn(columnName); local [all...] |
/external/elfutils/0.153/libdwfl/ |
dwfl_module_getsrc_file.c | 56 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 != column))) [all...] |
/external/lldb/source/Symbol/ |
LineEntry.cpp | 21 column(0), 47 column(_column), 62 column = 0; 130 if (column) 131 s->Printf(", column = %u", column); 169 if (column) 170 s->Printf(":%u", column); 228 // sequence, we don't care about the line, file, or column info. 239 if (a.column < b.column [all...] |
/external/chromium_org/v8/test/mjsunit/ |
debug-sourceinfo.js | 70 // 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 = 0; column < line_length_d; column++) { [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/ |
rule_list.css | 27 .pattern-column-header { 31 .setting-column-header {
|
/external/chromium_org/extensions/common/ |
stack_frame.cc | 55 size_t column = 1; local 60 &function, &source, &line, &column) && 63 &source, &line, &column)) { 68 column,
|
/external/lldb/scripts/Python/interface/ |
SBDeclaration.i | 13 "Specifies an association with a line and column for a variable." 47 SetColumn (uint32_t column); 62 __swig_getmethods__["column"] = GetColumn 63 if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
SortingCursorWrapper.java | 128 public double getDouble(int column) { 129 return mCursor.getDouble(column); 133 public float getFloat(int column) { 134 return mCursor.getFloat(column); 138 public int getInt(int column) { 139 return mCursor.getInt(column); 143 public long getLong(int column) { 144 return mCursor.getLong(column); 148 public short getShort(int column) { 149 return mCursor.getShort(column); [all...] |
/frameworks/base/core/jni/ |
android_database_CursorWindow.cpp | 48 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) { 52 row, column); 154 jint row, jint column) { 156 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window); 158 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column); 162 //throwExceptionWithRowCol(env, row, column); 169 jint row, jint column) { 171 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window); 173 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column); [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/ |
print_preview.css | 55 .two-column { 59 .right-column { 65 .right-column .checkbox, 66 .right-column .radio { 70 .right-column .checkbox label, 71 .right-column .radio label { 76 .right-column .radio input[type='radio'] { 81 .left-column { 89 .left-column h1 { 96 .two-column.visible .left-column [all...] |
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
PhotoPagerAdapter.java | 85 for(String column : PhotoQuery.PROJECTION) { 86 mColumnIndices.put(column, newCursor.getColumnIndexOrThrow(column)); 89 for(String column : PhotoQuery.OPTIONAL_COLUMNS) { 90 int index = newCursor.getColumnIndex(column); 92 mColumnIndices.put(column, index); 121 private String getString(Cursor cursor, String column) { 122 if (mColumnIndices.containsKey(column)) { 123 return cursor.getString(mColumnIndices.get(column));
|