OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_xml_p
(Results
1 - 5
of
5
) sorted by null
/ndk/build/awk/
extract-debuggable.awk
56
_xml_p
= index($0, "<"); # get start marker
57
if (
_xml_p
== 0) return 0; # end of file (or malformed input)
58
$0 = substr($0,
_xml_p
) # remove anything before '<'
131
_xml_p
= index(XML_RPATH, "/");
132
_xml_expected = substr(XML_RPATH, 1,
_xml_p
-1);
135
XML_RPATH = substr(XML_RPATH,
_xml_p
+1);
extract-minsdkversion.awk
53
_xml_p
= index($0, "<"); # get start marker
54
if (
_xml_p
== 0) return 0; # end of file (or malformed input)
55
$0 = substr($0,
_xml_p
) # remove anything before '<'
128
_xml_p
= index(XML_RPATH, "/");
129
_xml_expected = substr(XML_RPATH, 1,
_xml_p
-1);
132
XML_RPATH = substr(XML_RPATH,
_xml_p
+1);
extract-package-name.awk
57
_xml_p
= index($0, "<"); # get start marker
58
if (
_xml_p
== 0) return 0; # end of file (or malformed input)
59
$0 = substr($0,
_xml_p
) # remove anything before '<'
132
_xml_p
= index(XML_RPATH, "/");
133
_xml_expected = substr(XML_RPATH, 1,
_xml_p
-1);
136
XML_RPATH = substr(XML_RPATH,
_xml_p
+1);
xml.awk
41
_xml_p
= index($0, "<"); # get start marker
42
if (
_xml_p
== 0) return 0; # end of file (or malformed input)
43
$0 = substr($0,
_xml_p
) # remove anything before '<'
116
_xml_p
= index(XML_RPATH, "/");
117
_xml_expected = substr(XML_RPATH, 1,
_xml_p
-1);
120
XML_RPATH = substr(XML_RPATH,
_xml_p
+1);
extract-launchable.awk
115
_xml_p
= index($0, "<"); # get start marker
116
if (
_xml_p
== 0) return 0; # end of file (or malformed input)
117
$0 = substr($0,
_xml_p
) # remove anything before '<'
190
_xml_p
= index(XML_RPATH, "/");
191
_xml_expected = substr(XML_RPATH, 1,
_xml_p
-1);
194
XML_RPATH = substr(XML_RPATH,
_xml_p
+1);
Completed in 433 milliseconds