Searched refs:reverse (Results 1 - 25 of 586) sorted by relevance

1234567891011>>

/macosx-10.10/ICU-531.30/icuSources/layoutex/
H A DLXUtilities.h21 static void reverse(le_int32 array[], le_int32 count);
22 static void reverse(float array[], le_int32 count);
H A DLXUtilities.cpp75 void LXUtilities::reverse(le_int32 array[], le_int32 length) function in class:LXUtilities
87 void LXUtilities::reverse(float array[], le_int32 length) function in class:LXUtilities
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dhistsearch.c67 register int i, reverse; local
74 reverse = (direction < 0);
80 if (!history_length || ((i >= history_length) && !reverse))
83 if (reverse && (i >= history_length))
86 #define NEXT_LINE() do { if (reverse) i--; else i++; } while (0)
95 if ((reverse && i < 0) || (!reverse && i == history_length))
122 if (reverse)
/macosx-10.10/vim-55/runtime/colors/
H A Dshine.vim21 hi IncSearch term=reverse cterm=reverse gui=reverse
23 hi StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold
24 hi StatusLineNC term=reverse cterm=reverse gui=reverse
25 hi VertSplit term=reverse cter
[all...]
H A Devening.vim20 hi IncSearch term=reverse cterm=reverse gui=reverse
22 hi StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold
23 hi StatusLineNC term=reverse cterm=reverse gui=reverse
24 hi VertSplit term=reverse cter
[all...]
H A Dmorning.vim20 hi IncSearch term=reverse cterm=reverse gui=reverse
22 hi StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold
23 hi StatusLineNC term=reverse cterm=reverse gui=reverse
24 hi VertSplit term=reverse cter
[all...]
H A Dpeachpuff.vim26 hi IncSearch term=reverse cterm=reverse gui=reverse
27 hi Search term=reverse ctermbg=3 guibg=Gold2
32 hi StatusLine term=bold,reverse cterm=bold,reverse gui=bold guifg=White guibg=Black
33 hi StatusLineNC term=reverse cterm=reverse gui=bold guifg=PeachPuff guibg=Gray45
34 hi VertSplit term=reverse cterm=reverse gu
[all...]
H A Dmurphy.vim20 hi Search term=reverse guifg=white guibg=Blue
24 hi Error term=reverse ctermbg=Red ctermfg=White guibg=Red guifg=White
30 hi IncSearch term=reverse cterm=reverse gui=reverse
37 hi StatusLine term=reverse,bold cterm=reverse gui=NONE guifg=White guibg=darkblue
38 hi StatusLineNC term=reverse cterm=reverse gui=NONE guifg=white guibg=#333333
41 hi Visual term=reverse cter
[all...]
H A Dkoehler.vim20 hi Search term=reverse ctermfg=white ctermbg=red guifg=white guibg=Red
25 hi StatusLine term=bold,reverse cterm=bold ctermfg=lightblue ctermbg=white gui=bold guifg=blue guibg=white
26 hi StatusLineNC term=reverse ctermfg=white ctermbg=lightblue guifg=white guibg=blue
28 hi Visual term=reverse cterm=reverse gui=reverse
38 hi Error term=reverse ctermfg=darkcyan ctermbg=black guifg=Red guibg=Black
42 hi MatchParen term=reverse ctermfg=blue guibg=Blue
43 hi TabLine term=bold,reverse cterm=bold ctermfg=lightblue ctermbg=white gui=bold guifg=blue guibg=white
44 hi TabLineFill term=bold,reverse cter
[all...]
/macosx-10.10/emacs-93/emacs/lisp/mail/
H A Drmailsort.el41 (defun rmail-sort-by-date (reverse)
43 If prefix argument REVERSE is non-nil, sort them in reverse order."
45 (rmail-sort-messages reverse
52 (defun rmail-sort-by-subject (reverse)
54 If prefix argument REVERSE is non-nil, sort them in reverse order."
56 (rmail-sort-messages reverse
67 (defun rmail-sort-by-author (reverse)
69 If prefix argument REVERSE is non-nil, sort them in reverse order."
71 (rmail-sort-messages reverse
80 (defun rmail-sort-by-recipient (reverse)
[all...]
/macosx-10.10/dcerpc-61/www/lib/
H A Dbreadcrumbs.rb17 list.reverse!
/macosx-10.10/ruby-106/ruby/lib/rake/
H A Drule_recursion_overflow_error.rb16 super + ": [" + @targets.reverse.join(' => ') + "]"
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Array/
H A D15.4.4.4-2.js24 ECMA Section: 15.4.4.3-1 Array.prototype.reverse()
27 The elements of the array are rearranged so as to reverse their order.
59 Note that the reverse function is intentionally generic; it does not require
61 kinds of objects for use as a method. Whether the reverse function can be applied
64 Note: Array.prototype.reverse allows some flexibility in implementation
78 writeHeaderToLog( SECTION + " Array.prototype.reverse()");
86 testcases[testcases.length] = new TestCase( SECTION, "Array.prototype.reverse.length", 0, Array.prototype.reverse.length );
87 testcases[testcases.length] = new TestCase( SECTION, "delete Array.prototype.reverse.length", false, delete Array.prototype.reverse
[all...]
H A D15.4.2.1-3.js90 array[item++] = new TestCase( SECTION, "TEST_ARRAY.reverse", Array.prototype.reverse, TEST_ARRAY.reverse );
H A D15.4.2.3.js58 array[item++] = new TestCase( SECTION, "(new Array()).reverse == Array.prototype.reverse", true, (new Array()).reverse == Array.prototype.reverse );
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DArabicLayoutEngine.h128 * @param reverse - <code>TRUE</code> if the glyphs in the glyph array have been reordered
136 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
211 * @param reverse - if <code>TRUE</code>, the output will be in reverse order
219 virtual void mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool mirror,
230 * @param reverse - <code>TRUE</code> if the glyphs in the glyph array have been reordered
236 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
H A DArabicLayoutEngine.cpp107 void ArabicOpenTypeLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, argument
120 OpenTypeLayoutEngine::adjustGlyphPositions(chars, offset, count, reverse, glyphStorage, success);
128 adjustMarkGlyphs(&chars[offset], count, reverse, glyphStorage, &filter, success);
176 void UnicodeArabicOpenTypeLayoutEngine::mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, le_bool /*mirror*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
189 if (reverse) {
194 glyphStorage.allocateGlyphArray(count, reverse, success);
201 void UnicodeArabicOpenTypeLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, argument
215 adjustMarkGlyphs(&chars[offset], count, reverse, glyphStorage, &filter, success);
/macosx-10.10/emacs-93/emacs/lib-src/
H A Dgrep-changelog35 $rcs_log $with_date $version $help $reverse
56 "reverse!" => \$reverse,
86 --reverse Show entries in reverse (chronological) order
180 if ($reverse) {
194 @entries = () if $reverse;
235 if ($reverse) {
247 # ChangeLog.NNN according to $reverse.
260 @ARGV = reverse
[all...]
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_lists.rb24 # reverse li1 in place
25 li1.reverse!
H A Dbm_so_reverse_complement.rb11 seq.reverse!.tr!('wsatugcyrkmbdhvnATUGCYRKMBDHVN','WSTAACGRYMKVHDBNTAACGRYMKVHDBN')
/macosx-10.10/emacs-93/emacs/lisp/
H A Dsort.el44 (defun sort-subr (reverse nextrecfun endrecfun
89 (old (reverse sort-lists))
93 (or reverse (setq sort-lists (nreverse sort-lists)))
108 (if reverse (setq sort-lists (nreverse sort-lists)))
194 (defun sort-lines (reverse beg end)
197 REVERSE (non-nil means reverse order), BEG and END (region to sort).
207 (sort-subr reverse 'forward-line 'end-of-line)))))
210 (defun sort-paragraphs (reverse beg end)
213 REVERSE (non-nil means reverse order), BEG and END (region to sort).
221 (sort-subr reverse
[all...]
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dgethostbyaddr20 # -r reverse names to see if they resolve back to orig IP address. true
29 set reverse 1 ;# same as -r
40 send_user " -r reverse back to IP addr for verification true\n"
56 set reverse [expr !$reverse]
87 global reverse tag IPaddress
89 if {$dn && $reverse} {
93 if {$verified || !$reverse || !$dn} {
100 if {$verified || !$reverse} {
161 # first do a simple reverse nslooku
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dsearchcursor.js28 this.matches = function(reverse, pos) {
29 if (reverse) {
72 this.matches = function(reverse, pos) {
73 if (reverse) {
92 this.matches = function(reverse, pos) {
94 if (reverse) {
122 find: function(reverse) {
123 var self = this, pos = this.doc.clipPos(reverse ? this.pos.from : this.pos.to);
132 if (this.pos = this.matches(reverse, pos)) {
136 if (reverse) {
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Drecd010.tcl9 # TEST and reverse splits and across recovery.
82 "Recd010.d: btree reverse split 2 large dups"}
86 "Recd010.f: btree reverse split 10 dups"}
90 "Recd010.h: btree reverse split 100 dups"}
104 set reverse [string first "reverse" $msg]
106 recd010_check $testdir $testfile $opts abort $reverse $firstkeys
108 recd010_check $testdir $testfile $opts commit $reverse $firstkeys
122 proc recd010_check { tdir testfile opts op reverse origdups } {
132 if { $reverse
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DHexNumber.h78 result.reverse();
92 result.reverse();
110 result.reverse();

Completed in 309 milliseconds

1234567891011>>