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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 24 * <li>Keeps track of current cursor position (row, column)</li>
91 public boolean isSelected(int row, int column) {
92 return (mRow == row) && (mColumn == column);
106 // flip back to previous month, same column, first position within month
126 // flip to next month, same column, first position within month
  /frameworks/base/graphics/java/android/renderscript/
Matrix2f.java 60 * Returns the value for a given row and column
63 * @param j column of the value to return
65 * @return value in the ith row and jth column
72 * Sets the value for a given row and column
75 * @param j column of the value to set
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java 26 * <li>Keeps track of current cursor position (row, column)</li>
93 public boolean isSelected(int row, int column) {
94 return (mRow == row) && (mColumn == column);
108 // flip back to previous month, same column, first position within month
128 // flip to next month, same column, first position within month
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlparser.h 54 virtual void GetPosition(unsigned long * line, unsigned long * column,
94 virtual void GetPosition(unsigned long * line, unsigned long * column,
102 void SetPosition(int line, int column, long byte_index);
  /external/icu4c/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...]
rbbisetb.h 117 // State table column 0 is not used. Column 1 is for end-of-input.
118 // column 2 is for group 0. Funny counting.
  /external/libvpx/examples/
vp8_set_maps.txt 23 from column to column.
27 columns, where one column will have motion and the next will not.
  /external/protobuf/src/google/protobuf/compiler/
parser.h 79 // and column numbers for errors reported by DescriptorPool during validation.
177 void AddError(int line, int column, const string& error);
179 // Invokes error_collector_->AddError() with the line and column number
183 // Record the given line and column and associate it with this descriptor
187 int line, int column);
189 // Record the current line and column and associate it with this descriptor
303 // DescriptorPool when validating descriptors -- to line and column numbers
311 // *column with the line and column numbers. If not found, sets *line to
312 // -1 and *column to 0 (since line = -1 is used to mean "error has no exac
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra.c 40 * pPredBufCol - pointer to the coefficient column buffer; must be aligned
59 * pPredBufCol - pointer to the updated coefficient column buffer Note:
61 * column buffer).
  /external/chromium/chrome/browser/resources/options/
search_engine_manager_engine_list.js 90 // Construct the name column.
92 nameColEl.className = 'name-column';
106 // Then the keyword column.
108 keywordEl.className = 'keyword-column';
111 // And the URL column.
115 urlWithButtonEl.className = 'url-column';
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
table.js 60 * The table column model.
102 * Sets width of the column at the given index.
104 * @param {number} index The index of the column.
105 * @param {number} Column width.
202 * Sort data by the given column.
203 * @param {number} index The index of the column to sort by.
  /external/chromium/chrome/browser/webdata/
keyword_table.cc 20 // ID of the url column in keywords.
231 return db_->Execute("ALTER TABLE keywords ADD COLUMN autogenerate_keyword "
237 "ALTER TABLE keywords ADD COLUMN logo_id INTEGER DEFAULT 0");
241 return db_->Execute("ALTER TABLE keywords ADD COLUMN created_by_policy "
246 return db_->Execute("ALTER TABLE keywords ADD COLUMN supports_instant "
251 if (!db_->Execute("ALTER TABLE keywords ADD COLUMN instant_url VARCHAR"))
  /external/freetype/src/base/
ftlcdfil.c 101 FT_Byte* column = bitmap->buffer; local
105 for ( ; width > 0; width--, column++ )
107 FT_Byte* col = column;
226 FT_Byte* column = bitmap->buffer; local
229 for ( ; width > 0; width--, column++ )
231 FT_Byte* col = column;
  /frameworks/base/core/java/android/database/
CursorJoiner.java 24 * supports the case where the tuple of key column values is unique.
69 * column name arrays must have the same number of columns.
71 * @param columnNamesLeft The column names to compare from the left cursor
73 * @param columnNamesRight The column names to compare from the right cursor
103 * Lookup the indicies of the each column name and return them in an array.
106 * @return an array of column indices
  /frameworks/base/core/jni/
android_database_SQLiteQuery.cpp 66 LOGE("Failed to change column count from %d to %d", window->getNumColumns(), numColumns);
125 LOG_WINDOW("Failed allocating space for a long in column %d, error=%d",
136 LOG_WINDOW("Failed allocating space for a double in column %d, error=%d",
159 LOG_WINDOW("Failed allocating space for a null in column %d, error=%d",
168 LOGE("Unknown column type when filling database window");
169 throw_sqlite3_exception(env, "Unknown column type when filling window");
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 227 int column = locator.getColumnNumber(); local
239 if (0 != column) {
240 sbuffer.append("; Column#: ");
241 sbuffer.append(column);
260 int column = locator.getColumnNumber(); local
272 if (0 != column) {
273 sbuffer.append("; Column#: ");
274 sbuffer.append(column);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
NodeLocator.java 88 * <code>getColumnNumber</code> returns the column number of the
108 + ", column #" + m_columnNumber;
  /external/chromium/chrome/browser/debugger/manual_tests/
profiler-test-focus-and-exclude.html 33 left in the tree, and 'Total' column for the function shows
37 <li>verify that the value in 'Total' column is less than 100%;
  /external/chromium/chrome/browser/history/
snippet.h 26 // match consists of the column, term-number, location, and length of the
30 // This method adds the start and end of each match whose column is
  /external/dropbear/libtommath/
bn_s_mp_mul_digs.c 63 /* compute the column as a mp_word */
68 /* the new column is the lower part of the result */
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 32 '''Parse a file like object, @input where the first column is a code-point
33 range and the second column is mapped via the given dict, @map.'''
  /external/webkit/Source/WebCore/inspector/
ScriptCallFrame.cpp 39 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column)
43 , m_column(column)
  /packages/apps/Calendar/res/values/
dimens.xml 30 <!-- minimum size of hours column in day/week view -->
32 <!-- margins size of hours column in day/week view -->
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayLog.java 241 * @param listener the {@link ILogColumnListener} to notify on column resize events.
350 * Resizes the <code>index</code>-th column of the log {@link Table} (if applicable).
353 * type does not use a column) or if the <code>index</code>-th column is in fact the originating
354 * column passed as argument.
356 * @param index the index of the column to resize
357 * @param sourceColumn the original column that was resize, and on which we need to sync the
358 * index-th column width.
  /external/chromium/chrome/browser/importer/
mork_reader.cc 138 // Column map. We begin by creating a hash of column id to column name.
144 // correspond to the columns array. As we insert each column into the
146 // index given the column id.
173 // If the first line is the a=c line (column map), just skip over it.
240 // (row id 123 has the value with id 67 for the column with id 45).
241 // A '^' prefix for a column or value references an entry in the column or
248 // Column index of the cell we're parsing, minus one if invalid
363 IDString column; local
    [all...]

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011>>