/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/ |
Picker.java | 161 * supply the {@link Picker}'s column's height in pixels. 322 ScrollAdapterView column = mColumnViews.get(j); local 323 int selected = column.getSelectedItemPosition(); 324 for (int i = 0; i < column.getAdapter().getCount(); i++) { 325 item = column.getItemView(i); 328 // set alpha for main item (selected) in the column 363 private void updateColumn(ScrollAdapterView column, boolean animateAlpha, 365 if (column == null) { 369 int selected = column.getSelectedItemPosition(); 371 boolean focused = column.hasFocus() [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 13 the starting (row, column) indices of the token (a 2-tuple of ints) 14 the ending (row, column) indices of the token (a 2-tuple of ints) 356 column where the token begins in the source; a 2-tuple (erow, ecol) of 357 ints specifying the row and column where the token ends in the source; 398 column = 0 400 if line[pos] == ' ': column = column + 1 401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize 402 elif line[pos] == '\f': column = [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 13 the starting (row, column) indices of the token (a 2-tuple of ints) 14 the ending (row, column) indices of the token (a 2-tuple of ints) 356 column where the token begins in the source; a 2-tuple (erow, ecol) of 357 ints specifying the row and column where the token ends in the source; 398 column = 0 400 if line[pos] == ' ': column = column + 1 401 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize 402 elif line[pos] == '\f': column = [all...] |
/external/chromium_org/testing/gtest/scripts/ |
pump.py | 88 """Represents a position (line and column) in a text file.""" 90 def __init__(self, line=-1, column=-1): 92 self.column = column 95 return self.line == rhs.line and self.column == rhs.column 102 self.line == rhs.line and self.column < rhs.column) 117 return '%s(%s)' % (self.line + 1, self.column) 120 return Cursor(self.line, self.column + offset [all...] |
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
viewrtree.tcl | 89 grid configure .select -row 0 -column 0 -columnspan 2 -sticky nsew 90 grid configure .b -row 1 -column 0 -columnspan 2 -sticky nsew 91 grid configure .l -row 2 -column 0 -sticky nsew 92 grid configure .status -row 3 -column 0 -columnspan 3 -sticky nsew 94 grid configure .title -row 0 -column 2 -sticky nsew 95 grid configure .c -row 1 -column 2 -rowspan 2 -sticky nsew 96 grid configure .ls -row 2 -column 1 -sticky nsew
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridLayoutPainter.java | 69 for (int column = 0; column < grid.actualColumnCount; column++) { 70 int x = grid.getColumnX(column); 276 for (int column = 1; column < grid.actualColumnCount; column++) { 277 int x = grid.getColumnX(column); 287 int column = columnMatch.cellIndex; local 292 Rect cellBounds = grid.getCellBounds(row, column, 1, 1) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
TableRow_LayoutParamsTest.java | 62 assertEquals(-1, layoutParams.column); 70 assertEquals(-1, layoutParams.column); 75 assertEquals(-1, layoutParams.column); 79 assertEquals(5, layoutParams.column); 85 assertEquals(0, layoutParams.column); 91 assertEquals(0, layoutParams.column); 100 assertEquals(1, layoutParams.column);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
error.rb | 107 attr_accessor :input, :index, :line, :column, :symbol, :token, :source_name 110 @index = @line = @column = nil 119 @column = @symbol.column 123 @column = @input.column 126 if @symbol.respond_to?( :line ) and @symbol.respond_to?( :column ) 127 @line, @column = @symbol.line, @symbol.column 133 if @symbol.respond_to?( :line ) and @symbol.respond_to?( :column ) [all...] |
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/new/js/ |
app.js | 42 // These column types are used by the Column class. 51 // Filter types are used by the Column class. 182 // Index of the column that should provide the sort key 188 // Array of functions for each column used for comparison during sort. 217 var otherCols = [ Column.regular(c.COL_BUGS) ]; 297 * @param {Column} col Column that we are trying to render. 299 * @param {string} defaultVal Default value if not an image column. 302 * of a image column [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DictionaryProvider.java | 111 // Column names for the cursor returned by this content provider. 138 @Override public double getDouble(int column) { return 0; } 139 @Override public float getFloat(int column) { return 0; } 140 @Override public int getInt(int column) { return 0; } 141 @Override public short getShort(int column) { return 0; } 142 @Override public long getLong(int column) { return 0; } 144 @Override public String getString(final int column) { 145 switch (column) { 154 public boolean isNull(final int column) { 156 return column != 0 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tokenize.py | 10 the starting (row, column) indices of the token (a 2-tuple of ints) 11 the ending (row, column) indices of the token (a 2-tuple of ints) 275 column where the token begins in the source; a 2-tuple (erow, ecol) of 276 ints specifying the row and column where the token ends in the source; 317 column = 0 320 column += 1 322 column = (column//tabsize + 1)*tabsize 324 column = 0 344 if column > indents[-1]: # count indents or dedent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tokenize.py | 10 the starting (row, column) indices of the token (a 2-tuple of ints) 11 the ending (row, column) indices of the token (a 2-tuple of ints) 275 column where the token begins in the source; a 2-tuple (erow, ecol) of 276 ints specifying the row and column where the token ends in the source; 317 column = 0 320 column += 1 322 column = (column//tabsize + 1)*tabsize 324 column = 0 344 if column > indents[-1]: # count indents or dedent [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
DirectoryContentView.js | 72 var column = this.sortColumnIdentifier(); 73 if (!column) 75 this.sortNodes(WebInspector.DirectoryContentView.Node.comparator(column), !this.isSortOrderAscending()); 104 * @param {string} column 107 WebInspector.DirectoryContentView.Node.comparator = function(column) 111 switch (column) {
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlparser.cc | 251 XmlParser::ParseContext::SetPosition(int line, int column, 254 column_number_ = column; 260 unsigned long * column, 266 if (column != NULL) { 267 *column = static_cast<unsigned long>(column_number_);
|
/external/chromium_org/third_party/webrtc/libjingle/xmllite/ |
xmlparser.cc | 234 XmlParser::ParseContext::SetPosition(int line, int column, 237 column_number_ = column; 243 unsigned long * column, 249 if (column != NULL) { 250 *column = static_cast<unsigned long>(column_number_);
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
DWARFDebugLine.h | 116 column(rhs.column), 132 column = rhs.column; 151 uint16_t column; // An unsigned integer indicating a column number within a source line. Columns are numbered beginning at 1. The value 0 is reserved to indicate that a statement begins at the 'left edge' of the line. member in struct:DWARFDebugLine::Row
|
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 170 LogUtils.e(TAG, "Unsupported column: " + columnName); 251 final String column = projection[i]; local 252 if (column.equals(Directory.ACCOUNT_NAME)) { 254 } else if (column.equals(Directory.ACCOUNT_TYPE)) { 256 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) { 268 } else if (column.equals(Directory.DISPLAY_NAME)) { 280 } else if (column.equals(Directory.EXPORT_SUPPORT)) { 282 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) { 406 final String column = projection[i]; local 407 if (Contacts.DISPLAY_NAME.equals(column) || [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
GridLayoutConverter.java | 98 * <li> Use the layout_width and layout_height attributes on views to infer column and 170 // row and/or a stretchable column in the layout. 171 // In a GridLayout, a row or column is stretchable if it defines a gravity (regardless 172 // of what the gravity is -- in other words, a column is not just stretchable if it 174 // in the row/column have to be stretchable for the overall row/column to be 213 // TODO: May also have to increment column count! 227 int column = columnFixed.size(); local 258 sb.append(ATTR_LAYOUT_COLUMN).append('=').append('"').append(Integer.toString(column)); 344 int column = view.getColumn() local 667 int column = view.getColumn(); local 714 int column; local [all...] |
/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/ |
SelectionBuilder.java | 200 * <p>Map columns from a secondary table onto the current result set. References to the column 201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code 204 * @param column Column name to join on. Must be the same in both tables. 208 public SelectionBuilder mapToTable(String column, String table) { 209 mProjectionMap.put(column, table + "." + column); 214 * Create a new column based on custom criteria (such as aggregate functions). 216 * <p>This adds a new column to the result set, based upon custom criteria in SQL format. Thi [all...] |
/developers/build/prebuilts/gradle/SkeletonWearableApp/Wearable/src/main/java/com/example/android/google/wearable/app/ |
GridExampleActivity.java | 83 public Drawable getBackgroundForPage(int row, int column) { 84 Point pt = new Point(column, row); 97 c.drawText(column+ "-" + row, 100, 100, p);
|
/developers/samples/android/common/src/java/com/example/android/common/db/ |
SelectionBuilder.java | 200 * <p>Map columns from a secondary table onto the current result set. References to the column 201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code 204 * @param column Column name to join on. Must be the same in both tables. 208 public SelectionBuilder mapToTable(String column, String table) { 209 mProjectionMap.put(column, table + "." + column); 214 * Create a new column based on custom criteria (such as aggregate functions). 216 * <p>This adds a new column to the result set, based upon custom criteria in SQL format. Thi [all...] |
/developers/samples/android/wearable/wear/SkeletonWearableApp/Wearable/src/main/java/com/example/android/google/wearable/app/ |
GridExampleActivity.java | 83 public Drawable getBackgroundForPage(int row, int column) { 84 Point pt = new Point(column, row); 97 c.drawText(column+ "-" + row, 100, 100, p);
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/ |
SelectionBuilder.java | 200 * <p>Map columns from a secondary table onto the current result set. References to the column 201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code 204 * @param column Column name to join on. Must be the same in both tables. 208 public SelectionBuilder mapToTable(String column, String table) { 209 mProjectionMap.put(column, table + "." + column); 214 * Create a new column based on custom criteria (such as aggregate functions). 216 * <p>This adds a new column to the result set, based upon custom criteria in SQL format. Thi [all...] |
/development/samples/browseable/SkeletonWearableApp/Wearable/src/com.example.android.google.wearable.app/ |
GridExampleActivity.java | 83 public Drawable getBackgroundForPage(int row, int column) { 84 Point pt = new Point(column, row); 97 c.drawText(column+ "-" + row, 100, 100, p);
|
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/ |
var_array_buffer.cc | 75 /// <code>column</code> in <code>image_data</code>. <code>value</code> must be 77 void DrawBar(uint32_t column, double value, pp::ImageData* image_data) { 82 assert(column < image_width); 86 image_buffer[row * image_width + column] = kBlue;
|