OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:attrvalue
(Results
1 - 6
of
6
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sgmllib.py
281
attrname, rest,
attrvalue
= match.group(1, 2, 3)
283
attrvalue
= attrname
285
if (
attrvalue
[:1] == "'" ==
attrvalue
[-1:] or
286
attrvalue
[:1] == '"' ==
attrvalue
[-1:]):
288
attrvalue
=
attrvalue
[1:-1]
289
attrvalue
= self.entity_or_charref.sub(
290
self._convert_ref,
attrvalue
)
[
all
...]
xmllib.py
562
attrname,
attrvalue
= res.group('name', 'value')
566
if
attrvalue
is None:
568
attrvalue
= attrname
569
elif
attrvalue
[:1] == "'" ==
attrvalue
[-1:] or \
570
attrvalue
[:1] == '"' ==
attrvalue
[-1:]:
571
attrvalue
=
attrvalue
[1:-1]
578
namespace[ncname or ''] =
attrvalue
or Non
[
all
...]
HTMLParser.py
298
attrname, rest,
attrvalue
= m.group(1, 2, 3)
300
attrvalue
= None
301
elif
attrvalue
[:1] == '\'' ==
attrvalue
[-1:] or \
302
attrvalue
[:1] == '"' ==
attrvalue
[-1:]:
303
attrvalue
=
attrvalue
[1:-1]
304
if
attrvalue
:
305
attrvalue
= self.unescape(attrvalue
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sgmllib.py
281
attrname, rest,
attrvalue
= match.group(1, 2, 3)
283
attrvalue
= attrname
285
if (
attrvalue
[:1] == "'" ==
attrvalue
[-1:] or
286
attrvalue
[:1] == '"' ==
attrvalue
[-1:]):
288
attrvalue
=
attrvalue
[1:-1]
289
attrvalue
= self.entity_or_charref.sub(
290
self._convert_ref,
attrvalue
)
[
all
...]
xmllib.py
562
attrname,
attrvalue
= res.group('name', 'value')
566
if
attrvalue
is None:
568
attrvalue
= attrname
569
elif
attrvalue
[:1] == "'" ==
attrvalue
[-1:] or \
570
attrvalue
[:1] == '"' ==
attrvalue
[-1:]:
571
attrvalue
=
attrvalue
[1:-1]
578
namespace[ncname or ''] =
attrvalue
or Non
[
all
...]
HTMLParser.py
298
attrname, rest,
attrvalue
= m.group(1, 2, 3)
300
attrvalue
= None
301
elif
attrvalue
[:1] == '\'' ==
attrvalue
[-1:] or \
302
attrvalue
[:1] == '"' ==
attrvalue
[-1:]:
303
attrvalue
=
attrvalue
[1:-1]
304
if
attrvalue
:
305
attrvalue
= self.unescape(attrvalue
[
all
...]
Completed in 546 milliseconds