summaryrefslogtreecommitdiff
path: root/bin/gen-iwyu-dummy-lib.awk
blob: 464d9515c7ef62f37ee84cc0b7f231a8bbc07d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
BEGIN  { domatch = 0; }

{
    if ($0 ~ /use_external(s)?,/ )
    {
        if (index($0, "))"))
        {
            gsub(/.*,/, "");
            gsub(/\)+/, ""); 
            if (!($0 in exts))
            {
                exts[$0];
                print $0;
            }
        }
        else
        {
           domatch = 1;
        }
    }
    else if ($0 ~ /\)\)/ )
    {
        domatch = 0;
    }
    else if (domatch == 1)
    {
        if (!($1 in exts))
        {
            exts[$1];
            print $1;
        }
    }
}

n>dennisroczek 2018-01-27Fix typosAndrea Gelmini 2017-06-29loplugin:oncevarStephan Bergmann 2017-05-16drop unused qa OfficeResourceLoader testCaolán McNamara 2017-04-28loplugin:cppunitassertequals: extensionsStephan Bergmann 2016-03-14remove some unused Java codeNoel Grandin 2016-03-10Extract Directories from BootstrapFixtureBaseStephan Bergmann 2015-11-06loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)Stephan Bergmann 2015-11-05java: make inner classes static where possibleNoel Grandin 2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann