Searched refs:previous (Results 1 - 25 of 325) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/scripts/
H A Djsmin.py106 previous = read(1)
107 if previous == '\\':
110 if previous == '/':
115 previous = next1
118 write(previous)
119 elif not previous:
121 elif previous >= '!':
122 if previous in "'\"":
123 in_quote = previous
124 write(previous)
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/Scripts/
H A Djsmin.py106 previous = read(1)
107 if previous == '\\':
110 if previous == '/':
115 previous = next1
118 write(previous)
119 elif not previous:
121 elif previous >= '!':
122 if previous in "'\"":
123 in_quote = previous
124 write(previous)
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dposix_signals.c60 int previous; local
63 previous = sigblock(*set);
65 previous = sigsetmask(*set);
69 previous = sigsetmask(m & ~*set);
76 *old = previous;
/macosx-10.10.1/ruby-106/ruby/missing/
H A Derf.c32 double result, term, previous; local
39 previous = result; result += term;
40 if (result == previous) return result;
51 double result, w, temp, previous; local
62 previous = result; result += temp;
63 if (result == previous) return result;
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DStructureRareData.cpp42 StructureRareData* StructureRareData::create(VM& vm, Structure* previous) argument
44 StructureRareData* rareData = new (NotNull, allocateCell<StructureRareData>(vm.heap)) StructureRareData(vm, previous);
56 StructureRareData::StructureRareData(VM& vm, Structure* previous) argument
59 if (previous)
60 m_previous.set(vm, this, previous);
/macosx-10.10.1/ruby-106/ruby/lib/rexml/validation/
H A Drelaxng.rb51 @root.previous = true
128 @previous = []
142 def previous=( previous )
143 @previous << previous
149 #p @previous
150 return @previous.pop.next( event ) if @events[@current].nil?
154 @events[@current-1].previous = self
161 #puts "#{inspect[0,5]} 1RETURNING #{@previous
[all...]
/macosx-10.10.1/vim-55/runtime/indent/
H A Dvhdl.vim50 " find previous line that is not a comment
59 " default indent starts as previous non-comment line's indent
66 " where: anywhere in current or previous line
75 " indent: previous line's comment position, otherwise follow next non-comment line if possible
99 " where: anywhere in previous 2 lines
100 " find following previous non-comment line
126 " where: start of previous line
135 " indent: backtrace previous non-comment lines for next smaller or equal size indent
137 " where: start of previous line
139 " where: start of previous lin
[all...]
H A Dlogtalk.vim35 " Previous line was comment -> use previous line's indent
39 " Check for entity opening directive on previous line
42 " Check for clause head on previous line
45 " Check for entity closing directive on previous line
48 " Check for end of clause on previous line
52 " Check for opening conditional on previous line
H A Dprolog.vim38 " Previous line was comment -> use previous line's indent
42 " Check for clause head on previous line
45 " Check for end of clause on previous line
49 " Check for opening conditional on previous line
H A Ddylan.vim30 "Find the previous non-blank line
41 " If previous line was a comment, use its indent
46 " If previous line was a 'define', indent
52 " If previous line was a let with no closing semicolon, indent
55 " If previous line opened a parenthesis, and did not close it, indent
H A Dconfig.vim53 " if previous line has unmatched, unescaped opening parentheses,
59 " if previous line has unmatched opening bracket,
65 " if previous line had an unmatched closing parantheses,
73 " if previous line had an unmatched closing bracket,
H A Dada.vim52 " prev_indent = the previous line's indent
53 " prev_lnum = previous line (to start looking on)
56 " No recursive previous block analysis: simply look for a valid line
60 " Seems to work OK as it 'starts' with the indent of the /previous/ line.
75 " Get previous non-blank/non-comment-only line
95 " prev_indent = the previous line's indent
96 " prev_lnum = previous line (to start looking on)
118 " Get previous non-blank/non-comment-only line
137 " Return indent of previous statement-start
140 " the end of a statement - we want the previous beginnin
[all...]
H A Dawk.vim49 " Find previous line and get it's indentation
57 " Increase indent if the previous line contains an opening brace. Search
58 " for this brace the hard way to prevent errors if the previous line is a
106 " If the previous line doesn't need continuation on the current line we are
108 " previous statement instead of just the previous line. This is a bit
109 " complicated because the previous statement might be multi-line.
113 " 1 If the previous line contains closing braces and has negative brace
116 " 2 If the line before the previous needs continuation search backward
171 " align a line relative to the 'print ' or 'if (' on the previous lin
[all...]
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Ddemo_altkeys.c89 struct timeval current, previous; local
122 gettimeofday(&previous, 0);
131 secs = current.tv_sec - previous.tv_sec;
132 msecs = (current.tv_usec - previous.tv_usec) / 1000;
142 previous = current;
/macosx-10.10.1/ICU-531.30/icuSources/samples/break/
H A Dbreak.cpp59 for (int32_t start = boundary.previous();
61 end = start, start = boundary.previous())
79 int32_t start = boundary.previous();
87 int32_t start = boundary.previous();
/macosx-10.10.1/top-100.1.2/
H A Dcsw.c34 psamp->csw.previous,
H A Dfaults.c39 psamp->faults.previous,
70 psamp->cow_faults.previous,
H A Dmessages.c37 psamp->messages_sent.previous,
67 psamp->messages_recv.previous,
H A Dsyscalls.c37 psamp->syscalls_mach.previous,
67 psamp->syscalls_bsd.previous,
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_entry_link_resolver.c72 struct links_entry *previous; member in struct:links_entry
288 if (le->previous != NULL)
289 le->previous->next = le->next;
291 le->next->previous = le->previous;
326 le->next->previous = le->previous;
360 res->buckets[bucket]->previous = le;
363 le->previous = NULL;
394 new_buckets[bucket]->previous
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/library/
H A Dword.tcl49 set WordBreakRE(previous) "$space*($letter+)$space*\$"
143 regexp -indices $WordBreakRE(previous) [string range $str 0 $start-1] \
/macosx-10.10.1/file_cmds-242/du/
H A Ddu.c372 struct links_entry *previous; member in struct:links_entry
431 new_buckets[hash]->previous =
434 le->previous = NULL;
453 if (le->previous != NULL)
454 le->previous->next = le->next;
456 le->next->previous = le->previous;
493 le->previous = NULL;
495 buckets[hash]->previous = le;
505 struct links_entry *previous; member in struct:links_entry
[all...]
/macosx-10.10.1/vim-55/runtime/compiler/
H A Dcheckstyle.vim19 " WebTable.java:201:1: '{' should be on the previous line.
/macosx-10.10.1/ruby-106/ruby/lib/rss/
H A Dparser.rb315 previous = @last_xml_element
317 unless previous
328 previous << next_element if previous
331 if previous
332 @last_xml_element = previous
511 previous = @last_element
513 previous.set_next_element(tag_name, next_element)
515 @last_element.parent = previous if klass.need_parent?
537 @last_element = previous
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DSamplingTool.cpp95 uintptr_t previous; local
97 previous = s_currentOrReserved;
98 if (previous & 1) {
104 if (WTF::weakCompareAndSwapUIntPtr(&s_currentOrReserved, previous, previous | 1))
114 uintptr_t previous; local
116 previous = s_currentOrReserved;
117 } while (!WTF::weakCompareAndSwapUIntPtr(&s_currentOrReserved, previous, previous & ~1));

Completed in 278 milliseconds

1234567891011>>