Home
last modified time | relevance | path

Searched refs:rowId (Results 1 – 9 of 9) sorted by relevance

/development/tools/winscope/src/parsers/perfetto/
Dutils.ts29 const rowId = entryIndexToRowIdMap[entryIndex]; constant
40 WHERE tbl.id = ${rowId};
70 const rowId = entryIndexToRowIdMap[entryIndex]; constant
71 minRowId = Math.min(minRowId, rowId);
72 maxRowId = Math.max(maxRowId, rowId);
108 const rowId = entryIndexToRowIdMap[entryIndex]; constant
109 const vsyncId = vsyncIdOrderedByRow[rowId - minRowId]; constant
Dabstract_parser.ts63 (rowId) => rowBootTimeTimestampsNs[rowId],
133 const rowId = Number(it.get('id') as bigint); constant
134 entryIndexToRowId.push(rowId);
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DDictionaryProvider.java139 String rowId = uri.getLastPathSegment(); in getWord() local
144 return mDictionary.getWord(rowId, columns); in getWord()
155 String rowId = uri.getLastPathSegment(); in refreshShortcut() local
163 return mDictionary.getWord(rowId, columns); in refreshShortcut()
DDictionaryDatabase.java89 public Cursor getWord(String rowId, String[] columns) { in getWord() argument
91 String[] selectionArgs = new String[] {rowId}; in getWord()
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
DRssContentProvider.java184 long rowId = -1; in insert() local
185 rowId = mDb.insert(DATABASE_TABLE_NAME, "rawcontent", initialValues); in insert()
186 Uri newUri = CONTENT_URI.addId(rowId); in insert()
/development/tools/winscope/src/parsers/view_capture/perfetto/
Dparser_view_capture_window.ts156 const rowId = Number(it.get('id') as bigint); constant
157 entryIndexToRowId.push(rowId);
/development/samples/NotePad/src/com/example/android/notepad/
DNotePadProvider.java514 long rowId = db.insert( in insert() local
523 if (rowId > 0) { in insert()
525 Uri noteUri = ContentUris.withAppendedId(NotePad.Notes.CONTENT_ID_URI_BASE, rowId); in insert()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DLoaderThrottle.java289 long rowId = db.insert(MainTable.TABLE_NAME, null, values); in insert() local
292 if (rowId > 0) { in insert()
293 Uri noteUri = ContentUris.withAppendedId(MainTable.CONTENT_ID_URI_BASE, rowId); in insert()
/development/samples/training/threadsample/src/com/example/android/threadsample/
DPhotoThumbnailFragment.java278 public void onItemClick(AdapterView<?> adapterView, View view, int viewId, long rowId) { in onItemClick() argument