3 this script is used to process def results
16 if LEFT
( l
,4) \
= 'Java' THEN l
= '_'l
19 if POS
(';', l
) > 0 then l
= LEFT
( l
, POS
(';', l
)-1)
20 if POS
('#', l
) > 0 then l
= LEFT
( l
, POS
('#', l
)-1)
21 /* remove wildcards
*/
22 if POS
('*', l
) > 0 then l
= ''
24 /* remove empty lines
*/
25 if l
= '_' then l
= ''
27 /* remove component_getDescriptionFunc
, since it is already added by tg_def
*/
28 if l
= '_component_getDescriptionFunc' then l
= ''
29 if l
= '_GetVersionInfo' then l
= ''
31 /* remove GLOBAL symbols
*/
33 if POS
('_GLOBAL_', l
) > 0 then l
= ';'l
34 if POS
('_ZN4_STL', l
) > 0 then l
= ';'l
35 if POS
('_ZNK4_STL', l
) > 0 then l
= ';'l
37 /* if LENGTH
(l
) > 254 then l
= ';(>254)'left
(l
,100)*/
39 IF LENGTH
(l
)>0 THEN DO
44 if LENGTH
(l
)>lmax
then do