HomeSort by relevance Sort by last modified time
    Searched full:column (Results 676 - 700 of 5155) sorted by null

<<21222324252627282930>>

  /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
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Constants.java 33 /** The column that used to be used for the HTTP method of the request */
36 /** The column that used to be used for the magic OTA update filename */
39 /** The column that used to be used to reject system filetypes */
42 /** The column that is used for the downloads's ETag */
45 /** The column that is used for the initiating app's UID */
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner.go 32 Column int // column number, starting at 1 (character count per line)
44 s += fmt.Sprintf("%d:%d", pos.Line, pos.Column)
127 column int // character count
128 lastLineLen int // length of last line in characters (for correct column reporting)
191 s.column = 0
249 s.column++
270 s.column++
280 s.column++
289 s.lastLineLen = s.column
    [all...]
scanner_test.go 298 if s.Column != pos.Column {
299 t.Errorf("column = %d, want %d for %q", s.Column, pos.Column, k.text)
515 if got.Offset != want.Offset || got.Line != want.Line || got.Column != want.Column {
516 t.Errorf("got offset, line, column = %d, %d, %d; want %d, %d, %d",
517 got.Offset, got.Line, got.Column, want.Offset, want.Line, want.Column)
    [all...]
  /prebuilts/go/linux-x86/src/text/scanner/
scanner.go 32 Column int // column number, starting at 1 (character count per line)
44 s += fmt.Sprintf("%d:%d", pos.Line, pos.Column)
127 column int // character count
128 lastLineLen int // length of last line in characters (for correct column reporting)
191 s.column = 0
249 s.column++
270 s.column++
280 s.column++
289 s.lastLineLen = s.column
    [all...]
scanner_test.go 298 if s.Column != pos.Column {
299 t.Errorf("column = %d, want %d for %q", s.Column, pos.Column, k.text)
515 if got.Offset != want.Offset || got.Line != want.Line || got.Column != want.Column {
516 t.Errorf("got offset, line, column = %d, %d, %d; want %d, %d, %d",
517 got.Offset, got.Line, got.Column, want.Offset, want.Line, want.Column)
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 45 * <p>StaggeredGridView presents a multi-column grid with consistent column sizes
79 * view has been removed. These let positioning and the choice of column for an item
136 public int column; field in class:StaggeredGridView.LayoutRecord
145 // all layoutrecords are purged when column count changes.
182 String result = "LayoutRecord{c=" + column + ", id=" + id + " h=" + height +
231 throw new IllegalArgumentException("Column count must be at least 1 - received " +
246 * Set a minimum column width for
508 // Repair the top and bottom column boundaries from the views we still have
519 final int colEnd = lp.column + Math.min(mColCount, lp.span)
1408 int column; field in class:StaggeredGridView.LayoutParams
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java 117 // Version 6: Adding Message.mServerTimeStamp column
120 // Version 8: Add security flags column to accounts table
131 // Column Mailbox.serverId is used for the server-side pathname of a mailbox.
135 // Version 21: Add lastSeenMessageKey column to Mailbox table
137 // Version 23: Add column to mailbox table for time of last access
138 // Version 24: Add column to hostauth table for client cert alias
160 // Version 107: Add a SEEN column to the message table
161 // Version 108: Add a cachedFile column to the attachments table
169 // Version 114: Add lastFullSyncTime column
170 // Version 115: Add pingDuration column
    [all...]
  /external/v8/src/js/
messages.js 214 return location.column;
279 // Determine start, end and column.
286 var column = position - start;
292 column += this.column_offset;
296 return new SourceLocation(this, position, line, column, start, end);
301 * Get information on a specific source line and column possibly offset by a
303 * a line and column position. The fixed source position offset is typically
304 * used to find a source position in a function based on a line and column in
308 * @param {number} opt_column The column in within the line. Default value is 0
310 * source from where the line and column calculation starts
    [all...]
  /external/llvm/test/DebugInfo/X86/
pr12831.ll 183 !135 = !DILocation(line: 19, column: 39, scope: !5)
184 !136 = !DILocation(line: 20, column: 17, scope: !137)
185 !137 = distinct !DILexicalBlock(line: 19, column: 51, file: !6, scope: !5)
186 !138 = !DILocation(line: 23, column: 17, scope: !137)
187 !139 = !DILocation(line: 26, column: 15, scope: !137)
190 !142 = !DILocation(line: 8, column: 45, scope: !106)
192 !144 = !DILocation(line: 8, column: 63, scope: !106)
193 !145 = !DILocation(line: 9, column: 9, scope: !146)
194 !146 = distinct !DILexicalBlock(line: 8, column: 81, file: !6, scope: !106)
195 !147 = !DILocation(line: 10, column: 13, scope: !146
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
TelephonyProviderTest.java 53 // Test that the TelephonyProvider doesn't allow clients to update _data column data and
64 // assertNull("The code was able to insert the _data column", uri2);
71 // assertEquals("Was able to update the _data column", 0, rowCnt);
  /developers/build/prebuilts/gradle/SkeletonWearableApp/Wearable/src/main/java/com/example/android/google/wearable/app/
GridExampleActivity.java 83 public Drawable getBackgroundForPage(int row, int column) {
84 Point pt = new Point(column, row);
97 c.drawText(column+ "-" + row, 100, 100, p);
  /developers/samples/android/wearable/wear/SkeletonWearableApp/Wearable/src/main/java/com/example/android/google/wearable/app/
GridExampleActivity.java 83 public Drawable getBackgroundForPage(int row, int column) {
84 Point pt = new Point(column, row);
97 c.drawText(column+ "-" + row, 100, 100, p);
  /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...]
  /development/samples/browseable/SkeletonWearableApp/src/com.example.android.google.wearable.app/
GridExampleActivity.java 83 public Drawable getBackgroundForPage(int row, int column) {
84 Point pt = new Point(column, row);
97 c.drawText(column+ "-" + row, 100, 100, p);
  /external/autotest/tko/migrations/
002_add_job_timestamps.py 12 ALTER TABLE jobs ADD COLUMN queued_time datetime NULL;
13 ALTER TABLE jobs ADD COLUMN started_time datetime NULL;
14 ALTER TABLE jobs ADD COLUMN finished_time datetime NULL;
  /external/chromium-trace/catapult/tracing/tracing/extras/importer/
trace_code_entry.html 65 // Immediately convert line and column to 0-based numbers.
88 var column = urlData.columnNumber || 0;
91 url, line, column, isNative, scriptId, state);
  /external/eigen/Eigen/src/Core/
Stride.h 25 * row-major matrix or within a given column of a column-major matrix.
28 * between two consecutive columns of a column-major matrix.
  /external/eigen/Eigen/src/SparseLU/
SparseLU_copy_to_ucol.h 38 * \param jcol current column to update
41 * \param repfnz First nonzero column in each row ...
43 * \param dense Store the full representation of the column
  /external/icu/icu4c/source/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...]
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/libchrome/base/trace_event/
memory_allocator_dump.h 50 // - "size" column (all dumps are expected to have at least this one):
52 // - Some extra-column reporting internal details of the subsystem:
54 // - Other informational column (will not be auto-added in the UI)
  /external/libhevc/common/x86/
ihevc_itrans_recon_sse42_intr.c 948 /* Column 0 of destination computed here */
950 /* Column 7 of destination computed here */
    [all...]
ihevc_itrans_recon_ssse3_intr.c     [all...]
  /external/libmpeg2/common/x86/
impeg2_idct_recon_sse42_intr.c 286 /* Column 0 of destination computed here */
288 /* Column 7 of destination computed here */
319 /* Column 1 of destination computed here */
321 /* Column 6 of destination computed here */
349 /* Column 2 of destination computed here */
351 /* Column 5 of destination computed here */
375 /* Column 3 of destination computed here */
377 /* Column 4 of destination computed here */
498 /* Column 0 of destination computed here */
500 /* Column 7 of destination computed here *
    [all...]

Completed in 900 milliseconds

<<21222324252627282930>>