Home
last modified time | relevance | path

Searched refs:end_tag (Results 1 – 13 of 13) sorted by relevance

/external/ltp/tools/
Dgenhtml.pl64 my $end_tag = shift (@ARGV) || syntax();
90 if ($start_tag eq "" || $end_tag eq "" || $output_tag eq "" || $execution_tag eq "") {
115 if ($line =~ /$end_tag/) {
/external/ply/ply/ply/
Dygen.py16 end_tag = '#--! %s-end' % tag
23 if line.strip().endswith(end_tag):
/external/python/pycparser/pycparser/ply/
Dygen.py16 end_tag = '#--! %s-end' % tag
23 if line.strip().endswith(end_tag):
/external/tensorflow/tensorflow/python/tools/api/generator/
Doutput_init_files_test.py85 def _get_files_set(path, start_tag, end_tag): argument
102 end = contents.find(end_tag)
/external/python/cpython2/Doc/library/
Dsgmllib.rst117 This method is called to handle endtags for which an :meth:`end_tag` method has
120 support semantic interpretation of the end tag. If no :meth:`end_tag` method is
260 .. method:: SGMLParser.end_tag()
267 stack. Definition of an :meth:`end_tag` method is optional for these tags. For
268 tags processed by :meth:`do_tag` or by :meth:`unknown_tag`, no :meth:`end_tag`
Dhtmllib.rst52 and define methods called :meth:`start_tag`, :meth:`end_tag`, or :meth:`do_tag`.
55 encountered; :meth:`end_tag` is called when a closing tag of the form ``<tag>``
/external/protobuf/python/google/protobuf/internal/
Dencoder.py733 end_tag = TagBytes(field_number, wire_format.WIRETYPE_END_GROUP)
740 write(end_tag)
746 return write(end_tag)
Dmessage_test.py161 end_tag = encoder.TagBytes(1, 4)
164 msg.FromString(end_tag)
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource.h136 const uint32 end_tag,
Dprotostream_objectsource.cc189 const uint32 end_tag, in WriteMessage() argument
204 if (tag == end_tag && suppress_empty_object_) { in WriteMessage()
211 while (tag != end_tag) { in WriteMessage()
/external/fonttools/Lib/fontTools/feaLib/
Dparser.py215 end_tag = self.expect_tag_()
216 assert tag == end_tag, "bad splitting in Lexer.scan_anonymous_block()"
1015 end_tag = self.expect_tag_()
1016 if end_tag != name:
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.cc1801 uint32 end_tag = WireFormatLite::MakeTag( in GenerateParseLoop() local
1807 format_("($1$u <= tag && tag < $2$u)", start_tag, end_tag); in GenerateParseLoop()
Dcpp_message.cc3616 uint32 end_tag = WireFormatLite::MakeTag( in GenerateMergeFromCodedStream() local
3622 format("($1$u <= tag && tag < $2$u)", start_tag, end_tag); in GenerateMergeFromCodedStream()