OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_xml_p
(Results
1 - 8
of
8
) sorted by null
/gdk/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-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
111
_xml_p
= index($0, "<"); # get start marker
112
if (
_xml_p
== 0) return 0; # end of file (or malformed input)
113
$0 = substr($0,
_xml_p
) # remove anything before '<'
186
_xml_p
= index(XML_RPATH, "/");
187
_xml_expected = substr(XML_RPATH, 1,
_xml_p
-1);
190
XML_RPATH = substr(XML_RPATH,
_xml_p
+1);
/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-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 1061 milliseconds