Searched refs:cursor (Results 76 - 100 of 1014) sorted by relevance

1234567891011>>

/macosx-10.10/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Dhash.t154 # create the cursor
155 ok 41, my $cursor = $db->db_cursor() ;
161 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
167 ok 42, $cursor->status() == DB_NOTFOUND ;
168 ok 43, $cursor->status() eq $DB_errors{'DB_NOTFOUND'} ;
176 for ( $status = $cursor->c_get($k, $v, DB_LAST) ;
178 $status = $cursor->c_get($k, $v, DB_PREV)) {
186 ok 48, $cursor->status() == $status ;
187 ok 49, $cursor->status() eq $status ;
192 ok 52, $cursor
[all...]
H A Ddb-4.x.t26 my $cursor = $db->db_cursor();
50 ok $cursor->c_get($k1, $v1, DB_GET_BOTH_RANGE) == 0;
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dcommon.c85 || el->el_line.cursor >= el->el_line.lastchar)
88 *el->el_line.cursor++ = c;
94 while (count-- && el->el_line.cursor < el->el_line.lastchar)
95 *el->el_line.cursor++ = c;
107 * Delete from beginning of current word to cursor
116 if (el->el_line.cursor == el->el_line.buffer)
119 cp = c__prev_word(el->el_line.cursor, el->el_line.buffer,
122 for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
126 c_delbefore(el, (int)(el->el_line.cursor - cp));/* delete before dot */
127 el->el_line.cursor
[all...]
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dchared.c61 vu->cursor = el->el_line.cursor - el->el_line.buffer;
98 if (el->el_line.cursor < el->el_line.lastchar) {
100 for (cp = el->el_line.lastchar; cp >= el->el_line.cursor; cp--)
108 * Delete num characters after the cursor
114 if (el->el_line.cursor + num > el->el_line.lastchar)
115 num = el->el_line.lastchar - el->el_line.cursor;
119 cv_yank(el, el->el_line.cursor, num);
125 for (cp = el->el_line.cursor; cp <= el->el_line.lastchar; cp++)
134 * Delete the character after the cursor, d
[all...]
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dedebug.el981 (defun edebug-new-cursor (expressions offsets)
982 ;; Return a new cursor for EXPRESSIONS with OFFSETS.
987 (defsubst edebug-set-cursor (cursor expressions offsets)
989 ;; Return the cursor.
990 (setcar cursor expressions)
991 (setcdr cursor offsets)
992 cursor)
994 (defun edebug-copy-cursor (cursor)
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredSortedMap.java197 DataCursor cursor = null;
199 cursor = new DataCursor(view, false);
202 status = cursor.getFirst(false);
204 status = cursor.getLast(false);
207 cursor.getCurrentKey() : null;
211 closeCursor(cursor);
H A DCurrentTransaction.java311 * Opens a cursor for a given database, dup'ing an existing CDB cursor if
335 * meaningful cursor attribute for CDB, and here we count on
344 * Although CDB allows opening a write cursor when a read
345 * cursor is open, a self-deadlock will occur if a write is
350 "cannot open CDB write cursor when read cursor is open");
359 Cursor cursor;
362 cursor = other.dup(false);
364 cursor
385 dupCursor(Cursor cursor, boolean writeCursor, boolean samePosition) argument
416 closeCursor(Cursor cursor) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/sqlite/
H A DSQLiteIDBTransaction.cpp109 // It is possible the cursor failed to create and we just stored a null value.
118 void SQLiteIDBTransaction::closeCursor(SQLiteIDBCursor& cursor) argument
120 ASSERT(m_cursors.contains(cursor.identifier()));
122 m_backingStore.unregisterCursor(&cursor);
123 m_cursors.remove(cursor.identifier());
136 for (auto& cursor : m_cursors.values())
137 m_backingStore.unregisterCursor(cursor.get());
/macosx-10.10/tcl-105/tk/tk/library/ttk/
H A Dcursors.tcl4 # Map symbolic cursor names to platform-appropriate cursors.
8 # standard -- default cursor for most controls
9 # "" -- inherit cursor from parent window
10 # none -- no cursor
32 # X11 doesn't have a "forbidden" cursor (usually a slashed circle);
33 # "pirate" seems to be the conventional cursor for this purpose.
35 # Windows has an IDC_HELP cursor, but it's not available from Tk.
44 # Use X11 cursor names as defaults, since Tk supplies these
126 ## ttk::cursor $cursor
[all...]
/macosx-10.10/libedit-40/src/
H A Dcommon.c85 || el->el_line.cursor >= el->el_line.lastchar)
88 *el->el_line.cursor++ = c;
94 while (count-- && el->el_line.cursor < el->el_line.lastchar)
95 *el->el_line.cursor++ = c;
107 * Delete from beginning of current word to cursor
116 if (el->el_line.cursor == el->el_line.buffer)
119 cp = c__prev_word(el->el_line.cursor, el->el_line.buffer,
122 for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
126 c_delbefore(el, (int)(el->el_line.cursor - cp));/* delete before dot */
127 el->el_line.cursor
[all...]
H A Dhistory.c131 hentry_t *cursor; /* Current element in the list */ member in struct:history_t
217 h->cursor = h->list.next;
218 if (h->cursor != &h->list)
219 *ev = h->cursor->ev;
237 h->cursor = h->list.prev;
238 if (h->cursor != &h->list)
239 *ev = h->cursor->ev;
257 if (h->cursor == &h->list) {
262 if (h->cursor->next == &h->list) {
267 h->cursor
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drep018script.tcl91 set cursor [$db cursor]
92 error_check_good db_empty [llength [$cursor get -first]] 0
93 error_check_good cursor_close [$cursor close] 0
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Ddirent.c48 long cursor; member in struct:_dirent_dirinfo
133 dp->cursor = 0;
209 dp->cursor < 0 ||
210 dp->cursor >= dp->n_entries)
214 return dp->entries[dp->cursor++];
221 dp->cursor = 0;
228 dp->cursor = offset;
234 return dp->cursor;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducpgba.h58 * These are the flags for cursor motion.
75 long cursor; /* Position of "cursor" in the string. */ member in struct:_ucrun_t
92 int cursor_motion; /* Logical or visual cursor motion flag. */
94 ucrun_t *cursor; /* The run containing the "cursor." */ member in struct:_ucstring_t
117 * cursor motion should be provided.
131 * This changes the cursor motion flag for the string.
138 * This function will move the cursor to the right depending on the
139 * type of cursor motio
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DSecPolicySearch.cpp58 SecPointer<PolicyCursor> cursor(pc);
59 *searchRef = cursor->handle();
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecPolicySearch.cpp58 SecPointer<PolicyCursor> cursor(pc);
59 *searchRef = cursor->handle();
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DSecPolicySearch.cpp58 SecPointer<PolicyCursor> cursor(pc);
59 *searchRef = cursor->handle();
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DWidgetEfl.cpp80 void Widget::setCursor(const Cursor& cursor) argument
85 view->hostWindow()->setCursor(cursor);
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dhashed_db.c42 static DBC *cursor; variable
168 if ((result = db->cursor(db, NULL, &cursor, 0)) == 0) {
169 result = cursor->c_get(cursor, key, data, DB_FIRST);
189 if (cursor != 0) {
190 result = cursor->c_get(cursor, key, data, DB_NEXT);
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Dkeyset.c243 * @param cursor cursor that will keep track of progress, free with
256 hx509_cursor *cursor)
267 ret = (*certs->ops->iter_start)(context, certs, certs->ops_data, cursor);
276 * cursor.
280 * @param cursor cursor that keeps track of progress.
292 hx509_cursor cursor,
296 return (*certs->ops->iter)(context, certs, certs->ops_data, cursor, cert);
304 * @param cursor curso
254 hx509_certs_start_seq(hx509_context context, hx509_certs certs, hx509_cursor *cursor) argument
290 hx509_certs_next_cert(hx509_context context, hx509_certs certs, hx509_cursor cursor, hx509_cert *cert) argument
312 hx509_certs_end_seq(hx509_context context, hx509_certs certs, hx509_cursor cursor) argument
342 hx509_cursor cursor; local
501 hx509_cursor cursor; local
567 hx509_cursor cursor; local
690 hx509_cursor cursor; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itk/tests/
H A Doption.test32 keep -background -foreground -cursor
56 keep -background -foreground -cursor
74 keep -background -foreground -cursor
75 keep -background -foreground -cursor
122 itk::usual TestOptComp-test {keep -cursor -foreground}
127 } {keep -cursor -foreground}
142 .testUsual configure -foreground green -cursor gumby
145 [.testUsual component u0 cget -cursor]
154 ignore -cursor
159 .testUsual configure -foreground red -background white -cursor do
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/excxx_repquote/
H A Ddbc_auto.h7 * allocates a new cursor, and it is freed automatically when it goes out of
11 * are closed. In particular, the cursor handle must be closed before any
12 * database or transaction handles the cursor references. In addition, the
13 * cursor close method can throw exceptions, which are masked by the destructor.
22 db->cursor(txn, &dbc_, flags);
/macosx-10.10/Heimdal-398.1.2/admin/
H A Drename.c44 krb5_kt_cursor cursor; local
66 ret = krb5_kt_start_seq_get(context, keytab, &cursor);
74 ret = krb5_kt_next_entry(context, keytab, &entry, &cursor);
106 krb5_kt_end_seq_get(context, keytab, &cursor);
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/krb5/
H A Diter_cred.c46 krb5_cccol_cursor cursor; local
52 ret = krb5_cccol_cursor_new (context, &cursor);
56 while (krb5_cccol_cursor_next (context, cursor, &id) == 0 && id != NULL) {
103 krb5_cccol_cursor_free(context, &cursor);
/macosx-10.10/ICU-531.30/icuSources/i18n/unicode/
H A Dunirepl.h48 * output text of this object. Update the 'cursor' parameter to
49 * give the cursor position and return the length of the
56 * @param cursor output parameter for the cursor position.
67 int32_t& cursor) = 0;

Completed in 390 milliseconds

1234567891011>>