OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_xml_attrib
(Results
1 - 4
of
4
) sorted by null
/ndk/build/awk/
extract-debuggable.awk
89
_xml_attrib
= $0;
90
sub(/=.*$/,"",
_xml_attrib
); # extract attribute name
92
_xml_attrib
= tolower(
_xml_attrib
);
93
if (
_xml_attrib
!~ /^[a-z][-+_0-9a-z:]*$/ ) # validate it
94
_xml_panic("Invalid attribute name: "
_xml_attrib
);
104
_xml_panic("Invalid attribute value syntax for "
_xml_attrib
": " $0);
106
XML_ATTR[
_xml_attrib
] = _xml_value; # store attribute name/value
extract-package-name.awk
90
_xml_attrib
= $0;
91
sub(/=.*$/,"",
_xml_attrib
); # extract attribute name
93
_xml_attrib
= tolower(
_xml_attrib
);
94
if (
_xml_attrib
!~ /^[a-z][-+_0-9a-z:]*$/ ) # validate it
95
_xml_panic("Invalid attribute name: "
_xml_attrib
);
105
_xml_panic("Invalid attribute value syntax for "
_xml_attrib
": " $0);
107
XML_ATTR[
_xml_attrib
] = _xml_value; # store attribute name/value
xml.awk
74
_xml_attrib
= $0;
75
sub(/=.*$/,"",
_xml_attrib
); # extract attribute name
77
_xml_attrib
= tolower(
_xml_attrib
);
78
if (
_xml_attrib
!~ /^[a-z][-+_0-9a-z:]*$/ ) # validate it
79
_xml_panic("Invalid attribute name: "
_xml_attrib
);
89
_xml_panic("Invalid attribute value syntax for "
_xml_attrib
": " $0);
91
XML_ATTR[
_xml_attrib
] = _xml_value; # store attribute name/value
272
#
_xml_attrib
= $0; # copy record.
273
# sub(/=.*$/,"",
_xml_attrib
); # get rid of '=' and anything after
[
all
...]
extract-launchable.awk
148
_xml_attrib
= $0;
149
sub(/=.*$/,"",
_xml_attrib
); # extract attribute name
151
_xml_attrib
= tolower(
_xml_attrib
);
152
if (
_xml_attrib
!~ /^[a-z][-+_0-9a-z:]*$/ ) # validate it
153
_xml_panic("Invalid attribute name: "
_xml_attrib
);
163
_xml_panic("Invalid attribute value syntax for "
_xml_attrib
": " $0);
165
XML_ATTR[
_xml_attrib
] = _xml_value; # store attribute name/value
Completed in 205 milliseconds