HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 51 - 75 of 962) sorted by null

1 23 4 5 6 7 8 91011>>

  /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
1320 int column = Arrays.binarySearch(mLeft, x); local
1362 int column = Arrays.binarySearch(mLeft, x); local
1682 int column = view.column; local
1833 public int column; field in class:GridModel.ViewData
    [all...]
  /external/chromium_org/chrome/browser/history/android/
sqlite_cursor.cc 82 jint column) {
83 string16 value = statement_->statement()->ColumnString16(column);
88 jlong SQLiteCursor::GetLong(JNIEnv* env, jobject obj, jint column) {
89 return statement_->statement()->ColumnInt64(column);
92 jint SQLiteCursor::GetInt(JNIEnv* env, jobject obj, jint column) {
93 return statement_->statement()->ColumnInt(column);
96 jdouble SQLiteCursor::GetDouble(JNIEnv* env, jobject obj, jint column) {
97 return statement_->statement()->ColumnDouble(column);
102 jint column) {
106 if (statement_->favicon_index() == column) {
    [all...]
sqlite_cursor.h 32 // Mapping to the column type definitions in java.sql.Types.
92 // Returns the given column value as jstring.
95 jint column);
97 // Returns the given column value as jlong.
98 jlong GetLong(JNIEnv* env, jobject obj, jint column);
100 // Returns the given column value as int.
101 jint GetInt(JNIEnv* env, jobject obj, jint column);
103 // Returns the given column value as double.
104 jdouble GetDouble(JNIEnv* env, jobject obj, jint column);
106 // Returns the given column value as jbyteArray
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
70 unsigned *column,
76 unsigned column; member in struct:clang::CXLoadedDiagnostic::Location
79 Location() : line(0), column(0), offset(0) {}
  /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/
AccessibilityARIAGrid.cpp 120 AccessibilityTableColumn* column = static_cast<AccessibilityTableColumn*>(axCache->getOrCreate(ColumnRole)); local
121 column->setColumnIndex((int)i);
122 column->setParent(this);
123 m_columns.append(column);
124 if (!column->accessibilityIsIgnored())
125 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/chrome/browser/resources/options/
content_settings.css 29 #exception-column-headers {
35 #exception-column-headers > div {
39 #exception-pattern-column {
43 #exception-behavior-column {
  /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 36 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column)
40 , m_column(column)
  /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/libdwfl/
dwfl_module_getsrc_file.c 55 const char *fname, int lineno, int column,
95 file and line/column number. If any of the numbers is zero,
122 /* See whether line and possibly column match. */
125 || (column != 0 && column > line->column)))
138 || (column != 0
139 && (dwfl_line (match[inner])->column != line->column
140 || dwfl_line (match[inner])->column != 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/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 {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
SortingCursorWrapper.java 126 public double getDouble(int column) {
127 return mCursor.getDouble(column);
131 public float getFloat(int column) {
132 return mCursor.getFloat(column);
136 public int getInt(int column) {
137 return mCursor.getInt(column);
141 public long getLong(int column) {
142 return mCursor.getLong(column);
146 public short getShort(int column) {
147 return mCursor.getShort(column);
    [all...]
  /frameworks/base/core/jni/
android_database_CursorWindow.cpp 47 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) {
51 row, column);
153 jint row, jint column) {
155 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window);
157 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
161 //throwExceptionWithRowCol(env, row, column);
168 jint row, jint column) {
170 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window);
172 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
    [all...]
  /external/chromium_org/ui/views/controls/table/
table_header.cc 24 // The minimum width we allow a column to go down to.
98 const int title_width = font_.GetStringWidth(columns[i].column.title);
100 (columns[i].column.id == sorted_column_id &&
104 columns[i].column.alignment == ui::TableColumn::RIGHT) {
109 columns[i].column.title, font_, kTextColor,
112 TableColumnAlignmentToCanvasAlignment(columns[i].column.alignment));
121 ui::TableColumn::Alignment alignment = columns[i].column.alignment;
216 const TableView::VisibleColumn& column(table_->visible_columns()[index]);
217 if (x >= column.x && x < column.x + column.width && event.y() >= 0 &
    [all...]
  /external/clang/bindings/python/tests/cindex/
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...]
  /external/chromium_org/chrome/browser/resources/options/
content_settings.css 28 #exception-column-headers {
34 #exception-column-headers > div {
38 #exception-pattern-column {
42 #exception-behavior-column {
114 #media-column-header {
118 #media-audio-column {
122 #media-video-column {
  /external/chromium_org/third_party/opus/src/silk/
macros.h 126 #define matrix_ptr(Matrix_base_adr, row, column, N) *(Matrix_base_adr + ((row)*(N)+(column)))
127 #define matrix_adr(Matrix_base_adr, row, column, N) (Matrix_base_adr + ((row)*(N)+(column)))
129 /* Column based */
131 # define matrix_c_ptr(Matrix_base_adr, row, column, M) *(Matrix_base_adr + ((row)+(M)*(column)))
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerException.java 219 int column = locator.getColumnNumber(); local
231 if (0 != column) {
232 sbuffer.append("; Column#: ");
233 sbuffer.append(column);
252 int column = locator.getColumnNumber(); local
264 if (0 != column) {
265 sbuffer.append("; Column#: ");
266 sbuffer.append(column);

Completed in 1050 milliseconds

1 23 4 5 6 7 8 91011>>