HomeSort by: relevance | last modified time | path
    Searched refs:Umbrella (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h 135 /// The umbrella header or directory.
136 llvm::PointerUnion<const FileEntry *, const DirectoryEntry *> Umbrella;
141 /// The name of the umbrella entry, as written in the module map.
144 // The path to the umbrella entry relative to the root module's \c Directory.
284 /// Submodules can only be inferred for modules with an umbrella header.
546 /// umbrella.
549 /// Retrieve the header that serves as the umbrella header for this
552 if (auto *FE = Umbrella.dyn_cast<const FileEntry *>())
558 /// Determine whether this module has an umbrella directory that is
559 /// not based on an umbrella header
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
TextStub.cpp 80 parent-umbrella: # Optional:
121 parent-umbrella: # Optional:
168 parent-umbrella: # Optional:
249 std::string Umbrella;
339 IO.mapRequired("umbrella", Section.Umbrella);
837 CurrentSection.Umbrella = it.first;
924 File->addParentUmbrella(target, CurrentSection.Umbrella);
1046 IO.mapOptional("parent-umbrella", Keys->ParentUmbrella, StringRef());
1066 IO.mapOptional("parent-umbrella", Keys->ParentUmbrellas)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Module.cpp 251 Umbrella.dyn_cast<const DirectoryEntry *>()};
467 OS << "umbrella header \"";
472 OS << "umbrella \"";
  /src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp 262 // Record this umbrella header.
424 // an umbrella header.
606 // Search up the module stack until we find a module with an umbrella
617 // the directory of the umbrella header and the directory where
656 // the module we found, since the umbrella header covers them all.
713 // that a umbrella header is not including a textual header.
732 // an umbrella header.
741 // Search up the module stack until we find a module with an umbrella
1013 // Look for an umbrella header.
1018 // FIXME: If there's no umbrella header, we could probably scan th
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 5594 if (auto Umbrella = PP.getFileManager().getFile(Filename)) {
5597 ModMap.setUmbrellaHeader(CurrentModule, *Umbrella, Blob, "");
5598 else if (CurrentModule->getUmbrellaHeader().Entry != *Umbrella) {
5600 Error("mismatched umbrella headers in submodule");
5628 if (auto Umbrella = PP.getFileManager().getDirectory(Dirname)) {
5631 ModMap.setUmbrellaDir(CurrentModule, *Umbrella, Blob, "");
5632 else if (CurrentModule->getUmbrellaDir().Entry != *Umbrella) {
5634 Error("mismatched umbrella directories in submodule");

Completed in 24 milliseconds