HomeSort by: relevance | last modified time | path
    Searched defs:Imported (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/Utils/
ImportedFunctionsInliningStatistics.h 8 // Generating inliner statistics for imported functions, mostly useful for
26 /// (1) Number of inlined imported functions,
27 /// (2) Number of imported functions inlined into importing module (indirect),
28 /// (3) Number of non imported functions inlined into importing module
31 /// all performed inlines on imported functions, but the second one only the
38 /// the edges starting from not imported function.
56 /// Number of inlines into non imported function (possibly indirect via
59 bool Imported = false;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTImporter.h 248 /// Mapping from the already-imported types in the "from" context
252 /// Mapping from the already-imported declarations in the "from"
256 /// Mapping from the already-imported declarations in the "from"
259 /// imported. The same declaration may or may not be included in
264 /// Mapping from the already-imported declarations in the "to"
268 /// Mapping from the already-imported statements in the "from"
272 /// Mapping from the already-imported FileIDs in the "from" source
276 /// Mapping from the already-imported CXXBasesSpecifier in
353 /// context. A null type is imported as a null type (no error).
383 /// it has already been imported from the "from" context. Otherwise retur
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderInternals.h 257 bool Imported;
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Pragma.cpp 1164 llvm::errs() << " imported ";
1618 Module *Imported =
1621 if (!Imported)
1624 PP.makeModuleVisible(Imported, ImportLoc);
1626 tok::annot_module_include, Imported);
1628 CB->moduleImport(ImportLoc, ModuleName, Imported);
Preprocessor.cpp 550 // #imported, it won't be re-entered.
1285 Module *Imported = nullptr;
1287 Imported = TheModuleLoader.loadModule(ModuleImportLoc,
1291 if (Imported)
1292 makeModuleVisible(Imported, SemiLoc);
1295 Callbacks->moduleImport(ModuleImportLoc, ModuleImportPath, Imported);
PPDirectives.cpp 1872 /// \param EndLoc The location at which any imported macros become visible.
2016 ModuleLoadResult Imported = TheModuleLoader.loadModule(
2019 assert((Imported == nullptr || Imported == SuggestedModule.getModule()) &&
2020 "the imported module is different than the suggested one");
2022 if (Imported) {
2024 } else if (Imported.isMissingExpected()) {
2030 } else if (Imported.isConfigMismatch()) {
2073 // modular because we might not have imported it from this submodule before.

Completed in 30 milliseconds