Home
last modified time | relevance | path

Searched defs:cursor (Results 1 – 25 of 480) sorted by relevance

12345678910>>...20

/external/libdrm/tests/modetest/
Dcursor.c44 struct cursor { struct
57 static struct cursor cursors[MAX_CURSORS]; argument
77 static void set_cursor(struct cursor *cursor, const struct cursor_step *step) in set_cursor()
90 static void move_cursor(struct cursor *cursor, const struct cursor_step *step) in move_cursor()
148 struct cursor *cursor = &cursors[i]; in cursor_thread_func() local
169 struct cursor *cursor = &cursors[ncursors]; in cursor_init() local
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowMatrixCursorTest.java36 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldAddObjectArraysAsRows() local
59 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldAddIterablesAsRows() local
82 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldDefineColumnNames() local
101 MatrixCursor cursor = new MatrixCursor(new String[]{"a"}); in shouldDefineGetBlob() local
110 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldAllowTypeFlexibility() local
134 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldDefineGetColumnNameOrThrow() local
141 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldThrowIndexOutOfBoundsExceptionWithoutData() local
148 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldThrowIndexOutOfBoundsExceptionForInvalidColumn() local
156 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldThrowIndexOutOfBoundsExceptionForInvalidColumnLastRow() local
DSQLiteDatabaseTest.java108 Cursor cursor = in testInsertAndQuery() local
140 Cursor cursor = in testInsertAndRawQuery() local
171 Cursor cursor = in testInsertOrThrow() local
195 Cursor cursor = in testRawQueryCountWithOneArgument() local
205 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", null); in testRawQueryCountWithNullArgs() local
212 Cursor cursor = in testRawQueryCountWithEmptyArguments() local
233 Cursor cursor = in testEmptyTable() local
304 Cursor cursor = in testInsertEmptyBlobArgument() local
329 Cursor cursor = in testUpdate() local
344 Cursor cursor = in testUpdateNoMatch() local
[all …]
DSQLiteQueryBuilderTest.java67 Cursor cursor = builder.query(database, new String[] {"rowid"}, null, null, null, null, null); in shouldBeAbleToMakeQueries() local
74 Cursor cursor = in shouldBeAbleToMakeQueriesWithSelection() local
91 Cursor cursor = in shouldBeAbleToMakeQueriesWithGrouping() local
DShadowDownloadManagerTest.java112 Cursor cursor = manager.query(new DownloadManager.Query().setFilterById(id)); in query_shouldReturnCursor() local
121 Cursor cursor = manager.query(new DownloadManager.Query().setFilterById(id)); in query_shouldReturnColumnIndices() local
139 Cursor cursor = manager.query(new DownloadManager.Query().setFilterById(id)); in query_shouldReturnColumnValues() local
162 Cursor cursor = manager.query(new DownloadManager.Query()); in query_shouldReturnAll() local
185 Cursor cursor = manager.query(new DownloadManager.Query().setFilterById(id)); in query_shouldGetTotalSizeAndBytesSoFar() local
202 try (Cursor cursor = manager.query(new DownloadManager.Query())) { in query_shouldGetColumnId()
/external/okio/okio/src/jvmTest/kotlin/okio/
DBufferCursorTest.kt42 buffer.readAndWriteUnsafe().use { cursor -> in <lambda>() method
59 buffer.readUnsafe().use { cursor -> in <lambda>() method
71 buffer.readUnsafe().use { cursor -> in <lambda>() method
85 buffer.readUnsafe().use { cursor -> in <lambda>() method
98 buffer.readUnsafe().use { cursor -> in <lambda>() method
111 buffer.readUnsafe().use { cursor -> in <lambda>() method
125 val cursor = buffer.readUnsafe() in <lambda>() constant
147 buffer.readUnsafe().use { cursor -> in <lambda>() method
161 val cursor = Buffer.UnsafeCursor() in <lambda>() constant
182 buffer.readUnsafe().use { cursor -> in <lambda>() method
[all …]
DBufferCursorKotlinTest.kt51 buffer.readUnsafe().use { cursor -> in <lambda>() method
64 buffer.readAndWriteUnsafe().use { cursor -> in <lambda>() method
77 buffer.readAndWriteUnsafe().use { cursor -> in <lambda>() method
98 buffer.readAndWriteUnsafe().use { cursor -> in <lambda>() method
113 val cursor = UnsafeCursor() in <lambda>() constant
/external/openscreen/discovery/mdns/
Dmdns_writer.cc56 Cursor cursor(this); in Write() local
76 Cursor cursor(this); in Write() local
121 Cursor cursor(this); in Write() local
130 Cursor cursor(this); in Write() local
144 Cursor cursor(this); in Write() local
154 Cursor cursor(this); in Write() local
164 Cursor cursor(this); in Write() local
177 Cursor cursor(this); in Write() local
200 Cursor cursor(this); in Write() local
217 Cursor cursor(this); in Write() local
[all …]
Dmdns_reader.cc43 Cursor cursor(this); in Read() local
130 Cursor cursor(this); in Read() local
154 Cursor cursor(this); in Read() local
172 Cursor cursor(this); in Read() local
186 Cursor cursor(this); in Read() local
200 Cursor cursor(this); in Read() local
214 Cursor cursor(this); in Read() local
247 Cursor cursor(this); in Read() local
282 Cursor cursor(this); in Read() local
306 Cursor cursor(this); in Read() local
[all …]
/external/okio/okio/src/commonTest/kotlin/okio/
DUnsafeCursorTest.kt27 val cursor = buffer.readAndWriteUnsafe() in acquireForRead() constant
44 val cursor = buffer.readAndWriteUnsafe() in acquireForWrite() constant
59 val cursor = buffer.readAndWriteUnsafe() in expand() constant
78 val cursor = buffer.readAndWriteUnsafe() in resizeBuffer() constant
/external/pigweed/pw_stream/rust/pw_stream/
Dcursor.rs277 let cursor = Cursor { in cursor_len_returns_total_bytes() localVariable
286 let cursor = Cursor { in cursor_remaining_returns_remaining_bytes() localVariable
295 let cursor = Cursor { in cursor_position_returns_current_position() localVariable
304 let mut cursor = Cursor { in cursor_read_of_partial_buffer_reads_correct_data() localVariable
315 let mut cursor = Cursor { in cursor_write_of_partial_buffer_writes_correct_data() localVariable
345 let mut cursor = Cursor::new(&bytes); localVariable
362 let mut cursor = Cursor::new(vec![0u8; expected_bytes.len()]); localVariable
489 let mut cursor = Cursor::new(vec![0xfe, 0xff, 0xff, 0xff, 0x0f, 0x0, 0x0, 0x0]); in read_varint_unpacks_data_correctly() localVariable
493 let mut cursor = Cursor::new(vec![0xff, 0xff, 0xff, 0xff, 0x0f, 0x0, 0x0, 0x0]); in read_varint_unpacks_data_correctly() localVariable
500 let mut cursor = Cursor::new(vec![0xfe, 0xff, 0xff, 0xff, 0x0f, 0x0, 0x0, 0x0]); in read_signed_varint_unpacks_data_correctly() localVariable
[all …]
/external/google-breakpad/src/common/
Dbyte_cursor_unittest.cc64 ByteCursor cursor(&buffer); in TEST() local
71 ByteCursor cursor(&buffer); in TEST() local
78 ByteCursor cursor(&buffer); in TEST() local
85 ByteCursor cursor(&buffer); in TEST() local
92 ByteCursor cursor(&buffer); in TEST() local
100 ByteCursor cursor(&buffer); in TEST() local
113 ByteCursor cursor(&buffer); in TEST() local
145 ByteCursor cursor(&buffer); in TEST() local
163 ByteCursor cursor(&buffer); in TEST() local
184 ByteCursor cursor(&buffer, true); in TEST() local
[all …]
/external/apache-http/src/org/apache/http/message/
DBasicHeaderValueParser.java112 ParserCursor cursor = new ParserCursor(0, value.length()); in parseElements() local
119 final ParserCursor cursor) { in parseElements()
163 ParserCursor cursor = new ParserCursor(0, value.length()); in parseHeaderElement() local
170 final ParserCursor cursor) { in parseHeaderElement()
228 ParserCursor cursor = new ParserCursor(0, value.length()); in parseParameters() local
236 final ParserCursor cursor) { in parseParameters()
298 ParserCursor cursor = new ParserCursor(0, value.length()); in parseNameValuePair() local
305 final ParserCursor cursor) { in parseNameValuePair()
321 final ParserCursor cursor, in parseNameValuePair()
DHeaderValueParser.java98 ParserCursor cursor) throws ParseException; in parseElements()
115 ParserCursor cursor) throws ParseException; in parseHeaderElement()
201 ParserCursor cursor) throws ParseException; in parseParameters()
216 ParserCursor cursor) throws ParseException; in parseNameValuePair()
DLineParser.java82 ParserCursor cursor) throws ParseException; in parseProtocolVersion()
106 ParserCursor cursor); in hasProtocolVersion()
122 ParserCursor cursor) throws ParseException; in parseRequestLine()
138 ParserCursor cursor) throws ParseException; in parseStatusLine()
DBasicLineParser.java127 ParserCursor cursor = new ParserCursor(0, value.length()); in parseProtocolVersion() local
134 final ParserCursor cursor) in parseProtocolVersion()
230 final ParserCursor cursor) { in hasProtocolVersion()
292 ParserCursor cursor = new ParserCursor(0, value.length()); in parseRequestLine() local
307 final ParserCursor cursor) in parseRequestLine()
392 ParserCursor cursor = new ParserCursor(0, value.length()); in parseStatusLine() local
399 final ParserCursor cursor) in parseStatusLine()
499 protected void skipWhitespace(final CharArrayBuffer buffer, final ParserCursor cursor) { in skipWhitespace()
/external/perfetto/src/trace_processor/sqlite/
Dsql_stats_table.cc61 int SqlStatsModule::Open(sqlite3_vtab* raw_vtab, sqlite3_vtab_cursor** cursor) { in Open()
68 int SqlStatsModule::Close(sqlite3_vtab_cursor* cursor) { in Close()
73 int SqlStatsModule::Filter(sqlite3_vtab_cursor* cursor, in Filter()
84 int SqlStatsModule::Next(sqlite3_vtab_cursor* cursor) { in Next()
89 int SqlStatsModule::Eof(sqlite3_vtab_cursor* cursor) { in Eof()
94 int SqlStatsModule::Column(sqlite3_vtab_cursor* cursor, in Column()
Dstats_table.cc64 int StatsModule::Open(sqlite3_vtab* raw_vtab, sqlite3_vtab_cursor** cursor) { in Open()
71 int StatsModule::Close(sqlite3_vtab_cursor* cursor) { in Close()
76 int StatsModule::Filter(sqlite3_vtab_cursor* cursor, in Filter()
87 int StatsModule::Next(sqlite3_vtab_cursor* cursor) { in Next()
109 int StatsModule::Eof(sqlite3_vtab_cursor* cursor) { in Eof()
113 int StatsModule::Column(sqlite3_vtab_cursor* cursor, in Column()
/external/igt-gpu-tools/lib/stubs/libunwind/
Dlibunwind.h37 static inline void unw_init_local(unw_cursor_t *cursor, unw_context_t *uc) {} in unw_init_local()
38 static inline int unw_step(unw_cursor_t *cursor) { return 0; } in unw_step()
39 static inline int unw_get_reg (unw_cursor_t *cursor, int i, unw_word_t * word) in unw_get_reg()
43 static inline int unw_get_proc_name (unw_cursor_t *cursor, char *c, size_t s, unw_word_t *word) in unw_get_proc_name()
/external/wayland/cursor/
Dwayland-cursor.c142 struct cursor { struct
143 struct wl_cursor cursor; member
147 /** Get an shm buffer for a cursor image argument
183 wl_cursor_destroy(struct wl_cursor *cursor) in wl_cursor_destroy()
201 struct cursor *cursor; in wl_cursor_create_from_data() local
280 struct cursor *cursor; in wl_cursor_create_from_xcursor_images() local
341 struct wl_cursor *cursor; in load_callback() local
464 wl_cursor_frame_and_duration(struct wl_cursor *cursor, uint32_t time, in wl_cursor_frame_and_duration()
513 wl_cursor_frame(struct wl_cursor *cursor, uint32_t time) in wl_cursor_frame()
/external/zucchini/
Drel32_finder.cc94 ConstBufferView::const_iterator cursor, in SetResult()
109 ConstBufferView::const_iterator cursor = region.begin(); in Scan() local
128 ConstBufferView::const_iterator cursor = region.begin(); in Scan() local
178 ConstBufferView::const_iterator cursor, in SetResult()
204 ConstBufferView::const_iterator cursor = region.begin(); in ScanA32() local
224 ConstBufferView::const_iterator cursor = region.begin(); in ScanT32() local
271 ConstBufferView::const_iterator cursor = region.begin(); in Scan() local
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DContactsFacade.java109 Cursor cursor = mService.getContentResolver().query(phoneData, null, null, null, null); in contactsDisplayPhonePickList() local
124 Cursor cursor = mContentResolver.query(CONTACTS_URI, null, null, null, null); in contactsGetAttributes() local
139 Cursor cursor = mContentResolver.query(CONTACTS_URI, columns, null, null, null); in contactsGetContactIds() local
171 Cursor cursor = mContentResolver.query(CONTACTS_URI, query, null, null, null); in contactsGetAllContacts() local
241 Cursor cursor = mContentResolver.query(uri, columns, null, null, null); in contactsGetContactById() local
256 Cursor cursor = mContentResolver.query(CONTACTS_URI, null, null, null, null); in contactsGetCount() local
276 Cursor cursor = in getAllContactsVcardUri() local
305 Cursor cursor = in contactsEraseAll() local
358 Cursor cursor = mContentResolver.query(Uri.parse(uri), columns, selection, args, order); in contactsQueryContent() local
387 Cursor cursor = mContentResolver.query(Uri.parse(uri), null, "1=0", null, null); in queryAttributes() local
/external/freetype/src/psaux/
Dpsconv.c83 PS_Conv_Strtol( FT_Byte** cursor, in PS_Conv_Strtol()
161 PS_Conv_ToInt( FT_Byte** cursor, in PS_Conv_ToInt()
195 PS_Conv_ToFixed( FT_Byte** cursor, in PS_Conv_ToFixed()
464 PS_Conv_ASCIIHexDecode( FT_Byte** cursor, in PS_Conv_ASCIIHexDecode()
557 PS_Conv_EexecDecode( FT_Byte** cursor, in PS_Conv_EexecDecode()
/external/rust/crates/futures/tests/
Dio_cursor.rs10 let mut cursor = Cursor::new(vec![0; 5]); in cursor_asyncwrite_vec() localVariable
22 let mut cursor = Cursor::new(vec![0; 5].into_boxed_slice()); in cursor_asyncwrite_box() localVariable
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/operators/
Dwindow_operator.cc121 int WindowOperatorModule::Open(sqlite3_vtab*, sqlite3_vtab_cursor** cursor) { in Open()
127 int WindowOperatorModule::Close(sqlite3_vtab_cursor* cursor) { in Close()
132 int WindowOperatorModule::Filter(sqlite3_vtab_cursor* cursor, in Filter()
156 int WindowOperatorModule::Next(sqlite3_vtab_cursor* cursor) { in Next()
171 int WindowOperatorModule::Eof(sqlite3_vtab_cursor* cursor) { in Eof()
176 int WindowOperatorModule::Column(sqlite3_vtab_cursor* cursor, in Column()

12345678910>>...20