Searched refs:cursor (Results 1 - 25 of 966) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/cursor/
H A DpkgIndex.tcl1 package ifneeded cursor 0.3 [list source [file join $dir cursor.tcl]]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducpgba.c133 run->cursor = ~0;
166 * Add the run to the logical list for cursor traversal.
200 * Add the run to the visual list for cursor traversal.
235 * Add the run to the visual list for cursor traversal.
272 * Add the run to the visual list for cursor traversal.
302 * Add the run to the visual list for cursor traversal.
333 str->visual_first = str->visual_last = str->cursor = 0;
428 * Set up the initial cursor run.
430 str->cursor = str->logical_first;
432 str->cursor
477 ucrun_t *cursor; local
515 ucrun_t *cursor; local
603 ucrun_t *cursor; local
642 ucrun_t *cursor; local
730 ucrun_t *cursor; local
[all...]
/macosx-10.10.1/libunwind-35.3/testsuite/
H A Dunwind_test_main.c30 unw_cursor_t cursor; local
35 unw_init_local(&cursor, &uc);
36 if ( unw_step(&cursor) > 0 ) {
38 if ( unw_step(&cursor) > 0 ) {
40 unw_resume(&cursor);
H A Dbacktrace.c32 unw_cursor_t cursor; local
38 unw_init_local(&cursor, &uc);
40 unw_get_proc_name(&cursor, functionName, 64, &offset);
47 } while (unw_step(&cursor) > 0);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorDragToAdjustNumberController.css27 cursor: col-resize;
/macosx-10.10.1/libunwind-35.3/src/
H A Dlibuwind.cxx58 /// create a cursor of a thread in this process given 'context' recorded by unw_getcontext()
60 EXPORT int unw_init_local(unw_cursor_t* cursor, unw_context_t* context) argument
62 DEBUG_PRINT_API("unw_init_local(cursor=%p, context=%p)\n", cursor, context);
63 // use "placement new" to allocate UnwindCursor in the cursor buffer
65 new ((void*)cursor) UnwindCursor<LocalAddressSpace,Registers_x86>(context, sThisAddressSpace);
67 new ((void*)cursor) UnwindCursor<LocalAddressSpace,Registers_x86_64>(context, sThisAddressSpace);
69 new ((void*)cursor) UnwindCursor<LocalAddressSpace,Registers_ppc>(context, sThisAddressSpace);
71 AbstractUnwindCursor* co = (AbstractUnwindCursor*)cursor;
82 /// create a cursor int
84 unw_init_remote_thread(unw_cursor_t* cursor, unw_addr_space_t as, thread_t thread) argument
184 unw_get_reg(unw_cursor_t* cursor, unw_regnum_t regNum, unw_word_t* value) argument
199 unw_set_reg(unw_cursor_t* cursor, unw_regnum_t regNum, unw_word_t value) argument
225 unw_get_fpreg(unw_cursor_t* cursor, unw_regnum_t regNum, unw_fpreg_t* value) argument
239 unw_set_fpreg(unw_cursor_t* cursor, unw_regnum_t regNum, unw_fpreg_t value) argument
254 unw_step(unw_cursor_t* cursor) argument
265 unw_get_proc_info(unw_cursor_t* cursor, unw_proc_info_t* info) argument
279 unw_resume(unw_cursor_t* cursor) argument
291 unw_get_proc_name(unw_cursor_t* cursor, char* buf, size_t bufLen, unw_word_t* offset) argument
305 unw_is_fpreg(unw_cursor_t* cursor, unw_regnum_t regNum) argument
316 unw_regname(unw_cursor_t* cursor, unw_regnum_t regNum) argument
327 unw_is_signal_frame(unw_cursor_t* cursor) argument
[all...]
H A DUnwindLevel1-gcc-ext.c90 // We create an unwind cursor then alter the IP to be pc
91 unw_cursor_t cursor; local
95 unw_init_local(&cursor, &uc);
96 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(long)pc);
97 if ( unw_get_proc_info(&cursor, &info) == UNW_ESUCCESS )
110 unw_cursor_t cursor; local
113 unw_init_local(&cursor, &uc);
121 if ( unw_step(&cursor) <= 0 ) {
122 DEBUG_PRINT_UNWINDING(" _backtrace: ended because cursor reached bottom of stack, returning %d\n", _URC_END_OF_STACK);
131 unw_get_proc_name(&cursor, functionNam
154 unw_cursor_t cursor; local
172 unw_cursor_t* cursor = (unw_cursor_t*)context; local
[all...]
/macosx-10.10.1/libauto-186/
H A DBitmap.h71 // Returns the bit position of the specified cursor.
73 inline usword_t cursor_bp(const usword_t *cursor) const { return ((uintptr_t)cursor - (uintptr_t)address()) << bits_per_byte_log2; }
145 usword_t *cursor = bp_cursor(bp); local
146 *cursor |= (1L << shift(bp));
181 usword_t *cursor = bp_cursor(bp); local
182 *cursor &= ~(1L << shift(bp));
238 static inline usword_t *skip_all_zeros(usword_t *cursor, usword_t *end) { argument
243 while (cursor < near_end) {
245 usword_t word0 = cursor[
275 skip_backward_all_zeros(usword_t *cursor, usword_t *first) argument
386 volatile usword_t *cursor = bp_cursor(bp); local
411 volatile usword_t *cursor = bp_cursor(bp); local
[all...]
H A DBitmap.cpp52 usword_t *cursor = bp_cursor(bp); // address of first word local
56 *cursor++ |= (all_ones << sh);
62 for ( ; spill >= (sword_t)bits_per_word; spill -= bits_per_word) *cursor++ = all_ones;
65 if (spill > 0) *cursor |= (all_ones >> (bits_per_word - spill));
76 usword_t *cursor = bp_cursor(bp); // address of first word local
80 *cursor++ &= ~(all_ones << sh);
86 for ( ; spill >= (sword_t)bits_per_word; spill -= bits_per_word) *cursor++ = all_zeros;
89 if (spill > 0) *cursor &= ~(all_ones >> (bits_per_word - spill));
94 usword_t *cursor = bp_cursor(bp); // address of first word local
98 if (*cursor
161 usword_t *cursor = bp_cursor(bp); // address of bit map data local
190 usword_t *cursor = bp_cursor(bp); // address of bit map data local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DBlockIterator.java21 * An iterator that does not need closing because a cursor is not kept open
22 * across method calls. A cursor is opened to read a block of records at a
144 DataCursor cursor = null;
146 cursor = new DataCursor(coll.view, false);
147 if (moveCursor(i, cursor)) {
148 return cursor.getCurrentRecordNumber();
155 closeCursor(cursor);
192 * Sets a given slot using the data in the given cursor.
194 private void setSlot(int i, DataCursor cursor) { argument
196 keys[i] = KeyRange.getByteArray(cursor
210 insertSlot(int i, DataCursor cursor) argument
278 moveCursor(int i, DataCursor cursor) argument
287 closeCursor(DataCursor cursor) argument
[all...]
H A DStoredContainer.java66 * Returns the cursor configuration that is used for all operations
73 * @return the cursor configuration, or null if no configuration has been
129 * Clones a container with a specified cursor configuration.
290 DataCursor cursor = null;
292 cursor = new DataCursor(view, false);
294 cursor.getSearchKey(key, null, false)) {
295 return cursor.getCurrentValue();
302 closeCursor(cursor);
308 DataCursor cursor = null;
311 cursor
410 closeCursor(DataCursor cursor) argument
[all...]
H A DStoredIterator.java76 private DataCursor cursor; field in class:StoredIterator
90 this.cursor = new DataCursor(coll.view, writeAllowed);
92 this.cursor = joinCursor;
96 /* Ensure that the cursor is closed. [#10516] */
107 * cursor.
120 * cursor.
144 if (cursor == null) {
173 if (cursor == null) {
210 currentData = coll.makeIteratorData(this, cursor);
243 currentData = coll.makeIteratorData(this, cursor);
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dcursor.rb2 # tkextlib/tcllib/cursor.rb
15 PACKAGE_NAME = 'cursor'.freeze
22 TkPackage.require('cursor')
29 fail RuntimeError, "'tkextlib/tcllib/cursor' extension is not available on your current environment."
36 def self.cursor_propagate(win, cursor)
40 def self.cursor_restore(win, cursor = None)
47 # Pops up a dialog with a listbox containing all the cursor names.
48 # Selecting a cursor name will display it in that dialog.
50 #tk_call_without_enc('::cursor::display', parent)
56 def cursor_propagate(cursor)
[all...]
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dhash.c181 struct hash_entry const *cursor = bucket; local
184 while (cursor = cursor->next, cursor)
209 struct hash_entry const *cursor = bucket; local
216 while (cursor = cursor->next, cursor)
252 struct hash_entry const *cursor; local
260 for (cursor
300 struct hash_entry const *cursor; local
329 struct hash_entry const *cursor; local
361 struct hash_entry const *cursor; local
611 struct hash_entry *cursor; local
649 struct hash_entry *cursor; local
747 struct hash_entry *cursor; local
821 struct hash_entry *cursor; local
1033 struct hash_entry *cursor; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Demacs.c50 * Delete character under cursor or list completions if at end of line
58 if (el->el_line.cursor == el->el_line.lastchar) {
60 if (el->el_line.cursor == el->el_line.buffer) {
77 if (el->el_line.cursor > el->el_line.lastchar)
78 el->el_line.cursor = el->el_line.lastchar;
86 * Cut from cursor to end of current word
95 if (el->el_line.cursor == el->el_line.lastchar)
98 cp = c__next_word(el->el_line.cursor, el->el_line.lastchar,
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
106 c_delafter(el, (int)(cp - el->el_line.cursor)); /* delet
[all...]
/macosx-10.10.1/libedit-40/src/
H A Demacs.c50 * Delete character under cursor or list completions if at end of line
58 if (el->el_line.cursor == el->el_line.lastchar) {
60 if (el->el_line.cursor == el->el_line.buffer) {
77 if (el->el_line.cursor > el->el_line.lastchar)
78 el->el_line.cursor = el->el_line.lastchar;
86 * Cut from cursor to end of current word
95 if (el->el_line.cursor == el->el_line.lastchar)
98 cp = c__next_word(el->el_line.cursor, el->el_line.lastchar,
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
106 c_delafter(el, (int)(cp - el->el_line.cursor)); /* delet
[all...]
/macosx-10.10.1/lukemftp-14/tnftp/libedit/
H A Demacs.c45 * Delete character under cursor or list completions if at end of line
53 if (el->el_line.cursor == el->el_line.lastchar) {
55 if (el->el_line.cursor == el->el_line.buffer) {
73 if (el->el_line.cursor > el->el_line.lastchar)
74 el->el_line.cursor = el->el_line.lastchar;
82 * Cut from cursor to end of current word
91 if (el->el_line.cursor == el->el_line.lastchar)
94 cp = c__next_word(el->el_line.cursor, el->el_line.lastchar,
97 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
102 c_delafter(el, cp - el->el_line.cursor); /* delet
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DSubIndexCursor.java16 * The cursor for a SubIndex treats Dup and NoDup operations specially because
25 SubIndexCursor(RangeCursor cursor, ValueAdapter<V> adapter) { argument
26 super(cursor, adapter, false/*updateAllowed*/);
32 return new SubIndexCursor<V>(cursor.dup(true), adapter);
45 return returnValue(cursor.getNext(key, pkey, data, lockMode));
58 return returnValue(cursor.getPrev(key, pkey, data, lockMode));
H A DBasicCursor.java27 RangeCursor cursor; field in class:BasicCursor
34 BasicCursor(RangeCursor cursor, argument
37 this.cursor = cursor;
54 return returnValue(cursor.getFirst(key, pkey, data, lockMode));
66 return returnValue(cursor.getLast(key, pkey, data, lockMode));
78 return returnValue(cursor.getNext(key, pkey, data, lockMode));
91 return returnValue(cursor.getNextDup(key, pkey, data, lockMode));
103 return returnValue(cursor.getNextNoDup(key, pkey, data, lockMode));
115 return returnValue(cursor
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-192465.js112 var cursor = head;
116 cursor.next = {};
117 cursor = cursor.next;
120 cursor.toSource = function()
/macosx-10.10.1/libclosure-65/objectTests/
H A Dlayout.m47 int cursor = 0;
54 cursor += skip;
55 if ((cursor <= seeking) && ((cursor + process) > seeking)) {
58 cursor += process;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-bdb/
H A Dnextid.c42 DBC *cursor; local
52 /* Get a read cursor */
53 rc = bdb->bi_id2entry->bdi_db->cursor( bdb->bi_id2entry->bdi_db,
54 tid, &cursor, 0 );
57 rc = cursor->c_get(cursor, &key, &data, DB_LAST);
58 cursor->c_close(cursor);
/macosx-10.10.1/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Ddestroy.t52 ok 8, my $cursor = $db1->db_cursor() ;
56 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
60 undef $cursor ;
68 ok 11, $cursor = $db1->db_cursor() ;
69 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
75 #undef $cursor ;
85 my $cursor ;
92 ok 14, $cursor = $db1->db_cursor() ;
93 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dks_null.c56 hx509_certs certs, void *data, void **cursor)
58 *cursor = NULL;
74 void *cursor)
76 assert(cursor == NULL);
55 null_iter_start(hx509_context context, hx509_certs certs, void *data, void **cursor) argument
71 null_iter_end(hx509_context context, hx509_certs certs, void *data, void *cursor) argument
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Duni2name.cpp89 int32_t cursor = offsets.start; local
96 while (cursor < limit) {
97 UChar32 c = text.char32At(cursor);
103 text.handleReplaceBetween(cursor, cursor+clen, str);
105 cursor += len; // advance cursor and adjust for new text
108 cursor += clen;
114 offsets.start = cursor;

Completed in 196 milliseconds

1234567891011>>