/external/guava/guava/src/com/google/common/collect/ |
Tables.java | 53 * Returns an immutable cell with the specified row key, column key, and 59 * @param columnKey the column key to be associated with the returned cell 123 * Creates a transposed view of a given table that flips its row and column 155 public Map<C, V> column(R columnKey) { method in class:Tables.TransposeTable 217 return original.column(rowKey); 334 * <p>The views returned by the {@code Table} methods {@link Table#column}, 339 * <p>Lookups by row key are often faster than lookups by column key, because 341 * {@code column(columnKey).get(rowKey)} still runs quickly, since the row key 342 * is provided. However, {@code column(columnKey).size()} takes longer, since 358 * corresponding column key / value ma 467 @Override public Map<R, V2> column(C columnKey) { method in class:Tables.TransformedTable [all...] |
/external/icu/icu4c/source/common/ |
uprops.h | 224 u_getUnicodeProperties(UChar32 c, int32_t column); 228 * Use the same column numbers as for u_getUnicodeProperties(). 235 * For other column numbers, this function will return 0. 240 uprv_getMaxValues(int32_t column);
|
/external/protobuf/src/google/protobuf/io/ |
tokenizer.cc | 53 // escape sequence at line 5, column 45", you get error messages like 195 current_.column = 0; 213 // Update our line and column counters based on the character being 268 current_.column = column_; 485 current_.column = column_ - 1; 553 current_.column = column_;
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
MockProvider.java | 172 for (String column: projection) { 173 rowValues[i++] = cv.get(column);
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
TestProvider.java | 172 for (String column : projection) { 173 rowValues[i++] = cv.get(column);
|
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
VoiceContact.java | 312 int column = cursor.getColumnIndexOrThrow(CallLog.Calls.NUMBER); local 313 number = cursor.getString(column);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
ExpectedKeyboardBuilder.java | 28 * an {@link ExpectedKey} can be specified by a row number and a column number, both numbers starts 214 * @param column the column number to insert the <code>keys</code>. 215 * @param keys the array of keys to insert at <code>row,column</code>. Each key can be 218 * @throws RuntimeException if <code>row</code> or <code>column</code> is illegal. 220 public ExpectedKeyboardBuilder insertKeysAtRow(final int row, final int column, 224 setElementAt(row, column + index, expectedKeys[index], true /* insert */);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/ |
LayoutTestsBase.java | 180 final int column = c + 1; local 184 assertTrue(tag + " labels row,column=" + row + "," + column
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
configHelpSourceEdit.py | 71 self.buttonOk.grid(row=0, column=0, padx=5,pady=5) 74 self.buttonCancel.grid(row=0, column=1, padx=5, pady=5)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
__init__.py | 142 getbaseclasses(column) 217 'lvcl' : column,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
configHelpSourceEdit.py | 71 self.buttonOk.grid(row=0, column=0, padx=5,pady=5) 74 self.buttonCancel.grid(row=0, column=1, padx=5, pady=5)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
AddTranslationDialog.java | 312 TableColumn column = mTable.getColumn(i); local 313 availableWidth -= column.getWidth(); 316 TableColumn column = mTable.getColumn(DEFAULT_TRANSLATION_COLUMN); local 317 column.setWidth(column.getWidth() + availableWidth / 2); 318 column = mTable.getColumn(NEW_TRANSLATION_COLUMN); 319 column.setWidth(column.getWidth() + availableWidth / 2 + availableWidth % 2); 570 /** Editing support for the translation column */
|
/external/guava/guava-tests/test/com/google/common/collect/ |
TableCollectionTest.java | 118 // since the transformation doesn't affect the row and column key sets. 558 return table.column(1).keySet(); 561 .named("ArrayTable.column.keySet") 571 return table.column(1).keySet(); 574 .named("HashBasedTable.column.keySet") 583 return table.column(1).keySet(); 590 .named("TreeBasedTable.column.keySet") 599 return Tables.transformValues(table, Functions.toStringFunction()).column(1).keySet(); 602 .named("TransformValues.column.keySet") 611 return Tables.unmodifiableTable(table).column(1).keySet() [all...] |
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
json_reader.cpp | 840 int &column ) const 861 // column & line start at 1 862 column = int(location - lastLineStart) + 1; 870 int line, column; local 871 getLocationLineAndColumn( location, line, column ); 873 sprintf( buffer, "Line %d, Column %d", line, column );
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ConfigTab.java | 140 TableColumn column = new TableColumn(this.table, SWT.CENTER); local 141 column.setText (columnHeaders [i]); 150 TableColumn column = this.table.getColumn(i); local 151 column.setWidth(i==0?120:100); 154 column.setToolTipText(text); 222 * Get the current cell position (column, row) from a point position. 252 // return when position is over the last column 334 // The first column is the build name 358 // Read each column value
|
/external/jsoncpp/src/lib_json/ |
json_reader.cpp | 838 int &column ) const 859 // column & line start at 1 860 column = int(location - lastLineStart) + 1; 868 int line, column; local 869 getLocationLineAndColumn( location, line, column ); 871 sprintf( buffer, "Line %d, Column %d", line, column );
|
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 79 + " <BINDING> binds a typed value to a column and is formatted:\n" 83 + " Note: Omit the value for passing an empty string, e.g column:s:\n" 106 + " <PROJECTION> is a list of colon separated column names and is formatted:\n" 353 String column = argument.substring(0, firstColonIndex); local 357 values.put(column, value); 359 values.put(column, Boolean.parseBoolean(value)); 361 values.put(column, Long.parseLong(value)); 363 values.put(column, Double.parseDouble(value));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/grid/ |
GridModelTest.java | 195 assertEquals(3, textViewData.column); 331 assertEquals(0, buttonData.column); [all...] |
/external/chromium_org/third_party/icu/source/test/perf/collationperf/ |
collperf.cpp | 1547 int column = 0; local [all...] |
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
file_grid.js | 262 * Obtains the column/row index that the coordinate points. 264 * column/row. 265 * @param {number} step Length from a column/row to the next one. 268 * column/row. 269 * @return {number} Index of hit column/row.
|
/external/icu/icu4c/source/test/perf/collationperf/ |
collperf.cpp | 1547 int column = 0; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 1203 def column(self, column, option=None, **kw): member in class:Treeview [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
ttk.py | 1203 def column(self, column, option=None, **kw): member in class:Treeview [all...] |
/external/chromium_org/chrome/browser/resources/profiler/ |
profiler.js | 86 // The container node to put all the column (visibility) checkboxes into. 87 var COLUMN_TOGGLES_CONTAINER_ID = 'column-toggles-container'; 89 // The container node to put all the column (merge) checkboxes into. 90 var COLUMN_MERGE_TOGGLES_CONTAINER_ID = 'column-merge-toggles-container'; 92 // The anchor which toggles visibility of column checkboxes. 95 // The container node to show/hide when toggling the column checkboxes. 151 // To generalize computing/displaying the aggregate "counts" for each column, 307 * displayed in a column. 313 * [name]: This is displayed as the column's label. 315 * value for this column [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
RawContactModifier.java | 498 final String value = values.getAsString(field.column); 515 final String value1 = values1.getAsString(field.column); 516 final String value2 = values2.getAsString(field.column); 615 if (StructuredName.DISPLAY_NAME.equals(field.column)) { 672 if (StructuredPostal.FORMATTED_ADDRESS.equals(field.column)) { [all...] |