/frameworks/base/core/java/android/widget/ |
TableRow.java | 95 * <p>Collapses or restores a given column.</p> 97 * @param columnIndex the index of the column 98 * @param collapsed true if the column must be collapsed, false otherwise 166 if (layoutParams.column >= virtualCount) { 167 virtualCount = layoutParams.column; 246 // fail silently when column widths are not available 285 * column, in this row 331 * on each child (or cell, or column.)</p> 333 * @param columnWidths the fixed width of each column that this row must 404 * <p>The column index of the cell represented by the widget.</p 407 public int column; field in class:TableRow.LayoutParams [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/tests/calllog/ |
FillCallLogTestActivity.java | 132 for (int column = 0; column < cursor.getColumnCount(); 133 ++column) { 134 String name = cursor.getColumnName(column); 135 switch (cursor.getType(column)) { 137 values.put(name, cursor.getString(column)); 140 values.put(name, cursor.getLong(column)); 143 values.put(name, cursor.getDouble(column)); 146 values.put(name, cursor.getBlob(column)); 152 Log.d(TAG, "Invalid value in cursor: " + cursor.getType(column)); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridDropHandler.java | 109 // Column matches: 178 int column = mGrid.getColumn(x1); local 181 int leftDistance = mGrid.getColumnDistance(column, x1); 182 int rightDistance = mGrid.getColumnDistance(column + 1, x1); 189 column = Math.min(column + 1, mGrid.actualColumnCount); 233 mColumnMatch = new GridMatch(horizontalType, 0, x1, column, createColumn, 0); 244 description.append(String.format("Shift column %1$d right", 262 int column = (mGrid.getViewCount() == 0) ? 0 : mGrid.getClosestColumn(x1); local 263 int columnX = mGrid.getColumnX(column); 477 int column = mColumnMatch.cellIndex; local 770 int column = mColumnMatch.cellIndex; local [all...] |
/external/chromium_org/third_party/lcov/bin/ |
genpng | 252 my $column; # Current column number during iteration 330 $column = 0; 334 if ($column >= $overview_width) { last; } 339 $overview->setPixel($column++, $row, 345 $overview->setPixel($column++, $row, 351 while ($column < $overview_width) 353 $overview->setPixel($column++, $row, $color_back);
|
/external/chromium_org/third_party/lcov-1.9/bin/ |
genpng | 255 my $column; # Current column number during iteration 333 $column = 0; 337 if ($column >= $overview_width) { last; } 342 $overview->setPixel($column++, $row, 348 $overview->setPixel($column++, $row, 354 while ($column < $overview_width) 356 $overview->setPixel($column++, $row, $color_back);
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
DefaultRenderingContext.java | 62 private int column; field in class:DefaultRenderingContext 120 autoEscapeContext.setCurrentPosition(line, column); 146 return "[" + getCurrentResourceName() + ":" + line + ":" + column + "]"; 156 autoEscapeContext.setCurrentPosition(line, column); 177 public void setCurrentPosition(int line, int column) { 181 this.column = column;
|
/frameworks/base/core/java/android/view/animation/ |
GridLayoutAnimationController.java | 148 * @param columnDelay the delay by which each column animation must be offset 159 * column to the other. The delay is expressed as a fraction of the 174 * children's animations are offset from one column to the other. 272 * will first play on the column, then on the rows.Z 305 final int column = getTransformedColumnIndex(params); local 324 viewDelay = (long) (row * rowDelay + column * rowsCount * rowDelay); 328 viewDelay = (long) (column * columnDelay + row * columnsCount * columnDelay); 333 viewDelay = (long) (column * columnDelay + row * rowDelay); 348 index = params.columnsCount - 1 - params.column; 358 index = params.column; 407 public int column; field in class:GridLayoutAnimationController.AnimationParameters [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
PhoneticNameEditorView.java | 156 public static boolean isUnstructuredPhoneticNameColumn(String column) { 157 return DataKind.PSEUDO_COLUMN_PHONETIC_NAME.equals(column); 182 public void onFieldChanged(String column, String value) { 183 if (!isFieldChanged(column, value)) { 198 if (isEditingUnstructuredPhoneticName == isUnstructuredPhoneticNameColumn(column)) { 201 super.onFieldChanged(column, value); 207 super.onFieldChanged(column, value);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
AccountType.java | 439 * the column where this field is stored. 442 public String column; field in class:AccountType.EditField 450 public EditField(String column, int titleRes) { 451 this.column = column; 455 public EditField(String column, int titleRes, int inputType) { 456 this(column, titleRes); 488 + " column=" + column
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Type_Definitions.py | 179 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem 180 """column - a column of a list view """ 187 """visible - is this column visible """ 191 """width - the width of this column """ 195 columns = column 201 """sort column - the column that the list view is sorted on """ 267 column._superclassnames = [] 268 column._privpropdict = [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
GameControllerInput.java | 390 TextColumn column = (TextColumn) mDataItems.get(id); local 391 if (column == null) { 392 column = new TextColumn(id, MotionEvent.axisToString(axis)); 393 mDataItems.put(id, column); 395 column.setContent(Float.toString(state.getAxisValue(i))); 396 mVisibleItems.add(column); 405 TextColumn column = (TextColumn) mDataItems.get(id); local 406 if (column == null) { 407 column = new TextColumn(id, KeyEvent.keyCodeToString(keyCode)); 408 mDataItems.put(id, column); [all...] |
/external/chromium/net/ftp/ |
ftp_util_unittest.cc | 181 int column; member in struct:__anon5470::__anon5475 197 kTestCases[i].text, kTestCases[i].column)); 201 ASCIIToUTF16(kTestCases[i].text), kTestCases[i].column));
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
flakiness_dashboard_tests.css | 49 /* Let the bugs column wrap. */ 145 -webkit-column-count: 3; 146 -webkit-column-gap: 25px; 147 -webkit-column-rule: 1px dashed black; 148 -moz-column-count: 3; 149 -moz-column-gap: 25px; 150 -moz-column-rule: 1px dashed black;
|
/external/chromium_org/third_party/icu/source/common/ |
propsvec.c | 153 int32_t column, 167 column<0 || column>=(pv->columns-2) 180 column+=2; /* skip range start and limit columns */ 194 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask)); 195 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); 264 firstRow+=column; 265 lastRow+=column; 277 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column) { 281 if(pv->isCompacted || c<0 || c>UPVEC_MAX_CP || column<0 || column>=(pv->columns-2)) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/ |
parse.py | 43 def __init__(self, type, name_or_data, attrs = None, line = None, column = None): 49 self.column = column 83 line, column = self.pos() 84 token = XmlToken(ELEMENT_START, name, attributes, line, column) 89 line, column = self.pos() 90 token = XmlToken(ELEMENT_END, name, None, line, column) 101 line, column = self.character_pos 102 token = XmlToken(CHARACTER_DATA, self.character_data, None, line, column) 123 line, column = self.pos( [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
tokenizer.h | 63 // column numbers. The numbers are zero-based, so you may want to add 65 virtual void AddError(int line, int column, const string& message) = 0; 68 // column numbers. The numbers are zero-based, so you may want to add 70 virtual void AddWarning(int line, int column, const string& message) { } 122 // "line" and "column" specify the position of the first character of 125 int column; member in struct:google::protobuf::io::Tokenizer::Token 247 // Line and column number of current_char_ within the whole input stream. 286 // Convenience method to add an error at the current line and column.
|
/external/chromium_org/ui/views/layout/ |
grid_layout.cc | 27 // Reset the layout width of each column. 38 // Reset the layout width of each column. 152 // Column ------------------------------------------------------------- 154 // As the name implies, this represents a Column. Column contains default 155 // values for views originating in this column. 156 class Column : public LayoutElement { 158 Column(GridLayout::Alignment h_align, 177 virtual ~Column() {} 188 Column* GetLastMasterColumn() 423 Column* column = new Column(h_align, v_align, resize_percent, size_type, local 441 Column* column = *i; local 503 Column* column = *i; local 631 Column* column = columns_[view_state->start_col]; local 746 Column* column = current_row_col_set_->columns_[next_column_]; local [all...] |
/external/icu4c/common/ |
propsvec.c | 154 int32_t column, 168 column<0 || column>=(pv->columns-2) 181 column+=2; /* skip range start and limit columns */ 195 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask)); 196 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask)); 265 firstRow+=column; 266 lastRow+=column; 278 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column) { 282 if(pv->isCompacted || c<0 || c>UPVEC_MAX_CP || column<0 || column>=(pv->columns-2)) [all...] |
/external/mesa3d/src/gallium/tools/trace/ |
parse.py | 43 def __init__(self, type, name_or_data, attrs = None, line = None, column = None): 49 self.column = column 83 line, column = self.pos() 84 token = XmlToken(ELEMENT_START, name, attributes, line, column) 89 line, column = self.pos() 90 token = XmlToken(ELEMENT_END, name, None, line, column) 101 line, column = self.character_pos 102 token = XmlToken(CHARACTER_DATA, self.character_data, None, line, column) 123 line, column = self.pos( [all...] |
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
AggregatorRecordStorage.java | 59 throw new RuntimeException("No column keys"); 91 // Notice that the column names are repeated for each row. 102 for (String column : mColumnNames) { 103 int columnIndex = cursor.getColumnIndex(column); 106 oneRow.put(column, value);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/ |
dbtables.py | 123 _data = '._DATA_.' # this+column+this+rowid key contains table data 318 # checking sanity of the table and column names here on 323 for column in columns : 324 if contains_metastrings(column): 326 "bad column name: contains reserved metastrings") 333 # store the table's column info 403 # load the current column list 407 # create a hash table for fast lookups of column names in the 413 # create a new column list containing both the old and new 414 # column name [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/ |
dbtables.py | 123 _data = '._DATA_.' # this+column+this+rowid key contains table data 318 # checking sanity of the table and column names here on 323 for column in columns : 324 if contains_metastrings(column): 326 "bad column name: contains reserved metastrings") 333 # store the table's column info 403 # load the current column list 407 # create a hash table for fast lookups of column names in the 413 # create a new column list containing both the old and new 414 # column name [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarAnalysisAbortedMessage.java | 47 column = decisionASTNode.getCharPositionInLine();
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/ |
plugin_list.css | 78 .column-headers { 83 .column-headers > div {
|
/external/chromium_org/native_client_sdk/src/examples/resources/ |
index.css | 12 .main-column { 17 -webkit-flex-direction: column;
|