Home
last modified time | relevance | path

Searched refs:source_line (Results 1 – 25 of 939) sorted by relevance

12345678910>>...38

/dports/devel/p5-VCP-autrijus/VCP-autrijus-snapshot-0.9-20050110/lib/VCP/
H A DPatch.pm164 my $source_line = <SOURCE>;
166 unless defined $source_line;
167 print RESULT $source_line;
172 my $source_line = <SOURCE>;
174 unless defined $source_line;
175 $source_line =~ s/[\r\n]+\z//;
177 unless ( $source_line eq $patch_line ) {
184 " source line: \"$source_line\"\n",
190 my $source_line = <SOURCE>;
192 unless defined $source_line;
[all …]
/dports/print/texlive-base/texlive-20150521-source/utils/asymptote/
H A Druntime.pl145 my $source_line = 1;
155 print "#line $source_line \"$prefix.in\"\n";
158 $source_line += ($header =~ tr/\n//);;
159 my $source_type_line = $source_line;
165 $source_line += ($types =~ tr/\n//);;
172 print "#line $source_line \"$prefix.in\"\n";
175 $source_line += ($header =~ tr/\n//);;
249 $source_line += $ncomments;
253 $source_line += $nprototype;
264 $source_line -= $ncomments+$nprototype;
[all …]
/dports/math/asymptote/asymptote-2.67/
H A Druntime.pl145 my $source_line = 1;
155 print "#line $source_line \"$prefix.in\"\n";
158 $source_line += ($header =~ tr/\n//);;
159 my $source_type_line = $source_line;
165 $source_line += ($types =~ tr/\n//);;
172 print "#line $source_line \"$prefix.in\"\n";
175 $source_line += ($header =~ tr/\n//);;
249 $source_line += $ncomments;
253 $source_line += $nprototype;
264 $source_line -= $ncomments+$nprototype;
[all …]
/dports/lang/seed7/seed7/src/
H A Dfatal.c62 static void no_memory (const_cstriType source_file, int source_line) in no_memory() argument
65 logFunction(printf("no_memory(\"%s\", %d)\n", source_file, source_line);); in no_memory()
69 source_file, source_line); in no_memory()
85 source_file, source_line);); in no_memory()
90 source_file, source_line);); in no_memory()
97 void fatal_memory_error (const_cstriType source_file, int source_line) in fatal_memory_error() argument
101 source_file, source_line);); in fatal_memory_error()
104 no_memory(source_file, source_line); in fatal_memory_error()
/dports/math/polymake/polymake-4.5/perllib/Polymake/Test/
H A DExamples.pm72 ($self->source_file, $self->source_line)= $self->topic->defined_at =~ m{^(.*), line (\d+)};
90 my $source_line=$example->source_line;
96 …id contains a superfluous annotation [application $hint_app] at $source_file, line $source_line\n";
117 …ll_path." example #$id requires to an unknown extension $URI at $source_file, line $source_line\n";
126 …>full_path." example #$id contains an unrecognized hint [$_] at $source_file, line $source_line\n";
145 $source_line = $example->source_line - ($snippet_cnt==1);
146 ++$source_line while $text_before =~ /\n/g;
150 #line $source_line "$source_file"
153 #line $source_line
167 …c ".$self->topic->full_path." example #$id without any input at $source_file, line $source_line\n";
[all …]
/dports/mail/dovecot-pigeonhole/dovecot-2.3-pigeonhole-0.5.17/src/lib-sieve/
H A Dsieve-ast.h99 unsigned int source_line; member
139 unsigned int source_line; member
213 unsigned int source_line);
216 unsigned int source_line);
240 unsigned int source_line);
243 const string_t *str, unsigned int source_line);
246 unsigned int source_line);
250 unsigned int source_line);
255 unsigned int source_line);
273 unsigned int source_line);
[all …]
H A Dsieve-ast.c419 node->source_line = source_line; in sieve_ast_node_create()
498 arg->source_line = source_line; in sieve_ast_argument_create()
514 unsigned int source_line) in sieve_ast_argument_string_create_raw() argument
540 node->ast, newstr, source_line); in sieve_ast_argument_string_create()
550 unsigned int source_line) in sieve_ast_argument_cstring_create() argument
563 node->ast, newstr, source_line); in sieve_ast_argument_cstring_create()
596 unsigned int source_line) in sieve_ast_argument_stringlist_create() argument
656 unsigned int source_line) in _sieve_ast_stringlist_add_str() argument
718 unsigned int source_line) in sieve_ast_argument_number_create() argument
773 unsigned int source_line) in sieve_ast_test_create() argument
[all …]
H A Dsieve-commands.h70 ((arg_node) == NULL ? 0 : (arg_node)->source_line), \
74 ((arg_node) == NULL ? 0 : (arg_node)->source_line), \
79 ((arg_node) == NULL ? 0 : (arg_node)->source_line), \
83 ((arg_node) == NULL ? 0 : (arg_node)->source_line), \
214 ((context) == NULL ? 0 : (context)->ast_node->source_line), \
218 ((context) == NULL ? 0 : (context)->ast_node->source_line), \
223 ((context) == NULL ? 0 : (context)->ast_node->source_line), \
227 ((context) == NULL ? 0 : (context)->ast_node->source_line), \
236 (context)->ast_node->source_line
/dports/textproc/p5-HTML-HTML5-Parser/HTML-HTML5-Parser-0.992/t/
H A D05origins.t20 can_ok 'HTML::HTML5::Parser' => 'source_line'
21 or BAIL_OUT('No "source_line" method!!');
23 my @root = HTML::HTML5::Parser->source_line($dom->documentElement);
28 my @head = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('head')->get_node(1));
38 my @para = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('p')->get_node(1));
43 my $para = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('p')->get_node(1));
46 my @b = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('b')->get_node(1));
51 my @i = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('i')->get_node(1));
56 my @a = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('a')->get_node(1));
61 my @href = HTML::HTML5::Parser->source_line($dom->getElementsByTagName('a')->get_node(1)->getAttrib…
[all …]
/dports/devel/py-PeachPy/PeachPy-01d1515/peachpy/
H A Dparse.py16 source_line = source_lines[0]
17 if source_line:
21 match = re.match(assignment_regexp, source_line.strip())
37 source_line = source_lines[0]
38 if source_line:
42 match = re.match(with_regexp, source_line.strip())
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/sourcemap-5.0.0/src/
H A Dsourceview.rs19 source_line: Option<(&'view str, usize, usize, usize)>, field
47 last_byte_offset)) = self.source_line; in next()
54 (source_line, !0, !0) in next()
66 for c in source_line.chars() { in next()
78 for c in source_line in next()
94 self.source_line = Some(( in next()
95 source_line, in next()
102 if byte_offset >= source_line.len() { in next()
103 self.source_line = None; in next()
108 source_line in next()
[all …]
/dports/textproc/py-tinycss2/tinycss2-1.1.1/tinycss2/
H A Dparser.py56 second.source_line, second.source_column, 'extra-input',
102 return ParseError(name.source_line, name.source_column, 'invalid',
108 return ParseError(name.source_line, name.source_column, 'invalid',
111 return ParseError(colon.source_line, colon.source_column, 'invalid',
131 return Declaration(name.source_line, name.source_column, name.value,
224 next.source_line, next.source_column, 'extra-input',
347 prelude[-1].source_line, prelude[-1].source_column, 'invalid',
349 return QualifiedRule(first_token.source_line, first_token.source_column,
376 return AtRule(at_keyword.source_line, at_keyword.source_column,
/dports/devel/bashdb/bashdb-5.0-1.1.2/command/
H A Deval.sh85 typeset source_line
89 source_line="$extracted"
92 source_line="$_Dbg_bash_command"
95 builtin echo "$source_line" >> "$_Dbg_evalfile"
96 _Dbg_msg "eval: ${source_line}"
/dports/net/kea/kea-2.0.1/src/lib/dns/
H A Dmaster_loader_callbacks.h62 size_t source_line,
94 void error(const std::string& source_name, size_t source_line, in error() argument
97 error_(source_name, source_line, reason); in error()
111 void warning(const std::string& source_name, size_t source_line, in warning() argument
114 warning_(source_name, source_line, reason); in warning()
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/tree/
H A DSyntaxErrors.py105 source_line = readSource()
113 source_line,
120 source_line = readSource()
122 source_line = None
130 source_line,
/dports/games/easyrpg-player/Player-0.7.0/resources/shinonome/tools/
H A Daliasadd.in79 source_line[i++] = line;
89 for (i in source_line) {
90 ret = ismatch($0, source_line[n++]);
130 for (i in source_line) {
131 print source_line[n++];
/dports/sysutils/vector/vector-0.10.0/cargo-crates/wabt-sys-0.7.1/wabt/src/
H A Derror-formatter.cc54 LexerSourceLineFinder::SourceLine source_line; in FormatError() local
56 line_finder->GetSourceLine(loc, source_line_max_length, &source_line); in FormatError()
59 if (!source_line.line.empty()) { in FormatError()
61 result += source_line.line; in FormatError()
65 size_t num_spaces = (loc.first_column - 1) - source_line.column_offset; in FormatError()
67 num_carets = std::min(num_carets, source_line.line.size() - num_spaces); in FormatError()
/dports/www/firefox/firefox-99.0/third_party/wasm2c/src/
H A Derror-formatter.cc54 LexerSourceLineFinder::SourceLine source_line; in FormatError() local
56 line_finder->GetSourceLine(loc, source_line_max_length, &source_line); in FormatError()
59 if (!source_line.line.empty()) { in FormatError()
61 result += source_line.line; in FormatError()
65 size_t num_spaces = (loc.first_column - 1) - source_line.column_offset; in FormatError()
67 num_carets = std::min(num_carets, source_line.line.size() - num_spaces); in FormatError()
/dports/devel/p5-Regexp-Grammars/Regexp-Grammars-1.057/lib/Regexp/
H A DGrammars.pm1479 my ($source_file, $source_line,
1740 $source_line, $source_file,
1752 $source_line, $source_file,
2234 $source_line -= $grammar_spec =~ tr/\n//;
2237 my $dubious_line = $source_line;
2263 $dubious_line = $source_line;
2430 $source_line, $source_file,
2478 $source_line += $1 =~ tr/\n//;
2506 $source_file, $source_line,
2533 $source_line += $main_regex =~ tr/\n//;
[all …]
/dports/x11-fm/fsv2/fsv2-1.1.0/debugloc/
H A Ddebug.h53 void *debug_malloc( size_t size, const char *source_file, int source_line );
54 void *debug_realloc( void *block, size_t size, const char *source_file, int source_line );
55 void *debug_memdup( void *mem, size_t size, const char *source_file, int source_line );
56 char *debug_strdup( const char *string, const char *source_file, int source_line );
57 … *debug_strredup( char *old_string, const char *string, const char *source_file, int source_line );
58 void debug_free( void *block, const char *source_file, int source_line );
/dports/games/openlierox/OpenLieroX/src/breakpad/external/src/processor/
H A Dbasic_source_line_resolver_unittest.cc83 ASSERT_EQ(frame.source_line, 0); in VerifyEmpty()
91 frame->source_line = 0; in ClearSourceLineInfo()
114 ASSERT_EQ(frame.source_line, 0); in RunTests()
124 ASSERT_EQ(frame.source_line, 44); in RunTests()
142 ASSERT_EQ(frame.source_line, 0); in RunTests()
151 ASSERT_EQ(frame.source_line, 0); in RunTests()
170 ASSERT_EQ(frame.source_line, 21); in RunTests()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/scheduler/agent/
H A Devent.c158 …t(void(*func)(scheduler_t*, void*), void* arg, char* name, char* source_name, uint16_t source_line) in event_init() argument
166 e->source_line = source_line; in event_init()
264 log_printf("EVENT: calling %s, source[%s.%d] \n", e->name, e->source_name, e->source_line); in event_loop_enter()
268 log_printf("EVENT: finished %s, source[%s.%d] \n", e->name, e->source_name, e->source_line); in event_loop_enter()
/dports/games/quakeforge/quakeforge-0.7.2/tools/qfcc/source/
H A Ddiagnostic.c58 GETSTR (srcline->source_file), srcline->source_line); in report_function()
79 int line = pr.source_line; in _warning()
108 int line = pr.source_line; in debug()
127 int line = pr.source_line; in bug()
155 int line = pr.source_line; in notice()
185 int line = pr.source_line; in _error()
/dports/lang/rust/rustc-1.58.1-src/src/librustdoc/passes/
H A Dmod.rs199 let source_line = src_lines.next().expect("could not find markdown in source"); in source_span_for_markdown_range() localVariable
200 match source_line.find(md_line) { in source_span_for_markdown_range()
212 start_bytes += source_line.len() - md_line.len(); in source_span_for_markdown_range()
214 end_bytes += source_line.len() - md_line.len(); in source_span_for_markdown_range()
222 start_bytes += source_line.len() + 1; in source_span_for_markdown_range()
224 end_bytes += source_line.len() + 1; in source_span_for_markdown_range()
/dports/print/py-weasyprint/WeasyPrint-51/weasyprint/css/validation/
H A D__init__.py76 declaration.source_line, declaration.source_column)
89 declaration.source_line, declaration.source_column, reason)
106 declaration.source_line, declaration.source_column,
115 declaration.source_line, declaration.source_column,

12345678910>>...38