Searched refs:line (Results 226 - 250 of 3289) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit-7600.1.25/mac/icu/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/
H A Dpacket.pl81 while (defined(my $line = <$file>) ) {
82 chomp $line;
83 $line =~ s/#.*$//;
84 $input .= $line;
/macosx-10.10/bmalloc-7600.1.17/bmalloc/
H A DHeap.h99 inline void Heap::deallocateSmallLine(std::lock_guard<StaticMutex>& lock, SmallLine* line) argument
101 BASSERT(!line->refCount(lock));
102 SmallPage* page = SmallPage::get(line);
108 m_smallLines[page->smallSizeClass()].push(line);
115 SmallLine* line = smallLines.pop(); local
116 SmallPage* page = SmallPage::get(line);
117 if (!page->refCount(lock) || page->smallSizeClass() != smallSizeClass) // The line was promoted to the small pages list.
119 BASSERT(!line->refCount(lock));
121 return line;
127 inline void Heap::deallocateMediumLine(std::lock_guard<StaticMutex>& lock, MediumLine* line) argument
142 MediumLine* line = m_mediumLines.pop(); local
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dstatbuf.h44 char *line, int linelen);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DValgrind.h27 LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
29 LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
31 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line);
32 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dlib_chgat.c55 struct ldat *line = &(win->_line[win->_cury]); local
60 SetAttr(line->text[i], attr);
61 SetPair(line->text[i], color);
62 CHANGED_CELL(line, i);
H A Dlib_clrbot.c61 struct ldat *line = &(win->_line[y]); local
62 NCURSES_CH_T *ptr = &(line->text[startx]);
63 NCURSES_CH_T *end = &(line->text[win->_maxx]);
65 CHANGED_TO_EOL(line, startx, win->_maxx);
H A Dlib_delch.c54 struct ldat *line = &(win->_line[win->_cury]); local
55 NCURSES_CH_T *end = &(line->text[win->_maxx]);
56 NCURSES_CH_T *temp2 = &(line->text[win->_curx + 1]);
59 CHANGED_TO_EOL(line, win->_curx, win->_maxx);
/macosx-10.10/ruby-106/ruby/lib/rake/loaders/
H A Dmakefile.rb15 lines.each_line do |line|
16 process_line(line)
22 # Process one logical line of makefile data.
23 def process_line(line)
24 file_tasks, args = line.split(':', 2)
/macosx-10.10/ruby-106/ruby/sample/drb/
H A Ddrbssl_c.rb17 while line = gets
18 p h.hello(line.chomp)
/macosx-10.10/sudo-73/src/
H A Dlogwrap.c39 writeln_wrap(fp, line, len, maxlen)
41 char *line;
46 char *beg = line;
50 * Print out line with word wrap around maxlen characters.
52 beg = line;
/macosx-10.10/tcl-105/tcl/tcl/tools/
H A DuniParse.tcl112 foreach line [split $data \n] {
113 if {$line == ""} {
114 set line "FFFF;;Cn;0;ON;;;;;N;;;;;\n"
117 set items [split $line \;]
213 set line " "
216 append line [lindex $pMap $i]
218 append line ", "
220 if {[string length $line] > 70} {
221 puts $f $line
222 set line " "
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/tools/
H A DuniParse.tcl112 foreach line [split $data \n] {
113 if {$line == ""} {
114 set line "FFFF;;Cn;0;ON;;;;;N;;;;;\n"
117 set items [split $line \;]
213 set line " "
216 append line [lindex $pMap $i]
218 append line ", "
220 if {[string length $line] > 70} {
221 puts $f $line
222 set line " "
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dmkmemoio.py16 # buf = f.readline() # read until end of line ('\n') or EOF
19 # f.writelines(list) # for line in list: f.write(line)
89 line = self.readline()
90 while line:
91 lines.append(line)
92 line = self.readline()
100 for line in list: self.write(line)
123 for line i
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/textutil/
H A Dtrim.tcl25 regsub -line -all -- [MakeStr $trim left] $text {} text
30 regsub -line -all -- [MakeStr $trim right] $text {} text
35 regsub -line -all -- [MakeStr $trim left] $text {} text
36 regsub -line -all -- [MakeStr $trim right] $text {} text
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/library/
H A Dautoload.tcl56 "# Tcl autoload index file: each line identifies a Tcl"} {
57 while {[gets $f line] >= 0} {
58 if {([string index $line 0] == "#")
59 || ([llength $line] != 2)} {
62 set name [lindex $line 0]
64 "source [file join $dir [lindex $line 1]]"
/macosx-10.10/xnu-2782.1.97/libkern/kxld/tests/
H A Dloadtest.py37 line = pipe.readline() variable
38 while line:
39 kexts.append(line.strip())
40 line = pipe.readline() variable
/macosx-10.10/emacs-93/emacs/lisp/
H A Dreposition.el58 visible (if only part could otherwise be made so), to make the defun line
60 comments, including the first comment line, are visible), or to make the
61 first comment line visible (if point is in a comment)."
63 (let* (;; (here (save-excursion (beginning-of-line) (point)))
66 ;; this is actually the number of the last screen line
68 (line (repos-count-screen-lines (window-start) (point)))
94 (defun-line-onscreen-p
95 (and (<= defun-height line)
96 (<= (- line defun-height) ht))))
97 (cond ((or (= comment-height line)
[all...]
/macosx-10.10/groff-38/groff/src/preproc/pic/
H A Dpic.cpp11 #line 21 "pic.y"
53 #line 65 "pic.y"
72 #line 73 "y.tab.c"
3495 #line 1643 "pic.y"
3683 return "line";
3752 #line 3753 "y.tab.c"
3898 #line 278 "pic.y"
3905 #line 287 "pic.y"
3909 #line 292 "pic.y"
3913 #line 29
[all...]
/macosx-10.10/MITKerberosShim-66/mittestcc/
H A Dtest_ccapi_log.h11 void _log_error_v(const char *file, int line, const char *format, va_list ap);
12 void _log_error(const char *file, int line, const char *format, ...)
/macosx-10.10/WebCore-7600.1.25/css/
H A DmakeSelectorPseudoClassAndCompatibilityElementMap.py131 for line in input_file:
132 line = line.strip()
133 if not line:
136 if line.startswith('#if '):
137 condition = line[4:].strip()
142 if line.startswith('#endif'):
149 keyword_definition = line.split(',')
H A DmakeSelectorPseudoElementsMap.py130 for line in input_file:
131 line = line.strip()
132 if not line:
135 if line.startswith('#if '):
136 condition = line[4:].strip()
141 if line.startswith('#endif'):
148 keyword_definition = line.split(',')
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DCodeMirrorDragToAdjustNumberController.js93 if (this._hoveredTokenInfo && this._hoveredTokenInfo.line === position.line &&
100 line: position.line, property in class:_hoveredTokenInfo
104 line: position.line
108 line: position.line
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dudpstat.d50 LINES = 20; line = 0;
56 profile:::tick-1sec { line--; }
59 /line <= 0 /
64 line = LINES;
/macosx-10.10/dtrace-147/DTTk/Net/
H A Dudpstat.d50 LINES = 20; line = 0;
56 profile:::tick-1sec { line--; }
59 /line <= 0 /
64 line = LINES;

Completed in 376 milliseconds

1234567891011>>