Home | History | Annotate | Download | only in test

Lines Matching defs:Use

4 // Redistribution and use in source and binary forms, with or without
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
119 a0->Use();
120 a1->Use();
121 a2->Use();
135 "A0 use\n"
136 "A0 use\n"
137 "B2 use\n"
138 "B2 use\n"
139 "B2 use\n"
140 "B2 use\n"
141 "B2 use\n"
144 "A0 use\n"
145 "A0 use\n"
146 "A1 use\n"