HomeSort by relevance Sort by last modified time
    Searched full:column (Results 176 - 200 of 2008) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.ui 17 <item row="0" column="0">
  /frameworks/base/core/java/android/database/sqlite/
SQLiteBindOrColumnIndexOutOfRangeException.java 20 * Thrown if the the bind or column parameter index is out of range
SQLiteQuery.java 124 * Get the column count for the statement. Only valid on query based
128 * @return The number of column in the statement's result set.
140 * Retrieves the column name for the given column index. The database must be locked
143 * @param columnIndex the index of the column to get the name for
144 * @return The requested column's name
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 44 getValue(int row, int column)
49 Object value = mValues[row * mColumns + column];
55 setValue(int row, int column, E value)
60 mValues[row * mColumns + column] = value;
  /frameworks/base/core/java/android/widget/
SimpleCursorTreeAdapter.java 49 * corresponding column.
60 * corresponding column.
82 * @param groupFrom A list of column names that will be used to display the
85 * display column in the "from" parameter. These should all be
95 * @param childFrom A list of column names that will be used to display the
98 * display column in the "from" parameter. These should all be
123 * @param groupFrom A list of column names that will be used to display the
126 * display column in the "from" parameter. These should all be
132 * @param childFrom A list of column names that will be used to display the
135 * display column in the "from" parameter. These should all b
    [all...]
  /external/webkit/Source/WebCore/css/
CSSPropertyNames.in 216 -webkit-column-break-after
217 -webkit-column-break-before
218 -webkit-column-break-inside
219 -webkit-column-count
220 -webkit-column-gap
221 -webkit-column-rule
222 -webkit-column-rule-color
223 -webkit-column-rule-style
224 -webkit-column-rule-width
225 -webkit-column-spa
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
TextEditorModel.js 188 wordRange: function(lineNumber, column)
190 return new WebInspector.TextRange(lineNumber, this.wordStart(lineNumber, column, true), lineNumber, this.wordEnd(lineNumber, column, true));
193 wordStart: function(lineNumber, column, gapless)
196 var prefix = line.substring(0, column).split("").reverse().join("");
198 return prefixMatch && (!gapless || prefixMatch.index === 0) ? column - prefixMatch.index - prefixMatch[0].length : column;
201 wordEnd: function(lineNumber, column, gapless)
204 var suffix = line.substring(column);
206 return suffixMatch && (!gapless || suffixMatch.index === 0) ? column + suffixMatch.index + suffixMatch[0].length : column
    [all...]
  /frameworks/base/docs/html/guide/topics/search/
adding-custom-suggestions.jd 320 using the required column names and then add a row for each suggestion using {@link
348 <dd>A string. If your Cursor includes this column, then all suggestions are provided in a
349 two-line format. The string in this column is displayed as a second, smaller line of text below the
352 <dd>A drawable resource, content, or file URI string. If your Cursor includes this column, then
356 <dd>A drawable resource, content, or file URI string. If your Cursor includes this column, then
360 <dd>An intent action string. If this column exists and contains a value at the given row, the
365 android:searchSuggestIntentAction} and omit this column.</dd>
367 <dd>A data URI string. If this column exists and contains a value at the given row, this is the
373 android:searchSuggestIntentData} and omit this column.
376 <dd>A URI path string. If this column exists and contains a value at the given row, then "/" an
    [all...]
  /bootable/bootloader/legacy/include/boot/
gpio_keypad.h 39 int polarity : 1; // 0: drive active column low, 1: drive active column high
  /external/clang/include/clang/Frontend/
LogDiagnosticPrinter.h 33 /// The source file column number, if available.
34 unsigned Column;
  /external/icu4c/tools/toolutil/
pkg_genc.c 63 write8(FileStream *out, uint8_t byte, uint32_t column);
66 write32(FileStream *out, uint32_t byte, uint32_t column);
70 write8str(FileStream *out, uint8_t byte, uint32_t column);
239 uint32_t column = MAX_COLUMN; local
299 column = write32(out, buffer[i], column);
326 uint32_t column = MAX_COLUMN; local
392 column = write8str(out, (uint8_t)buffer[i], column);
416 column = write8(out, (uint8_t)buffer[i], column)
    [all...]
  /external/webkit/Source/WebCore/html/
