Home | History | Annotate | Download | only in Basic

Lines Matching defs:Current

57 /// \brief Determine whether a translation unit built using the current
79 for (const Module *Current = this; Current; Current = Current->Parent) {
80 if (!Current->MissingHeaders.empty()) {
81 MissingHeader = Current->MissingHeaders.front();
84 for (unsigned I = 0, N = Current->Requirements.size(); I != N; ++I) {
85 if (hasFeature(Current->Requirements[I].first, LangOpts, Target) !=
86 Current->Requirements[I].second) {
87 Req = Current->Requirements[I];
175 Module *Current = Stack.back();
178 if (!Current->IsAvailable)
181 Current->IsAvailable = false;
182 Current->IsMissingRequirement |= MissingRequirement;
183 for (submodule_iterator Sub = Current->submodule_begin(),
184 SubEnd = Current->submodule_end();