Home
last modified time | relevance | path

Searched refs:opening_tag (Results 1 – 25 of 66) sorted by relevance

123

/dports/www/bluefish/bluefish-2.2.12/src/plugin_zencoding/zencoding/
H A Dhtml_matcher.py106 if opening_tag and not closing_tag: # unary element
107 start_ix = opening_tag.start
108 end_ix = opening_tag.end
110 …if (opening_tag.start < ix and opening_tag.end > ix) or (closing_tag.start <= ix and closing_tag.e…
111 start_ix = opening_tag.start
114 start_ix = opening_tag.end
127 last_match['opening_tag'] = opening_tag;
181 opening_tag = None
226 opening_tag = tmp_tag
238 if not opening_tag:
[all …]
/dports/games/openclonk/openclonk-release-8.1-src/src/gui/
H A DC4StartupAboutDlg.cpp105 const char *opening_tag = with_color ? "<c f7f76f>" : ""; in ConcatNames() local
114 result << p.name << " " << opening_tag << "(" << p.nick << ")" << closing_tag; in ConcatNames()
124 const char *opening_tag = with_color ? "<c ff0000>" : ""; in WriteLines() local
128 text << opening_tag << "Contributors for OpenClonk 8.0:" << closing_tag << " "; in WriteLines()
132 text << opening_tag << "Previous contributors:" << closing_tag << " "; in WriteLines()
136 text << opening_tag << "Also thanks to our Linux package maintainers" << closing_tag << " "; in WriteLines()
/dports/mail/rspamd-devel/rspamd-93430bb/src/libserver/html/
H A Dhtml.cxx85 auto *opening_tag = tag->parent; in INIT_LOG_MODULE() local
154 if (opening_tag) { in INIT_LOG_MODULE()
156 if (opening_tag->id == tag->id) { in INIT_LOG_MODULE()
157 opening_tag->flags |= FL_CLOSED; in INIT_LOG_MODULE()
159 calculate_content_length(opening_tag); in INIT_LOG_MODULE()
161 return opening_tag->parent; in INIT_LOG_MODULE()
1934 auto *opening_tag = cur_tag->parent; in html_process_input() local
1936 if (opening_tag && opening_tag->id == Tag_STYLE && in html_process_input()
1937 (int)opening_tag->content_offset < opening_tag->closing.start) { in html_process_input()
1939 {start + opening_tag->content_offset, in html_process_input()
[all …]
/dports/mail/rspamd/rspamd-3.1/src/libserver/html/
H A Dhtml.cxx85 auto *opening_tag = tag->parent; in INIT_LOG_MODULE() local
154 if (opening_tag) { in INIT_LOG_MODULE()
156 if (opening_tag->id == tag->id) { in INIT_LOG_MODULE()
157 opening_tag->flags |= FL_CLOSED; in INIT_LOG_MODULE()
159 calculate_content_length(opening_tag); in INIT_LOG_MODULE()
161 return opening_tag->parent; in INIT_LOG_MODULE()
1932 auto *opening_tag = cur_tag->parent; in html_process_input() local
1934 if (opening_tag && opening_tag->id == Tag_STYLE && in html_process_input()
1935 (int)opening_tag->content_offset < opening_tag->closing.start) { in html_process_input()
1937 {start + opening_tag->content_offset, in html_process_input()
[all …]
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/library/catalogs/
H A Dcsv_xml.py158 opening_tag = re.search(r'<(\w+)( |>)', item)
159 if opening_tag:
160 closing_tag = re.search(r'<\/%s>$' % opening_tag.group(1), item)
/dports/www/moinmoin/moin-1.9.11/MoinMoin/formatter/
H A Ddom_xml.py167 def _check_p(self, opening_tag=None): argument
168 if (opening_tag is not None) and (opening_tag not in self.need_p):
175 self._open_tag('p', type=str(opening_tag))
/dports/www/xapian-omega/xapian-omega-1.4.18/
H A Dxmlparse.cc26 XmlParser::opening_tag(const string &) in opening_tag() function in XmlParser
H A Dxpsxmlparse.cc26 XpsXmlParser::opening_tag(const string &tag) in opening_tag() function in XpsXmlParser
H A Dxpsxmlparse.h29 bool opening_tag(const string &tag);
H A Dxmlparse.h29 bool opening_tag(const string &tag);
H A Dopendocparse.h37 bool opening_tag(const std::string &tag);
H A Dsvgparse.h33 bool opening_tag(const string &tag);
H A Datomparse.h35 bool opening_tag(const string& tag);
H A Dmetaxmlparse.h33 bool opening_tag(const string &tag);
H A Dopendocparse.cc28 OpenDocParser::opening_tag(const string &tag) in opening_tag() function in OpenDocParser
/dports/www/xapian-omega12/xapian-omega-1.2.25/
H A Dxmlparse.cc25 XmlParser::opening_tag(const string &) in opening_tag() function in XmlParser
H A Dxpsxmlparse.cc26 XpsXmlParser::opening_tag(const string &tag) in opening_tag() function in XpsXmlParser
H A Dxpsxmlparse.h29 bool opening_tag(const string &tag);
H A Dxmlparse.h28 bool opening_tag(const string &tag);
H A Dmetaxmlparse.h30 bool opening_tag(const string &tag);
H A Dopendocparse.h37 bool opening_tag(const std::string &tag);
H A Dsvgparse.h32 bool opening_tag(const string &tag);
H A Datomparse.h34 bool opening_tag(const string &tag);
/dports/textproc/p5-Text-Markdown/Text-Markdown-1.000031/lib/Text/
H A DMarkdown.pm388 …my ($tag, $remainder, $prefix, $opening_tag, $text_in_tag, $closing_tag) = $extract_block->($cur_l…
390 … if ($options->{interpret_markdown_on_attribute} and $opening_tag =~ s/$markdown_attr//i) {
394 my $wrap_in_p_tags = $opening_tag =~ /^<(div|iframe)/;
395 $tag = $prefix . $opening_tag . "\n"
401 $tag = $prefix . $opening_tag . $text_in_tag . $closing_tag;
/dports/devel/py-cclib/cclib-1.7.1/cclib/io/
H A Dwfxwriter.py63 opening_tag = ['<' + section_name + '>']
68 section = opening_tag + section_data + closing_tag
70 section = opening_tag + (' ' + section_data).split('\n') + closing_tag
72 section = opening_tag + [' ' + str(section_data)] + closing_tag

123