Searched +refs:what +refs:line (Results 1 - 25 of 274) sorted by relevance

1234567891011

/macosx-10.9.5/xnu-2422.115.4/osfmk/ipc/
H A Dmig_log.c95 mig_which_event_t what,
104 unsigned int line)
106 printf("%d|%d|%d", who, what, msgh_id);
109 size, kpd, retcode, ports, oolports, ool, file, line);
116 mig_which_error_t what,
119 unsigned int line)
121 if (what == MACH_MSG_ERROR_UNKNOWN_ID)
122 printf("%d|%d|%d -- %s %d\n", who, what, *(int *)par, file, line);
124 printf("%d|%d|%s -- %s %d\n", who, what, (cha
93 MigEventTracer( mig_who_t who, mig_which_event_t what, mach_msg_id_t msgh_id, unsigned int size, unsigned int kpd, unsigned int retcode, unsigned int ports, unsigned int oolports, unsigned int ool, char *file, unsigned int line) argument
114 MigEventErrors( mig_who_t who, mig_which_error_t what, void *par, char *file, unsigned int line) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dmig_log.h60 mig_which_event_t what,
69 unsigned int line
79 mig_which_error_t what,
82 unsigned int line
/macosx-10.9.5/shell_cmds-175/who/
H A Dutmpentry.c94 if ((max = strlen(e->line)) > maxline)
103 int what = 3; local
119 what = 1;
121 what = fname[len - 1] == 'x' ? 1 : 2;
123 if (what == 1) {
142 if (what & 1) {
146 what &= ~1;
151 what &= ~1;
156 if (what & 2) {
160 what
205 int what = setup(fname); local
[all...]
/macosx-10.9.5/tcl-102/tk/tk/tests/
H A DcanvPsGrph.tcl16 message .t.m -text {This screen exercises the Postscript-generation abilities of Tk canvas widgets. Select what you want to display with the buttons below, then click on "Print" to print it to your default printer. You can click on items in the canvas to delete them.} -width 4i
21 set what rect
22 radiobutton .t.top.rect -text Rectangles -variable what -value rect \
24 radiobutton .t.top.oval -text Ovals -variable what -value oval \
26 radiobutton .t.top.poly -text Polygons -variable what -value poly \
28 radiobutton .t.top.line -text Lines -variable what -value line \
30 pack .t.top.rect .t.top.oval .t.top.poly .t.top.line \
45 global what
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/tests/
H A DcanvPsGrph.tcl16 message .t.m -text {This screen exercises the Postscript-generation abilities of Tk canvas widgets. Select what you want to display with the buttons below, then click on "Print" to print it to your default printer. You can click on items in the canvas to delete them.} -width 4i
21 set what rect
22 radiobutton .t.top.rect -text Rectangles -variable what -value rect \
24 radiobutton .t.top.oval -text Ovals -variable what -value oval \
26 radiobutton .t.top.poly -text Polygons -variable what -value poly \
28 radiobutton .t.top.line -text Lines -variable what -value line \
30 pack .t.top.rect .t.top.oval .t.top.poly .t.top.line \
45 global what
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/sasl/
H A Dsaslclient.tcl2 # the next line restarts with tclsh \
81 proc Callback {chan eof line} {
87 puts "> $line"
88 switch -glob -- $line {
121 set line [string trim [string range $line 9 end]]
122 set mechs [concat $mechs [split $line]]
134 set challenge [string range $line 4 end]
167 proc Write {chan what} {
168 puts "< $what"
[all...]
/macosx-10.9.5/vim-53/runtime/indent/
H A Dconfig.vim5 " TODO: how about nested [()]'s in one line
6 " what's wrong with '\\\@!'?
24 " get the offset (indent) of the end of the match of 'regexp' in 'line'
25 function s:GetOffsetOf(line, regexp)
26 let end = matchend(a:line, a:regexp)
30 if a:line[i] != "\t"
41 " Find a non-blank line above the current line.
51 let line = getline(lnum)
53 " if previous line ha
[all...]
H A Dada.vim22 " Verify handling of multi-line exprs. and recovery upon the final ';'.
52 " prev_indent = the previous line's indent
53 " prev_lnum = previous line (to start looking on)
55 " stop_at = if non-null, if a matching line is found, gives up!
56 " No recursive previous block analysis: simply look for a valid line
59 " nowhere near the correct indent (e.g., start of line)!
60 " Seems to work OK as it 'starts' with the indent of the /previous/ line.
63 let line = substitute( getline(lnum), g:ada#Comment, '', '' )
65 if a:stop_at != '' && line =~ '^\s*' . a:stop_at && indent(lnum) < a:prev_indent
67 elseif line
[all...]
H A Dmake.vim25 " TODO: This needs to be a lot more restrictive in what it matches.
30 function s:remove_continuation(line)
31 return substitute(a:line, s:continuation_rx, "", "")
74 let line = getline(lnum)
75 while line =~ s:continuation_rx
76 let folded_line = s:remove_continuation(line) . ' ' . folded_line
78 let line = getline(lnum)
107 let line = getline(v:lnum)
108 if line =~ s:just_inserted_rule_rx
110 elseif line
[all...]
H A Dlua.vim16 " on the current line ('else' is default and includes 'elseif').
27 " Find a non-blank line above the current line.
48 " Add 'shiftwidth' if what we found previously is not in a comment and
49 " an "end" or "until" is not present on the same line.
H A Dsqlanywhere.vim37 " you would type at the BEGINNING of a line
53 " These are typically words that start a line.
65 " If a line has an extra "(" increase the indent
66 " If a line has an extra ")" decrease the indent
67 function s:CountUnbalancedParan( line, paran_to_check )
68 let l = a:line
70 let l = a:line
91 let line = getline(lnum)
102 " num_right_paran matches for this line
109 \ 's:IsColComment(line("
[all...]
H A Ddtd.vim50 function s:indent_to_innermost_parentheses(line, end)
55 let [token, end] = s:lex(a:line, end, '^\%([(),|]\|[A-Za-z0-9_-]\+\)[?*+]\=')
65 return [parentheses[-1] - strridx(a:line, "\n", parentheses[-1]), end]
75 " From here, depending on what follows immediately after, parse to
76 " where we���re at to determine what to do.
80 let lnum = line('.')
83 let line = join(getline(lnum, v:lnum - 1), "\n")
85 let [declaration, end] = s:lex1(line, col)
93 let [declaration, end] = s:lex(line, end)
101 let [name, end] = s:lex(line, en
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/coroutine/
H A Dcoro_auto.tcl117 proc ::coroutine::auto::wrap_update {{what {}}} {
119 tailcall [namespace current]::core_update {*}$what
126 if {$what eq "idletasks"} {
128 } elseif {$what ne {}} {
130 tailcall [namespace current]::core_update $what
159 upvar 1 $varname line
165 # Loop until we have a complete line. Yield to the event loop
173 [namespace current]::core_gets $chan line
189 return $line
H A Dcoroutine.tcl141 proc ::coroutine::update {{what {}}} {
142 if {$what eq "idletasks"} {
144 } elseif {$what ne {}} {
146 tailcall ::tcl::update $what
167 upvar 1 $varname line
173 # Loop until we have a complete line. Yield to the event loop
181 ::chan gets $chan line
197 return $line
/macosx-10.9.5/bind9-45.100/bind9/lib/tests/include/tests/
H A Dt_api.h74 t_assert(const char *component, int anum, int class, const char *what, ...)
96 t_bustline(char *line, char **toks);
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dutil.c27 * #define DEBUG_CFG_LINES to trace every line read from the config files
642 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *atrans, char **line, char stop) argument
644 return ap_getword(atrans, (const char **) line, stop);
647 AP_DECLARE(char *) ap_getword(apr_pool_t *atrans, const char **line, char stop) argument
649 const char *pos = *line;
657 len = pos - *line;
659 memcpy(res, *line, len);
667 *line = pos;
672 AP_DECLARE(char *) ap_getword_white_nc(apr_pool_t *atrans, char **line) argument
674 return ap_getword_white(atrans, (const char **) line);
677 ap_getword_white(apr_pool_t *atrans, const char **line) argument
701 ap_getword_nulls_nc(apr_pool_t *atrans, char **line, char stop) argument
707 ap_getword_nulls(apr_pool_t *atrans, const char **line, char stop) argument
755 ap_getword_conf_nc(apr_pool_t *p, char **line) argument
760 ap_getword_conf(apr_pool_t *p, const char **line) argument
1331 ap_find_list_item(apr_pool_t *p, const char *line, const char *tok) argument
1476 ap_find_token(apr_pool_t *p, const char *line, const char *tok) argument
1511 ap_find_last_token(apr_pool_t *p, const char *line, const char *tok) argument
1563 x2c(const char *what) argument
1713 c2x(unsigned what, unsigned char prefix, unsigned char *where) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/library/
H A Dhelp.tcl38 proc ::tclx::help {{what {}}} {
43 if {($what == "help") || ($what == "?")} {
48 set pathList [tclx::help::ConvertPath $what]
54 tclx::help::ListSubject $what $pathList subjects pages
102 set path [lindex $matchInfo(line) 0]
103 set desc [lrange $matchInfo(line) 1 end]
165 # Take care of the case where we started with something line "/" or "/."
285 # Display a line of output, pausing waiting for input before displaying if
291 proc ::tclx::help::Display line {
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/docstrip/
H A Ddocstrip.test26 tcltest::test docstrip-1.1 {code/comment line distinction} -body {
215 "%% Tricky comment; guess what comes next\\"
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dcookie.c36 The 'cookie_line' parameter is a full "Set-cookie:" line as
40 line superceeds.
185 * Add a single cookie line to the cookie keeping object.
196 bool httpheader, /* TRUE if HTTP header-style line */
197 char *lineptr, /* first character of the line */
221 /* This line was read off a HTTP-header */
224 char *what; local
226 what = malloc(MAX_COOKIE_LINE);
227 if(!what) {
239 /* we have a <what>
761 char *line = malloc(MAX_COOKIE_LINE); local
1133 char *line; local
[all...]
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dprotos.h92 void ProcessHoldings(char line[]);
93 void addHolding(int what, int who);
94 void removeHolding(int what, int who);
95 void DropaddHolding(int what, int who);
96 void DropremoveHolding(int what, int who);
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-report/
H A Datf-report.cpp180 write_info(const std::string& what, const std::string& val) argument
182 if (what == "tests.root") {
385 write_info(const std::string& what, const std::string& val) argument
387 (*m_os) << "<info class=\"" << what << "\">" << val << "</info>\n";
411 write_tc_stdout_line(const std::string& line) argument
413 (*m_os) << "<so>" << elemval(line) << "</so>\n";
417 write_tc_stderr_line(const std::string& line) argument
419 (*m_os) << "<se>" << elemval(line) << "</se>\n";
477 got_info(const std::string& what, const std::string& val) argument
481 (*iter)->write_info(what, va
517 got_tc_stdout_line(const std::string& line) argument
525 got_tc_stderr_line(const std::string& line) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/doctools/
H A Dchecker.tcl116 foreach {off line col} [dt_where] break
118 set msg "In macro at line $line, column $col of file [dt_file]:\n$msg"
127 foreach {off line col} [dt_where] break
129 set msg "In macro at line $line, column $col of file [dt_file]:\n$msg"
172 proc LMap {what} {
174 if {![info exists lmap($what)]} {
175 return $what
177 if {[dt_deprecated] && [info exists ldmap($what)]} {
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dreadline.c73 /* to see what these variables mean */
139 * Shell uses this to help determine what kind of completing to do.
145 * the line. Default is ' ' (a space).
189 rl_he.line = ev.str;
296 * read one line from input stream and return it, chomping
313 /* update prompt accordingly to what has been passed */
338 /* get one line from input stream */
376 * substitute ``what'' with ``with'', returning resulting string; if
377 * globally == 1, substitutes all occurrences of what, otherwise only the
381 _rl_compat_sub(const char *str, const char *what, cons argument
693 char *what, *with, delim; local
1142 add_history(const char *line) argument
1645 rl_parse_and_bind(const char *line) argument
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dreadline.c71 /* to see what these variables mean */
144 * Shell uses this to help determine what kind of completing to do.
150 * the line. Default is ' ' (a space).
196 rl_he.line = ev.str;
374 * read one line from input stream and return it, chomping
394 /* update prompt accordingly to what has been passed */
413 /* get one line from input stream */
451 * substitute ``what'' with ``with'', returning resulting string; if
452 * globally == 1, substitutes all occurrences of what, otherwise only the
456 _rl_compat_sub(const char *str, const char *what, cons argument
770 char *what, *with, delim; local
1371 add_history(const char *line) argument
1418 replace_history_entry(int num, const char *line, histdata_t data) argument
1998 rl_parse_and_bind(const char *line) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h80 const char* file, int line, DeathTest** test);
144 const char* file, int line, DeathTest** test) = 0;
151 const char* file, int line, DeathTest** test);
170 gtest_exception.what()); \
236 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag

Completed in 373 milliseconds

1234567891011