Searched refs:cursor (Results 26 - 50 of 1034) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/
H A DCursor.pm10 DBIx::Class::Cursor - Abstract object representing a query cursor on a
15 my $cursor = $schema->resultset('CD')->cursor();
16 my $first_cd = $cursor->next;
20 A Cursor represents a query cursor on a L<DBIx::Class::ResultSet> object. It
22 L</all> and resetting the cursor with L</reset>.
24 Usually, you would use the cursor methods built into L<DBIx::Class::ResultSet>
43 Virtual method. Advances the cursor to the next row. Returns an array of
54 Virtual method. Resets the cursor to the beginning.
/macosx-10.9.5/libunwind-35.3/src/
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.9.5/WebCore-7537.78.1/inspector/front-end/ace/
H A Dmode_css.js105 var supportType = exports.supportType = "animation-fill-mode|alignment-adjust|alignment-baseline|animation-delay|animation-direction|animation-duration|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|animation|appearance|azimuth|backface-visibility|background-attachment|background-break|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|background|baseline-shift|binding|bleed|bookmark-label|bookmark-level|bookmark-state|bookmark-target|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|border|bottom|box-align|box-decoration-break|box-direction|box-flex-group|box-flex|box-lines|box-ordinal-group|box-orient|box-pack|box-shadow|box-sizing|break-after|break-before|break-inside|caption-side|clear|clip|color-profile|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|crop|cue-after|cue-before|cue|cursor|direction|display|dominant-baseline|drop-initial-after-adjust|drop-initial-after-align|drop-initial-before-adjust|drop-initial-before-align|drop-initial-size|drop-initial-value|elevation|empty-cells|fit|fit-position|float-offset|float|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|font|grid-columns|grid-rows|hanging-punctuation|height|hyphenate-after|hyphenate-before|hyphenate-character|hyphenate-lines|hyphenate-resource|hyphens|icon|image-orientation|image-rendering|image-resolution|inline-box-align|left|letter-spacing|line-height|line-stacking-ruby|line-stacking-shift|line-stacking-strategy|line-stacking|list-style-image|list-style-position|list-style-type|list-style|margin-bottom|margin-left|margin-right|margin-top|margin|mark-after|mark-before|mark|marks|marquee-direction|marquee-play-count|marquee-speed|marquee-style|max-height|max-width|min-height|min-width|move-to|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|orphans|outline-color|outline-offset|outline-style|outline-width|outline|overflow-style|overflow-x|overflow-y|overflow|padding-bottom|padding-left|padding-right|padding-top|padding|page-break-after|page-break-before|page-break-inside|page-policy|page|pause-after|pause-before|pause|perspective-origin|perspective|phonemes|pitch-range|pitch|play-during|position|presentation-level|punctuation-trim|quotes|rendering-intent|resize|rest-after|rest-before|rest|richness|right|rotation-point|rotation|ruby-align|ruby-overhang|ruby-position|ruby-span|size|speak-header|speak-numeral|speak-punctuation|speak|speech-rate|stress|string-set|table-layout|target-name|target-new|target-position|target|text-align-last|text-align|text-decoration|text-emphasis|text-height|text-indent|text-justify|text-outline|text-shadow|text-transform|text-wrap|top|transform-origin|transform-style|transform|transition-delay|transition-duration|transition-property|transition-timing-function|transition|unicode-bidi|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch-range|voice-pitch|voice-rate|voice-stress|voice-volume|volume|white-space-collapse|white-space|widows|width|word-break|word-spacing|word-wrap|z-index";
328 var cursor = editor.getCursorPosition();
329 var iterator = new TokenIterator(session, cursor.row, cursor.column);
335 var line = session.doc.getLine(cursor.row);
336 var rightChar = line.substring(cursor.column, cursor.column + 1);
343 if (!line.substring(cursor.column).match(/^\s*;/)) {
367 var cursor = editor.getCursorPosition();
368 var line = session.doc.getLine(cursor
[all...]
/macosx-10.9.5/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) {
H A Dexamples3.t70 my $cursor = $db->db_cursor() ;
71 while ($cursor->c_get($k, $v, DB_NEXT) == 0)
74 undef $cursor ;
118 my $cursor = $db->db_cursor() ;
119 while ($cursor->c_get($k, $v, DB_NEXT) == 0)
122 undef $cursor ;
H A Dexamples3.t.T71 my $cursor = $db->db_cursor() ;
72 while ($cursor->c_get($k, $v, DB_NEXT) == 0)
75 undef $cursor ;
121 my $cursor = $db->db_cursor() ;
122 while ($cursor->c_get($k, $v, DB_NEXT) == 0)
125 undef $cursor ;
H A Dtxn.t73 ok 12, my $cursor = $db1->db_cursor() ;
77 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
81 undef $cursor ;
89 ok 15, $cursor = $db1->db_cursor() ;
90 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
99 undef $cursor ;
143 ok 26, my $cursor = $db1->db_cursor() ;
147 while ($cursor->c_get($k, $v, DB_NEXT) == 0) {
151 undef $cursor ;
159 ok 29, $cursor
[all...]
H A Ddb-3.0.t64 # create a cursor
65 ok 6, my $cursor = $db->db_cursor() ;
69 ok 7, $cursor->c_get($k, $v, DB_SET) == 0 ;
72 # duplicate the cursor
73 my $dup_cursor = $cursor->c_dup(DB_POSITION);
76 # move original cursor off green/house
77 my $s = $cursor->c_get($k, $v, DB_NEXT) ;
81 # duplicate cursor should still be on green/house
/macosx-10.9.5/Heimdal-323.92.1/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.9.5/libunwind-35.3/testsuite/
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.9.5/ICU-511.35/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;
H A Dname2uni.cpp131 int32_t cursor = offsets.start; local
141 while (cursor < limit) {
142 c = text.char32At(cursor);
147 openPos = cursor;
149 ICU_Utility::parsePattern(openPat, text, cursor, limit);
153 cursor = i;
154 continue; // *** reprocess char32At(cursor)
199 cursor++; // advance over CLOSE_DELIM
203 text.handleReplaceBetween(openPos, cursor, str);
208 int32_t delta = cursor
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itk/library/
H A Ditk.tcl53 keep -background -cursor -foreground -font
60 keep -background -cursor
69 keep -background -cursor -foreground -font
77 keep -background -cursor -foreground -font
86 keep -background -cursor
90 keep -background -cursor -foreground -font
96 keep -background -cursor -foreground -font
103 keep -background -cursor -foreground -font
109 keep -background -cursor -foreground -font
116 keep -background -cursor
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredEntrySet.java81 DataCursor cursor = null;
84 cursor = new DataCursor(view, true);
86 cursor.findBoth(entry.getKey(), entry.getValue(), true);
88 cursor.delete();
90 closeCursor(cursor);
94 closeCursor(cursor);
117 DataCursor cursor = null;
119 cursor = new DataCursor(view, false);
121 cursor.findBoth(entry.getKey(), entry.getValue(), false);
126 closeCursor(cursor);
[all...]
H A DStoredKeySet.java75 DataCursor cursor = null;
78 cursor = new DataCursor(view, true);
79 OperationStatus status = cursor.putNoOverwrite(key, null, false);
80 closeCursor(cursor);
84 closeCursor(cursor);
H A DStoredValueSet.java115 DataCursor cursor = null;
118 cursor = new DataCursor(view, true);
119 cursor.useRangeKey();
121 cursor.putNoDupData(null, entity, null, true);
122 closeCursor(cursor);
126 closeCursor(cursor);
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dcommon.c80 || el->el_line.cursor >= el->el_line.lastchar)
83 *el->el_line.cursor++ = c;
89 while (count-- && el->el_line.cursor < el->el_line.lastchar)
90 *el->el_line.cursor++ = c;
102 * Delete from beginning of current word to cursor
111 if (el->el_line.cursor == el->el_line.buffer)
114 cp = c__prev_word(el->el_line.cursor, el->el_line.buffer,
117 for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
121 c_delbefore(el, el->el_line.cursor - cp); /* delete before dot */
122 el->el_line.cursor
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/
H A DKeyRangeTest.java59 private DataCursor cursor; field in class:KeyRangeTest
140 cursor = null;
159 cursor = new DataCursor(view, true);
162 cursor.put(keys[i], KEYS[i], null, false);
164 cursor.close();
172 cursor = new DataCursor(view, false);
174 cursor.close();
179 cursor = newCursor(view, keys[i], true, null, false, reversed);
181 cursor.close();
187 cursor
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFBurstTrie.c188 // the cursor is merely pointing at the beginning of the page, or the first entry.
190 // while "b" and "bc" are stored on a page level. If we creat a cursor for string "a", this cursor
192 // offsetInEntry fields of the cursor are set to 0 in this case. Now if we add "a" to the
194 // That entry has 0 strlen value. If we creat a cursor for string "a" again, this cursor will
296 void CFBurstTrieTraverseWithCursor(CFBurstTrieRef trie, const uint8_t *prefix, uint32_t prefixLen, void **cursor, void *ctx, bool (*callback)(void *, const uint8_t *, uint32_t, bool));
300 static void findCFBurstTrieLevel(CFBurstTrieRef trie, TrieCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool));
301 static void findCFBurstTrieMappedLevel(CFBurstTrieRef trie, MapCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool));
302 static void traverseCFBurstTrieLevel(CFBurstTrieRef trie, TrieLevelRef root, TrieCursor *cursor, boo
610 _CFBurstTrieCursor cursor; local
616 void *cursor = 0; local
677 void *cursor = 0; local
686 CFBurstTrieTraverseWithCursor(CFBurstTrieRef trie, const uint8_t *prefix, uint32_t prefixLen, void **cursor, void *ctx, bool (*callback)(void *, const uint8_t *, uint32_t, bool)) argument
710 CFBurstTrieSetCursorForBytes(CFBurstTrieRef trie, CFBurstTrieCursorRef cursor, const UInt8* bytes, CFIndex length) argument
741 CFBurstTrieCursorRef cursor = (CFBurstTrieCursorRef)calloc(sizeof(_CFBurstTrieCursor), 1); local
749 CFBurstTrieCursorCreateByCopy(CFBurstTrieCursorRef cursor) argument
779 CFBurstTrieCursorAdvanceForBytes(CFBurstTrieCursorRef cursor, const UInt8* bytes, CFIndex length) argument
798 CFBurstTrieCursorGetPayload(CFBurstTrieCursorRef cursor, uint32_t *payload) argument
809 CFBurstTrieCursorRelease(CFBurstTrieCursorRef cursor) argument
816 CFBurstTrieTraverseFromCursor(CFBurstTrieCursorRef cursor, void *ctx, CFBurstTrieTraversalCallback callback) argument
948 findCFBurstTrieList(CFBurstTrieRef trie, TrieCursor *cursor, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool)) argument
966 findCFBurstTrieMappedPage(CFBurstTrieRef trie, MapCursor *cursor, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool)) argument
1006 findCFBurstTrieLevel(CFBurstTrieRef trie, TrieCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool)) argument
1025 findCFBurstTrieCompactMappedLevel(CFBurstTrieRef trie, MapCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool)) argument
1059 findCFBurstTrieMappedLevel(CFBurstTrieRef trie, MapCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void*, const uint8_t*, uint32_t, bool)) argument
1081 traverseCFBurstTrieLevel(CFBurstTrieRef trie, TrieLevelRef root, TrieCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void *, const uint8_t *, uint32_t, bool)) argument
1103 traverseCFBurstTrieMappedLevel(CFBurstTrieRef trie, MapTrieLevelRef root, MapCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void *, const uint8_t *, uint32_t, bool)) argument
1131 traverseCFBurstTrieCompactMappedLevel(CFBurstTrieRef trie, CompactMapTrieLevelRef root, MapCursor *cursor, bool exactmatch, void *ctx, bool (*callback)(void *, const uint8_t *, uint32_t, bool)) argument
1167 traverseCFBurstTrieWithCursor(CFBurstTrieRef trie, const uint8_t *prefix, uint32_t prefixLen, void **cursor, bool exactmatch, void *ctx, bool (*callback)(void *, const uint8_t *, uint32_t, bool)) argument
1216 advanceCursorOnMappedPageForByte(Page *page, CompactMapCursor *cursor, UInt8 byte) argument
1284 advanceCursorMappedPageWithPerfixCompression(Page *page, CompactMapCursor *cursor, const UInt8* bytes, CFIndex length) argument
1306 advanceCursorMappedPageSortedByKey(Page *page, CompactMapCursor *cursor, const UInt8* bytes, CFIndex length) argument
1371 advanceCursorMappedPage(CFBurstTrieRef trie, CompactMapCursor *cursor, const UInt8* bytes, CFIndex length) argument
1389 advanceCursorCompactMappedLevel(CFBurstTrieRef trie, CompactMapCursor *cursor, const UInt8* bytes, CFIndex length) argument
1416 advanceCursorMappedLevel(CFBurstTrieRef trie, CompactMapCursor *cursor, const UInt8* bytes, CFIndex length) argument
1431 advanceMapCursor(CFBurstTrieRef trie, CompactMapCursor *cursor, const UInt8* bytes, CFIndex length) argument
1454 traverseFromMapCursorMappedLevel(CFBurstTrieRef trie, CompactMapCursor *cursor, UInt8* bytes, uint32_t capacity, uint32_t length, Boolean *stop, void *ctx, CFBurstTrieTraversalCallback callback) argument
1479 traverseFromMapCursorCompactMappedLevel(CFBurstTrieRef trie, CompactMapCursor *cursor, UInt8* bytes, uint32_t capacity, uint32_t length, Boolean *stop, void *ctx, CFBurstTrieTraversalCallback callback) argument
1514 traverseFromMapCursorMappedPageWithPrefixCompression(Page *page, CompactMapCursor *cursor, UInt8* bytes, uint32_t capacity, uint32_t length, Boolean *stop, void *ctx, CFBurstTrieTraversalCallback callback) argument
1550 traverseFromMapCursorMappedPageSortedByKey(Page *page, CompactMapCursor *cursor, UInt8* bytes, uint32_t capacity, uint32_t length, Boolean *stop, void *ctx, CFBurstTrieTraversalCallback callback) argument
1590 traverseFromMapCursorMappedPage(CFBurstTrieRef trie, CompactMapCursor *cursor, UInt8* bytes, uint32_t capacity, uint32_t length, Boolean *stop, void *ctx, CFBurstTrieTraversalCallback callback) argument
1599 traverseFromMapCursor(CFBurstTrieRef trie, CompactMapCursor *cursor, UInt8* bytes, uint32_t capacity, uint32_t length, Boolean *stop, void *ctx, CFBurstTrieTraversalCallback callback) argument
1635 getMapCursorPayloadFromPackedPageEntry(PageEntryPacked *entry, const CompactMapCursor *cursor, uint32_t *payload) argument
1652 getMapCursorPayloadFromPageEntry(PageEntry *entry, const CompactMapCursor *cursor, uint32_t *payload) argument
1669 getMapCursorPayload(CFBurstTrieRef trie, const CompactMapCursor *cursor, uint32_t *payload) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/cursor/
H A Dcursor.tcl0 # cursor.tcl --
3 # Tk cursor handling routines
10 # RCS: @(#) $Id: cursor.tcl,v 1.3 2009/04/24 22:03:48 hobbs Exp $
13 package provide cursor 0.3
15 namespace eval ::cursor {
19 # megawidgets that will self-propagate cursor changes down.
52 # ::cursor::propagate --
54 # Propagates a cursor to a widget and all descendants.
57 # w Parent widget to set cursor on (includes children)
58 # cursor Th
[all...]
/macosx-10.9.5/gnutar-452/gnutar/src/
H A Dnames.c305 char *cursor;
341 cursor = name_buffer + strlen (name_buffer) - 1;
342 while (cursor > name_buffer && ISSLASH (*cursor))
343 *cursor-- = '\0';
509 struct name *cursor = namelist;
511 if (!cursor)
514 if (cursor->name[0] == 0)
516 chdir_do (cursor->change_dir);
522 cursor
302 char *cursor; local
506 struct name *cursor = namelist; local
565 struct name const *cursor; local
611 struct name const *cursor; local
660 struct name *cursor; local
864 struct name *cursor = namelist_match (file_name, length); local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-bdb/
H A Didl.c111 unsigned cursor = 1; local
121 cursor = base + pivot + 1;
122 val = IDL_CMP( id, ids[cursor] );
128 base = cursor;
132 return cursor;
137 ++cursor;
139 return cursor;
513 DBC *cursor; local
575 /* If we're not reusing an existing cursor, get a new one */
577 rc = db->cursor( d
703 DBC *cursor; local
914 DBC *cursor; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dvi.c77 el->el_line.cursor = el->el_line.buffer;
84 el->el_chared.c_vcmd.pos = el->el_line.cursor;
90 * Paste previous deletion before or after the cursor
106 if (!c && el->el_line.cursor < el->el_line.lastchar)
107 el->el_line.cursor++;
110 if (el->el_line.cursor + len > el->el_line.lastchar)
112 (void) memcpy(el->el_line.cursor, k->buf, len *
113 sizeof(*el->el_line.cursor));
120 * Vi paste previous deletion to the right of the cursor
133 * Vi paste previous deletion to the left of the cursor
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSourceCSSTokenizer.re2js36 | sed 's|[*]cursor[+][+]|this._charAt(cursor++)|' \
37 | sed 's|[[*][+][+]cursor|this._charAt(++cursor)|' \
38 | sed 's|[*]cursor|this._charAt(cursor)|' \
150 _stringToken: function(cursor, stringEnds)
156 return cursor;
169 nextToken: function(cursor)
171 var cursorOnEnter = cursor;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DWidgetBlackBerry.cpp50 void Widget::setCursor(Cursor const& cursor) argument
58 pageClient->setCursor(cursor.impl());

Completed in 180 milliseconds

1234567891011>>