Home
last modified time | relevance | path

Searched refs:in_line (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/build/
H A Dwrite_cmake_config.py68 for in_line in in_lines:
73 in_line = var_re.sub(repl, in_line)
74 if in_line.startswith('#cmakedefine01 '):
75 _, var = in_line.split()
81 in_line = '#define %s %d\n' % (var, 1 if values[var] else 0)
83 elif in_line.startswith('#cmakedefine '):
84 _, var = in_line.split(None, 1)
87 in_line = '#define %s %s' % (var, val) # val ends in \n.
90 in_line = '#define %s\n' % var
92 in_line = '/* #undef %s */\n' % var
[all …]
/netbsd-src/external/bsd/mdocml/dist/
H A Dmdoc_macro.c43 static void in_line(MACRO_PROT_ARGS);
77 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ad */
78 { in_line, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* An */
81 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ar */
82 { in_line, MDOC_CALLABLE | MDOC_PARSED | MDOC_JOIN }, /* Cd */
83 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Cm */
84 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Dv */
85 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Er */
86 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Ev */
88 { in_line, MDOC_CALLABLE | MDOC_PARSED }, /* Fa */
[all …]
H A DTODO304 of in_line() - put trailing punctuation out of scope.
/netbsd-src/external/bsd/kyua-cli/dist/utils/text/
H A Dtemplates.cpp453 evaluate(const std::string& in_line) in evaluate() argument
459 const std::string::size_type open_pos = in_line.find( in evaluate()
462 out_line += in_line.substr(last_pos); in evaluate()
465 const std::string::size_type close_pos = in_line.find( in evaluate()
468 out_line += in_line.substr(last_pos); in evaluate()
471 out_line += in_line.substr(last_pos, open_pos - last_pos); in evaluate()
472 out_line += _templates.evaluate(in_line.substr( in evaluate()
/netbsd-src/external/historical/nawk/dist/testdir/
H A Dchem.awk444 function in_line( i, n, s, s1, os) { function
/netbsd-src/sys/fs/hfs/
H A Dlibhfs.c2198 hfslib_error(const char* in_format, const char* in_file, int in_line, ...) in hfslib_error() argument
2206 va_start(ap, in_line); in hfslib_error()
2207 hfs_gcb.error(in_format, in_file, in_line, ap); in hfslib_error()