Searched refs:cursor (Results 201 - 225 of 1014) sorted by relevance

1234567891011>>

/macosx-10.10/BerkeleyDB-21/db/test/
H A Drecd15scr.tcl49 set dbc [$db cursor -txn $t]
50 error_check_good cursor($i) [is_valid_cursor $dbc $db] TRUE
H A Drsrc004.tcl42 set dbc [eval {$db cursor} ""]
H A Dsdbscript.tcl33 set dbc [$db cursor]
H A Dtest098.tcl9 # TEST a secondary, and do a normal cursor get followed by a get_recno.
76 set bc [$bdb cursor]
77 error_check_good cursor [is_valid_cursor $bc $bdb] TRUE
/macosx-10.10/Heimdal-398.1.2/admin/
H A Dcopy.c57 krb5_kt_cursor cursor; local
91 ret = krb5_kt_start_seq_get (context, src_keytab, &cursor);
101 &entry, &cursor)) == 0) {
169 krb5_kt_end_seq_get (context, src_keytab, &cursor);
H A Dlist.c43 krb5_kt_cursor cursor; local
69 ret = krb5_kt_start_seq_get(context, keytab, &cursor);
89 while(krb5_kt_next_entry(context, keytab, &entry, &cursor) == 0){
142 ret = krb5_kt_end_seq_get(context, keytab, &cursor);
/macosx-10.10/Heimdal-398.1.2/kuser/
H A Dkswitch.c75 krb5_cc_cache_cursor cursor; local
89 ret = krb5_cc_cache_get_first(kcc_context, NULL, &cursor);
93 while (krb5_cc_cache_next(kcc_context, cursor, &id) == 0) {
116 krb5_cc_cache_end_seq_get(kcc_context, cursor);
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dfuncrepl.h85 int32_t& cursor);
H A Dstrrepl.h51 * True if this object outputs a cursor position.
74 * text and sets the cursor to the given position.
78 * @param theCursorPos cursor position that will be returned by
89 * text and does not modify the cursor.
126 int32_t& cursor);
H A Dfuncrepl.cpp81 int32_t& cursor)
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
78 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& cursor) argument
/macosx-10.10/MITKerberosShim-66/test/
H A Dtest-krb5.c56 krb5_cc_cursor cursor; local
99 ret = krb5_cc_start_seq_get(ctx, ccache, &cursor);
101 while((ret = krb5_cc_next_cred(ctx, ccache, &cursor, &creds)) == 0)
107 ret = krb5_cc_end_seq_get(ctx, ccache, &cursor);
/macosx-10.10/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.css45 .CodeMirror div.CodeMirror-cursor {
52 .CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
57 /* Can style cursor different in overwrite (non-insert) mode */
58 div.CodeMirror-overwrite div.CodeMirror-cursor {}
181 cursor: default;
186 cursor: text;
237 .CodeMirror div.CodeMirror-cursor {
254 .CodeMirror-crosshair { cursor: crosshair; }
268 /* Hide the cursor whe
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcodemirror.css45 .CodeMirror div.CodeMirror-cursor {
52 .CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
57 /* Can style cursor different in overwrite (non-insert) mode */
58 div.CodeMirror-overwrite div.CodeMirror-cursor {}
181 cursor: default;
186 cursor: text;
237 .CodeMirror div.CodeMirror-cursor {
254 .CodeMirror-crosshair { cursor: crosshair; }
268 /* Hide the cursor whe
[all...]
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dhist.c106 el->el_line.cursor = el->el_line.buffer;
109 el->el_line.cursor = el->el_line.lastchar;
138 el->el_line.cursor = el->el_line.buffer;
141 el->el_line.cursor = el->el_line.lastchar;
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dextbutton.itk30 keep -cursor -font
271 set _oldValues(-cursor) [cget -cursor]
273 configure -cursor "X_cursor red black"
283 configure -cursor $_oldValues(-cursor)
370 set _oldValues(-cursor) [cget -cursor]
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dtwind.tcl43 -cursor top_left_arrow
45 -cursor top_left_arrow
68 -cursor top_left_arrow}
77 -cursor top_left_arrow
85 -cursor top_left_arrow} -padx 3
97 -cursor top_left_arrow} -padx 3
101 $t insert end "to note that now cursor movement is now by visual line by "
118 -cursor top_left_arrow
124 -offvalue "Short" -cursor top_left_arrow -pady 5 -padx 2
131 button $t.color$i -text $color -cursor top_left_arro
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DDataView.java251 * Returns a new view with a specified cursor configuration.
323 DataCursor cursor = new DataCursor(this, false);
325 return cursor.getFirst(false) != OperationStatus.SUCCESS;
327 cursor.close();
356 DataCursor cursor = new DataCursor(this, true);
358 status = cursor.getCursor().putNoOverwrite(keyThang,
361 cursor.close();
367 "cannot open CDB write cursor when read cursor is open");
398 DataCursor cursor
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-bdb/
H A Did2entry.c102 DBC *cursor; local
119 rc = db->cursor( db, tid, &cursor, bdb->bi_db_opflags );
125 rc = cursor->c_get( cursor, &key, &data, DB_SET );
138 rc = cursor->c_get( cursor, &key, &data, DB_CURRENT );
152 rc = cursor->c_get( cursor, &key, &data, DB_CURRENT );
156 cursor
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/serial/
H A DStoredClassCatalog.java278 /* An intent-to-write cursor is needed for CDB. */
284 Cursor cursor = null;
290 cursor = db.openCursor(txn, cursorConfig);
295 OperationStatus status = cursor.getSearchKey(key, data,
305 cursor.put(key, data);
326 cursor.put(key, data);
336 cursor.put(classKey, data);
339 * Update the maps before closing the cursor, so that the cursor
347 if (cursor !
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Dbidiapi.txt10 supports. In addition to reordering, the PGBA includes cursor movement
23 These macros are used to set the cursor movement for each reordered string.
39 UCPGBA_CURSOR_LOGICAL, and is used to specify the initial cursor motion
55 This function will return the text position of the internal cursor and the
63 This function will change the cursor motion type and return the previous
64 cursor motion type.
70 This function will move the internal cursor to the right according to the
71 type of cursor motion set for the string.
73 If no cursor motion is performed, it returns 0. Otherwise it will return a
80 This function will move the internal cursor t
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DPassword.cpp49 KCCursor cursor(keychains, itemClass, searchAttrList);
51 if (cursor->next(mItem))
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DPassword.cpp49 KCCursor cursor(keychains, itemClass, searchAttrList);
51 if (cursor->next(mItem))
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DPassword.cpp49 KCCursor cursor(keychains, itemClass, searchAttrList);
51 if (cursor->next(mItem))
/macosx-10.10/Security-57031.1.35/codesign_wrapper/
H A Dcodesign.c106 uint8_t *cursor = bytes; local
107 require_string(htonl(*(uint32_t*)(cursor+8)) >= 0x20001, out, "incompatible version");
108 require_string(htonl(*(uint32_t*)(cursor+8)) <= 0x2F000, out, "incompatible version");
109 uint32_t hash_offset = htonl(*(uint32_t*)(cursor+16));
110 require_string(htonl(*(uint32_t*)(cursor+24)) >= 5, out, "no entitlements slot yet");
111 require_string(*(cursor+36) == 20, out, "unexpected hash size");
112 require_string(*(cursor+37) == 1, out, "unexpected hash type");
113 message = CFDataCreate(kCFAllocatorDefault, cursor+hash_offset-5*20, 20);
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itk/examples/
H A DTextInfo.itk38 keep -background -cursor -foreground -font

Completed in 279 milliseconds

1234567891011>>