Home
last modified time | relevance | path

Searched refs:prev_depth (Results 1 – 25 of 133) sorted by relevance

123456

/dports/graphics/gscan2pdf/gscan2pdf-2.12.4/lib/Gscan2pdf/
H A DBboxtree.pm294 my ( $prev_depth, $h );
297 if ( defined $prev_depth ) {
300 $prev_depth = $bbox->{depth};
323 if ( defined $prev_depth ) {
552 my ( $prev_depth, @tags );
558 $prev_depth--;
559 while ( $prev_depth-- >= 0 ) {
567 my ( $bbox, $prev_depth, $tags ) = @_;
569 if ( defined ${$prev_depth} ) {
572 ${$prev_depth}--;
[all …]
/dports/devel/p5-Tree-Parser/Tree-Parser-0.15/lib/Tree/
H A DParser.pm275 my $prev_depth;
279 unless (defined($prev_depth)) {
281 $prev_depth = $tree->getDepth();
285 if ($prev_depth == $current_depth) {
288 elsif ($prev_depth < $current_depth) {
291 elsif ($prev_depth > $current_depth) {
292 my $delta = $prev_depth - $current_depth;
295 $prev_depth = $current_depth;
304 my $closing_parens = $prev_depth;
306 undef $prev_depth;
/dports/www/py-django-treebeard/django-treebeard-4.4/treebeard/
H A Dmodels.py572 start_depth, prev_depth = (None, None)
577 open = (depth and (prev_depth is None or depth > prev_depth))
578 if prev_depth is not None and depth < prev_depth:
579 info['close'] = list(range(0, prev_depth - depth))
582 prev_depth = depth
584 info['close'] = list(range(0, prev_depth - start_depth + 1))
604 start_depth, prev_depth = (None, None)
/dports/www/py-dj32-django-treebeard/django-treebeard-4.4/treebeard/
H A Dmodels.py572 start_depth, prev_depth = (None, None)
577 open = (depth and (prev_depth is None or depth > prev_depth))
578 if prev_depth is not None and depth < prev_depth:
579 info['close'] = list(range(0, prev_depth - depth))
582 prev_depth = depth
584 info['close'] = list(range(0, prev_depth - start_depth + 1))
604 start_depth, prev_depth = (None, None)
/dports/devel/gitui/gitui-0.10.1/cargo-crates/inferno-0.10.0/src/collapse/
H A Dvtune.rs146 let prev_depth = self.stack.len(); in on_line() localVariable
149 if depth <= prev_depth { in on_line()
153 for _ in 0..=prev_depth - depth { in on_line()
156 } else if depth > prev_depth + 1 { in on_line()
H A Dsample.rs208 let prev_depth = self.stack.len(); in on_line() localVariable
211 if depth <= prev_depth { in on_line()
217 for _ in 0..=prev_depth - depth { in on_line()
220 } else if depth > prev_depth + 1 { in on_line()
/dports/benchmarks/inferno/inferno-0.10.9/src/collapse/
H A Dvtune.rs133 let prev_depth = self.stack.len(); in on_line() localVariable
136 if depth <= prev_depth { in on_line()
140 for _ in 0..=prev_depth - depth { in on_line()
143 } else if depth > prev_depth + 1 { in on_line()
H A Dsample.rs194 let prev_depth = self.stack.len(); in on_line() localVariable
197 if depth <= prev_depth { in on_line()
203 for _ in 0..=prev_depth - depth { in on_line()
206 } else if depth > prev_depth + 1 { in on_line()
/dports/textproc/xmlstarlet/xmlstarlet-1.6.1/src/
H A Dxml_elem.c82 int ret, prev_depth = 0; in parse_xml_file() local
105 while (curXPath && depth <= prev_depth) in parse_xml_file()
109 prev_depth--; in parse_xml_file()
111 prev_depth = depth; in parse_xml_file()
/dports/deskutils/gnote/gnote-41.1/src/
H A Dnotebuffer.cpp321 DepthNoteTag::Ptr prev_depth = find_depth_tag(iter); in add_new_line() local
327 if (prev_depth && soft_break) { in add_new_line()
348 else if (prev_depth) { in add_new_line()
389 insert_bullet(start, prev_depth->get_depth()); in add_new_line()
583 DepthNoteTag::Ptr prev_depth = find_depth_tag(prev); in backspace_key_handler() local
584 if (depth || prev_depth) { in backspace_key_handler()
1131 int prev_depth = -1; in serialize() local
1166 if (depth_tag->get_depth() == prev_depth) { in serialize()
1205 prev_depth = depth_tag->get_depth(); in serialize()
1332 for (int i = prev_depth; i > -1; i--) { in serialize()
[all …]
/dports/mail/dovecot/dovecot-2.3.17/src/lib-storage/index/
H A Dindex-search-mime.c37 unsigned int prev_depth, prev_index; in seach_arg_mime_parent_match() local
51 prev_depth = mpctx->depth; in seach_arg_mime_parent_match()
67 mpctx->depth = prev_depth; in seach_arg_mime_parent_match()
75 unsigned int prev_depth, prev_index, depth; in seach_arg_mime_child_match() local
92 prev_depth = mpctx->depth; in seach_arg_mime_child_match()
118 mpctx->depth = depth - prev_depth; in seach_arg_mime_child_match()
153 mpctx->depth = prev_depth; in seach_arg_mime_child_match()
/dports/lang/v8/v8-9.6.180.12/tools/clang/scripts/
H A Danalyze_includes.py82 prev_depth = len(file_stack) - 1
87 if depth > prev_depth:
90 assert depth == prev_depth + 1
91 elif depth > prev_depth + 1:
96 for _ in range(prev_depth - depth + 1):
/dports/misc/findutils/findutils-4.8.0/find/
H A Dftsfind.c68 static int prev_depth = INT_MIN; /* fts_level can be < 0 */ variable
281 (int)ent->fts_level, prev_depth, in consider_visiting()
289 else if (ent->fts_level > prev_depth || ent->fts_level==0) in consider_visiting()
294 prev_depth = ent->fts_level; in consider_visiting()
/dports/devel/buildstream/BuildStream-1.2.8/buildstream/
H A D_pipeline.py466 prev_depth = self.depth_map.get(element)
467 if prev_depth is not None and prev_depth >= depth:
/dports/misc/mmdnn/MMdnn-0.3.1/mmdnn/conversion/examples/tensorflow/models/mobilenet/
H A Dconv_blocks.py229 prev_depth = input_tensor.get_shape().as_list()[3]
259 inner_size = expansion_size(num_inputs=prev_depth)
/dports/devel/p5-Carp-Datum/Carp-Datum-0.1.3/
H A DDatum.pm562 my $prev_depth = $DEPTH;
565 $DEPTH = $prev_depth - 1;
/dports/devel/godot-tools/godot-3.2.3-stable/editor/plugins/
H A Dcollision_polygon_editor_plugin.h79 float prev_depth; variable
H A Dcollision_polygon_editor_plugin.cpp58 if (_get_depth() != prev_depth) { in _notification()
60 prev_depth = _get_depth(); in _notification()
509 prev_depth = -1; in edit()
/dports/devel/godot/godot-3.2.3-stable/editor/plugins/
H A Dcollision_polygon_editor_plugin.h79 float prev_depth; variable
H A Dcollision_polygon_editor_plugin.cpp58 if (_get_depth() != prev_depth) { in _notification()
60 prev_depth = _get_depth(); in _notification()
509 prev_depth = -1; in edit()
/dports/devel/godot2/godot-2.1.6-stable/editor/plugins/
H A Dcollision_polygon_editor_plugin.h81 float prev_depth; variable
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/plugins/
H A Dcollision_polygon_editor_plugin.h81 float prev_depth; variable
/dports/www/firefox/firefox-99.0/third_party/rust/wast/src/resolve/
H A Dnames.rs878 prev_depth: Option<usize>, field
886 let prev_depth = if let Some(id) = self.cur_id { in push() localVariable
896 prev_depth, in push()
940 let (id, prev_depth) = match &self.prev { in drop()
941 Some(n) => (n.id, n.prev_depth), in drop()
945 match prev_depth { in drop()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/wast/src/resolve/
H A Dnames.rs874 prev_depth: Option<usize>, field
882 let prev_depth = if let Some(id) = self.cur_id { in push() localVariable
892 prev_depth, in push()
936 let (id, prev_depth) = match &self.prev { in drop()
937 Some(n) => (n.id, n.prev_depth), in drop()
941 match prev_depth { in drop()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/wast/src/resolve/
H A Dnames.rs874 prev_depth: Option<usize>, field
882 let prev_depth = if let Some(id) = self.cur_id { in push() localVariable
892 prev_depth, in push()
936 let (id, prev_depth) = match &self.prev { in drop()
937 Some(n) => (n.id, n.prev_depth), in drop()
941 match prev_depth { in drop()

123456