HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 451 - 475 of 998) sorted by null

<<11121314151617181920>>

  /external/icu4c/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/Email/tests/src/com/android/email/activity/
ContactStatusLoaderTest.java 186 public byte[] getBlob(int column) {
187 Assert.assertEquals(0, 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/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 269 private static void padToColumn(final StringBuilder sb, final int column) {
271 while ((padding = column - sb.length()) > 0) {
278 * Join CSV text fields with comma. The column positions of the fields can be specified
284 * @param columnPositions the array of column positions of the fields. It can be shorter than
285 * <code>fields</code> or null. Note that specifying the array column positions of the fields
  /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 848 int &column ) const
869 // column & line start at 1
870 column = int(location - lastLineStart) + 1;
878 int line, column; local
879 getLocationLineAndColumn( location, line, column );
881 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/grub/grub/
asmstub.c 888 int column = 0; local
902 column += 2;
910 if (column < MAX_COLUMN)
913 column++;
918 column = 0;
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 71 + " <BINDING> binds a typed value to a column and is formatted:\n"
75 + " Note: Omit the value for passing an empty string, e.g column:s:\n"
98 + " <PROJECTION> is a list of colon separated column names and is formatted:\n"
317 String column = argument.substring(0, firstColonIndex); local
321 values.put(column, value);
323 values.put(column, Boolean.parseBoolean(value));
325 values.put(column, Long.parseLong(value));
327 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 1541 int column = 0; local
    [all...]
  /external/icu4c/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...]
  /external/chromium_org/chrome/browser/resources/task_manager/
main.js 111 // Initializes compare functions for column sort.
217 var column = DEFAULT_COLUMNS[i];
218 var columnId = column[0];
224 column[2]));
242 var column = DEFAULT_COLUMNS[i];
246 command.id = COMMAND_CONTEXTMENU_COLUMN_PREFIX + '-' + column[0];
256 if (isColumnEnabled(column[0]))
437 cell.id = 'column-' + pid + '-' + cm.getId(i);
674 // Toggles the visibility of the column.
  /external/chromium_org/third_party/sqlite/src/test/
collate4.test 66 # Tests named collate4-1.1.* use indices with a single column. Tests
473 } {1 {column a is not unique}}
483 } {1 {column a is not unique}}
489 } {1 {column a is not unique}}
501 } {1 {column a is not unique}}
511 } {1 {column a is not unique}}
517 } {1 {column a is not unique}}
530 } {1 {column a is not unique}}
540 } {1 {column a is not unique}}
546 } {1 {column a is not unique}
    [all...]

Completed in 1592 milliseconds

<<11121314151617181920>>