/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/ |
D | linq_select.hpp | 17 struct cursor { struct in cpplinq::linq_select 19 reference_type; 21 element_type; 23 cursor_category; 25 cursor(const inner_cursor& cur, Selector sel) : cur(cur), sel(std::move(sel)) {} in cursor() function 27 void forget() { cur.forget(); } in forget() 28 bool empty() const { return cur.empty(); } in empty() 29 void inc() { cur.inc(); } in inc() 30 reference_type get() const { return sel(cur.get()); } in get() 32 bool atbegin() const { return cur.atbegin(); } in atbegin() [all …]
|
D | linq_where.hpp | 15 struct cursor { struct in cpplinq::linq_where 19 cursor_category; 21 element_type; 23 reference_type; 25 cursor(const inner_cursor& cur, const Predicate& p) : cur(cur), pred(p) in cursor() argument 32 void forget() { cur.forget(); } in forget() 33 bool empty() const { return cur.empty(); } in empty() 34 void inc() { in inc() 40 reference_type get() const { in get() 44 bool atbegin() const { return atbegin(cur); } in atbegin() [all …]
|
D | linq_groupby.hpp | 138 struct cursor { struct in cpplinq::linq_groupby 140 element_type; 143 reference_type; 146 cursor_category; 148 cursor(inner_cursor cur, in cursor() function 157 void forget() { } // nop on forward-only cursors in forget() 158 bool empty() const { in empty() 161 void inc() { in inc() 167 reference_type get() const { in get() 172 std::shared_ptr<impl_t> impl; [all …]
|
/external/okio/okio/src/jvmTest/java/okio/ |
D | BufferCursorTest.java | 56 try (UnsafeCursor cursor = buffer.readAndWriteUnsafe()) { in apiExample() 77 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessSegmentBySegment() 88 try (UnsafeCursor cursor = buffer.readUnsafe()) { in seekToNegativeOneSeeksBeforeFirstSegment() 102 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessByteByByte() 114 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessByteByByteReverse() 126 try (UnsafeCursor cursor = buffer.readUnsafe()) { in accessByteByByteAlwaysResettingToZero() 139 UnsafeCursor cursor = buffer.readUnsafe(); in segmentBySegmentNavigation() local 162 try (UnsafeCursor cursor = buffer.readUnsafe()) { in seekWithinSegment() 175 UnsafeCursor cursor = new UnsafeCursor(); in acquireAndRelease() local 195 try (UnsafeCursor cursor = buffer.readUnsafe()) { in doubleAcquire() [all …]
|
/external/libdrm/tests/modetest/ |
D | cursor.c | 44 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-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowMatrixCursorTest.java | 29 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldAddObjectArraysAsRows() local 51 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldAddIterablesAsRows() local 73 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldDefineColumnNames() local 91 MatrixCursor cursor = new MatrixCursor(new String[]{"a"}); in shouldDefineGetBlob() local 100 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldAllowTypeFlexibility() local 123 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldDefineGetColumnNameOrThrow() local 129 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldThrowIndexOutOfBoundsExceptionWithoutData() local 135 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldThrowIndexOutOfBoundsExceptionForInvalidColumn() local 142 MatrixCursor cursor = new MatrixCursor(new String[]{"a", "b", "c"}); in shouldThrowIndexOutOfBoundsExceptionForInvalidColumnLastRow() local
|
D | SQLiteDatabaseTest.java | 107 …Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, … in testInsertAndQuery() local 130 … Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); in testInsertAndRawQuery() local 159 … Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); in testInsertOrThrow() local 179 …Cursor cursor = database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?… in testRawQueryCountWithOneArgument() local 185 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", null); in testRawQueryCountWithNullArgs() local 191 …Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", new String[]… in testRawQueryCountWithEmptyArguments() local 210 …Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, … in testEmptyTable() local 250 …Cursor cursor = database.query("blob_table", new String[]{"blob_col"}, "id=1", null, null, null, n… in testInsertEmptyBlobArgument() local 274 …Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, n… in testUpdate() local 287 …Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, n… in testUpdateNoMatch() local [all …]
|
D | ShadowSimpleCursorAdapterTest.java | 30 Cursor cursor = setUpDatabase(); in testChangeCursor() local 42 Cursor cursor = setUpDatabase(); in testSwapCursor() local 54 Cursor cursor = setUpDatabase(); in testSwapCursorToNull() local
|
D | SQLiteQueryBuilderTest.java | 67 Cursor cursor = builder.query(database, new String[] {"rowid"}, null, null, null, null, null); in shouldBeAbleToMakeQueries() local 73 …Cursor cursor = builder.query(database, new String[] {"rowid"}, COL_VALUE + "=?", new String[] {"r… in shouldBeAbleToMakeQueriesWithSelection() local 81 …Cursor cursor = builder.query(database, new String[] {"rowid"}, null, null, COL_GROUP, null, null); in shouldBeAbleToMakeQueriesWithGrouping() local
|
D | ShadowCursorAdapterTest.java | 96 public void bindView(View view, Context context, Cursor cursor) { in bindView() 100 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() 110 @Override public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() 114 @Override public void bindView(View view, Context context, Cursor cursor) { in bindView()
|
/external/openscreen/discovery/mdns/ |
D | mdns_writer.cc | 56 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 …]
|
D | mdns_reader.cc | 43 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/ |
D | UnsafeCursorTest.kt | 26 val cursor = buffer.readAndWriteUnsafe() in acquireForRead() constant 43 val cursor = buffer.readAndWriteUnsafe() in acquireForWrite() constant 58 val cursor = buffer.readAndWriteUnsafe() in expand() constant 77 val cursor = buffer.readAndWriteUnsafe() in resizeBuffer() constant
|
/external/llvm-project/libunwind/src/ |
D | UnwindLevel1.c | 38 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() 132 unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase2() 244 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, in unwind_phase2_forced() 352 unw_cursor_t cursor; in _Unwind_RaiseException() local 386 unw_cursor_t cursor; in _Unwind_Resume() local 411 unw_cursor_t cursor; in _Unwind_ForcedUnwind() local 427 unw_cursor_t *cursor = (unw_cursor_t *)context; in _Unwind_GetLanguageSpecificData() local 448 unw_cursor_t *cursor = (unw_cursor_t *)context; in _Unwind_GetRegionStart() local 474 unw_cursor_t *cursor = (unw_cursor_t *)context; in _Unwind_GetGR() local 488 unw_cursor_t *cursor = (unw_cursor_t *)context; in _Unwind_SetGR() local [all …]
|
/external/google-breakpad/src/common/ |
D | byte_cursor_unittest.cc | 61 ByteCursor cursor(&buffer); in TEST() local 68 ByteCursor cursor(&buffer); in TEST() local 75 ByteCursor cursor(&buffer); in TEST() local 82 ByteCursor cursor(&buffer); in TEST() local 89 ByteCursor cursor(&buffer); in TEST() local 97 ByteCursor cursor(&buffer); in TEST() local 110 ByteCursor cursor(&buffer); in TEST() local 142 ByteCursor cursor(&buffer); in TEST() local 160 ByteCursor cursor(&buffer); in TEST() local 181 ByteCursor cursor(&buffer, true); in TEST() local [all …]
|
/external/apache-http/src/org/apache/http/message/ |
D | HeaderValueParser.java | 98 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()
|
D | BasicHeaderValueParser.java | 112 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()
|
D | LineParser.java | 82 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()
|
D | BasicLineParser.java | 127 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/igt-gpu-tools/lib/stubs/libunwind/ |
D | libunwind.h | 37 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/ |
D | wayland-cursor.c | 143 struct cursor { struct 144 struct wl_cursor cursor; argument 148 /** Get an shm buffer for a cursor image argument 184 wl_cursor_destroy(struct wl_cursor *cursor) in wl_cursor_destroy() 202 struct cursor *cursor; in wl_cursor_create_from_data() local 284 struct cursor *cursor; in wl_cursor_create_from_xcursor_images() local 345 struct wl_cursor *cursor; in load_callback() local 474 struct cursor *cursor = (struct cursor *) _cursor; in wl_cursor_frame_and_duration() local
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | ContactsFacade.java | 109 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/okio/okio/src/jvmTest/kotlin/okio/ |
D | BufferCursorKotlinTest.kt | 51 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/rust/crates/futures/tests/ |
D | io_cursor.rs | 9 let mut cursor = Cursor::new(vec![0; 5]); in cursor_asyncwrite_vec() localVariable 27 let mut cursor = Cursor::new(vec![0; 5].into_boxed_slice()); in cursor_asyncwrite_box() localVariable
|
/external/freetype/src/psaux/ |
D | psconv.c | 83 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()
|