DataGridColumnList.idl 40 void remove(in DataGridColumn column);
41 void move(in DataGridColumn column, in unsigned long index);
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 38 * &lt;Col column = "name" value = "foo feebe "/>
39 * &lt;Col column = "addr" value = "Tx"/>
51 * &lt;col column = "name" value = "foo feebe"/>
52 * &lt;col column = "addr" value = "Tx"/>
54 * &lt;col column="number" value="512-514-6535"/>
57 * &lt;col column="cell" value="512-514-6535"/>
65 * &lt;col column= "name" value = "foo feebe"/>
66 * &lt;col column= "addr" value = "Tx"/>
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumn.java 30 * This test adds an extra row with an extra column in the table.
45 view.setText("Column " + (i + 1));
  /frameworks/ex/common/java/com/android/common/
Search.java 38 * Column name for suggestions cursor. <i>Optional.</i> This column may be
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerException.java 219 int column = locator.getColumnNumber(); local
231 if (0 != column) {
232 sbuffer.append("; Column#: ");
233 sbuffer.append(column);
252 int column = locator.getColumnNumber(); local
264 if (0 != column) {
265 sbuffer.append("; Column#: ");
266 sbuffer.append(column);
  /packages/apps/Calendar/res/values-w1024dp-h552dp/
dimens.xml 31 <!-- minimum size of hours column in day/week view -->
33 <!-- margins size of hours column in day/week view -->
  /packages/apps/Calendar/res/values-w600dp-h976dp/
dimens.xml 31 <!-- minimum size of hours column in day/week view -->
33 <!-- margins size of hours column in day/week view -->
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_AlbumsTest.java 65 + "contain column Albums.ALBUM_ID and Albums.NUMBER_OF_SONGS_FOR_ARTIST.")
71 + "contain column Albums.ALBUM_ID and Albums.NUMBER_OF_SONGS_FOR_ARTIST.")
108 // the ALBUM_ID column does not exist
111 fail("Should throw IllegalArgumentException because there is no column with name "
116 // the NUMBER_OF_SONGS_FOR_ARTIST column does not exist
119 fail("Should throw IllegalArgumentException because there is no column with name "
  /external/chromium/chrome/browser/resources/options/
cookies_view.css 8 #remove-all-cookies-search-column {
14 html[dir=rtl] #remove-all-cookies-search-column {
19 #cookies-column-headers {
25 #cookies-column-headers h3 {
30 #cookies-site-column {
36 #cookies-data-column {
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_tree_model.cc 113 GtkTreeViewColumn* column = gtk_tree_view_column_new(); local
115 gtk_tree_view_column_pack_start(column, image_renderer, FALSE);
116 gtk_tree_view_column_add_attribute(column, image_renderer,
122 gtk_tree_view_column_pack_start(column, text_renderer, TRUE);
123 gtk_tree_view_column_set_attributes(column, text_renderer,
132 gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), column); local
  /external/chromium/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/llvm/include/llvm/Support/
FormattedStream.h 47 /// ColumnScanned - The current output column of the data that's
49 /// scanned. The column scheme is zero-based.
69 /// column we end up in after output.
117 /// PadToColumn - Align the output to some column number. If the current
118 /// column is already equal to or more than NewCol, PadToColumn inserts one
121 /// \param NewCol - The column to move to.
  /libcore/luni/src/main/java/java/sql/
DataTruncation.java 57 * the Index value of the column value or parameter that was
86 * the Index value of the column value or parameter that was
125 * Gets the index of the column or of the parameter that was truncated.
127 * @return the index number of the column or of the parameter.
134 * Gets whether the value truncated was a parameter value or a column value.
137 * {@code false} if it was a column value.
  /libcore/luni/src/main/java/org/xml/sax/
Locator.java 109 * Return the column number where the current document event ends.
119 * not correspond to the column in a text editor's display. </p>
121 * <p>The return value is an approximation of the column number
127 * event. The first column in each line is column 1.</p>
129 * @return The column number, or -1 if none is available.

Completed in 1952 milliseconds

1 2 3 4 5 6 78 91011>>