/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/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
|
/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...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DictionaryProvider.java | 108 // Column names for the cursor returned by this content provider. 134 @Override public double getDouble(int column) { return 0; } 135 @Override public float getFloat(int column) { return 0; } 136 @Override public int getInt(int column) { return 0; } 137 @Override public short getShort(int column) { return 0; } 138 @Override public long getLong(int column) { return 0; } 140 @Override public String getString(final int column) { 141 switch (column) { 149 public boolean isNull(final int column) { 151 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/third_party/libjingle/source/talk/xmllite/ |
xmlparser.cc | 265 XmlParser::ParseContext::SetPosition(int line, int column, 268 column_number_ = column; 274 unsigned long * column, 280 if (column != NULL) { 281 *column = static_cast<unsigned long>(column_number_);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
AllocationProfile.js | 60 var columnOffset = functionInfoFields.indexOf("column"); 185 column: functionInfo.column, 259 WebInspector.FunctionAllocationInfo = function(functionName, scriptName, scriptId, line, column) 265 this.column = column;
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlparser.cc | 252 XmlParser::ParseContext::SetPosition(int line, int column, 255 column_number_ = column; 261 unsigned long * column, 267 if (column != NULL) { 268 *column = static_cast<unsigned long>(column_number_);
|
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 155 LogUtils.e(TAG, "Unsupported column: " + columnName); 235 final String column = projection[i]; local 236 if (column.equals(Directory.ACCOUNT_NAME)) { 238 } else if (column.equals(Directory.ACCOUNT_TYPE)) { 240 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) { 252 } else if (column.equals(Directory.DISPLAY_NAME)) { 264 } else if (column.equals(Directory.EXPORT_SUPPORT)) { 266 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) { 390 final String column = projection[i]; local 391 if (Contacts.DISPLAY_NAME.equals(column) || [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
file_table.js | 13 * Custom column model for advanced auto-resizing. 38 * Minimum width of column. 46 * Sets column width so that the column dividers move to the specified position. 47 * This function also check the width of each column and keep the width larger 51 * @param {Array.<number>} newPos Positions of each column dividers. 92 var column = this.columns_[i]; 93 sum += column.width; 101 * Handles to the start of column resizing by splitters. 111 * Handles to the end of column resizing by splitters [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/BasicSyncAdapterSample/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/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...] |
/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...] |
/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;
|
/external/chromium_org/net/ftp/ |
ftp_util_unittest.cc | 229 int column; member in struct:__anon9082::__anon9088 245 kTestCases[i].text, kTestCases[i].column)); 249 ASCIIToUTF16(kTestCases[i].text), kTestCases[i].column));
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
renderpix.c | 123 const GLvoid * column) 156 column, pc, NULL); 189 (*gc->fillImage) (gc, 1, height, 1, 1, format, type, column,
|
/external/chromium_org/ui/views/controls/table/ |
table_utils_unittest.cc | 30 ui::TableColumn column; local 31 column.width = width; 32 return column; 57 // Verifies if no size is specified the last column gets all the available 72 // Verifies a single column with a percent=1 is resized correctly. 94 // Verify padding for the first column is honored. 102 // Just enough space to show the first two columns. Should force last column
|
/external/mesa3d/src/glx/ |
renderpix.c | 123 const GLvoid * column) 156 column, pc, NULL); 189 (*gc->fillImage) (gc, 1, height, 1, 1, format, type, column,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
TreeWidget.py | 43 row = column = 0 49 label.grid(row=row, column=column) 51 label.grid(row=row+1, column=column) 52 column = column + 1 53 if column >= 10: 55 column = 0 419 self.canvas.grid(row=0, column=0, sticky="nsew" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
TreeWidget.py | 43 row = column = 0 49 label.grid(row=row, column=column) 51 label.grid(row=row+1, column=column) 52 column = column + 1 53 if column >= 10: 55 column = 0 419 self.canvas.grid(row=0, column=0, sticky="nsew" [all...] |
/external/chromium_org/third_party/freetype/src/base/ |
ftlcdfil.c | 103 FT_Byte* column = bitmap->buffer; local 107 for ( ; width > 0; width--, column++ ) 109 FT_Byte* col = column; 228 FT_Byte* column = bitmap->buffer; local 231 for ( ; width > 0; width--, column++ ) 233 FT_Byte* col = column;
|
/external/freetype/src/base/ |
ftlcdfil.c | 103 FT_Byte* column = bitmap->buffer; local 107 for ( ; width > 0; width--, column++ ) 109 FT_Byte* col = column; 228 FT_Byte* column = bitmap->buffer; local 231 for ( ; width > 0; width--, column++ ) 233 FT_Byte* col = column;
|
/external/libffi/src/alpha/ |
osf.S | 311 .byte 26 # CIE RA Column 315 .byte 30 # uleb128 column 30 329 .byte 0x9a # DW_CFA_offset, column 26 331 .byte 0x8f # DW_CFA_offset, column 15 334 .byte 15 # uleb128 column 15 339 .byte 0xda # DW_CFA_restore, column 26 358 .byte 0x9a # DW_CFA_offset, column 26
|