Searched refs:ModuleName (Results 1 - 25 of 25) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc46 static BOOL CALLBACK ELM_Callback(WIN32_ELMCB_PCSTR ModuleName,
53 if (stricmp(ModuleName, "msvci70") != 0 &&
54 stricmp(ModuleName, "msvcirt") != 0 &&
55 stricmp(ModuleName, "msvcp50") != 0 &&
56 stricmp(ModuleName, "msvcp60") != 0 &&
57 stricmp(ModuleName, "msvcp70") != 0 &&
58 stricmp(ModuleName, "msvcr70") != 0 &&
62 stricmp(ModuleName, "msvcrt") != 0 &&
64 stricmp(ModuleName, "msvcrt20") != 0 &&
65 stricmp(ModuleName, "msvcrt4
[all...]
/freebsd-10.2-release/sys/contrib/dev/acpica/components/utilities/
H A Dutdebug.c166 * ModuleName - Caller's module name
183 const char *ModuleName,
220 AcpiOsPrintf ("%9s-%04ld ", ModuleName, LineNumber);
254 * ModuleName - Caller's module name
271 const char *ModuleName,
300 * ModuleName - Caller's module name
314 const char *ModuleName,
326 LineNumber, FunctionName, ModuleName, ComponentId,
340 * ModuleName - Caller's module name
355 const char *ModuleName,
179 AcpiDebugPrint( UINT32 RequestedDebugLevel, UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *Format, ...) argument
392 AcpiUtTraceStr( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, char *String) argument
432 AcpiUtTraceU32( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, UINT32 Integer) argument
471 AcpiUtExit( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId) argument
[all...]
H A Dutxferror.c64 * PARAMETERS: ModuleName - Caller's module name (for error output)
76 const char *ModuleName,
102 * PARAMETERS: ModuleName - Caller's module name (for error output)
116 const char *ModuleName,
153 * PARAMETERS: ModuleName - Caller's module name (for error output)
165 const char *ModuleName,
191 * PARAMETERS: ModuleName - Caller's module name (for error output)
200 * TBD: ModuleName and LineNumber args are not needed, should be removed.
206 const char *ModuleName,
237 * PARAMETERS: ModuleName
75 AcpiError( const char *ModuleName, UINT32 LineNumber, const char *Format, ...) argument
[all...]
H A Duterror.c63 * PARAMETERS: ModuleName - Caller's module name (for error output)
80 const char *ModuleName,
112 * PARAMETERS: ModuleName - Caller's module name (for error output)
129 const char *ModuleName,
161 * PARAMETERS: ModuleName - Caller's module name (for error output)
178 const char *ModuleName,
210 * PARAMETERS: ModuleName - Caller's module name (for error output)
223 const char *ModuleName,
279 * PARAMETERS: ModuleName - Caller's module name (for error output)
294 const char *ModuleName,
79 AcpiUtPredefinedWarning( const char *ModuleName, UINT32 LineNumber, char *Pathname, UINT8 NodeFlags, const char *Format, ...) argument
128 AcpiUtPredefinedInfo( const char *ModuleName, UINT32 LineNumber, char *Pathname, UINT8 NodeFlags, const char *Format, ...) argument
177 AcpiUtPredefinedBiosError( const char *ModuleName, UINT32 LineNumber, char *Pathname, UINT8 NodeFlags, const char *Format, ...) argument
222 AcpiUtNamespaceError( const char *ModuleName, UINT32 LineNumber, const char *InternalName, ACPI_STATUS LookupStatus) argument
293 AcpiUtMethodError( const char *ModuleName, UINT32 LineNumber, const char *Message, ACPI_NAMESPACE_NODE *PrefixNode, const char *Path, ACPI_STATUS MethodStatus) argument
[all...]
H A Dutobject.c76 * PARAMETERS: ModuleName - Source file name of caller
95 const char *ModuleName,
110 Object = AcpiUtAllocateObjectDescDbg (ModuleName, LineNumber, ComponentId);
124 SecondObject = AcpiUtAllocateObjectDescDbg (ModuleName,
414 * PARAMETERS: ModuleName - Caller's module name (for error output)
427 const char *ModuleName,
440 ACPI_ERROR ((ModuleName, LineNumber,
94 AcpiUtCreateInternalObjectDbg( const char *ModuleName, UINT32 LineNumber, UINT32 ComponentId, ACPI_OBJECT_TYPE Type) argument
426 AcpiUtAllocateObjectDescDbg( const char *ModuleName, UINT32 LineNumber, UINT32 ComponentId) argument
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DModuleBuilder.h42 const std::string &ModuleName,
/freebsd-10.2-release/contrib/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp54 static bool parseCommand(bool &IsData, std::string &ModuleName, argument
64 ModuleName = "";
85 ModuleName = std::string(pos, end - pos);
89 ModuleName = std::string(pos, name_length);
113 std::string ModuleName; local
115 while (parseCommand(IsData, ModuleName, ModuleOffset)) {
117 IsData ? Symbolizer.symbolizeData(ModuleName, ModuleOffset)
118 : Symbolizer.symbolizeCode(ModuleName, ModuleOffset);
H A DLLVMSymbolize.h58 symbolizeCode(const std::string &ModuleName, uint64_t ModuleOffset);
60 symbolizeData(const std::string &ModuleName, uint64_t ModuleOffset);
66 ModuleInfo *getOrCreateModuleInfo(const std::string &ModuleName);
H A DLLVMSymbolize.cpp170 std::string LLVMSymbolizer::symbolizeCode(const std::string &ModuleName, argument
172 ModuleInfo *Info = getOrCreateModuleInfo(ModuleName);
191 std::string LLVMSymbolizer::symbolizeData(const std::string &ModuleName, argument
197 if (ModuleInfo *Info = getOrCreateModuleInfo(ModuleName)) {
367 LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) { argument
368 ModuleMapTy::iterator I = Modules.find(ModuleName);
371 std::string BinaryName = ModuleName;
373 size_t ColonPos = ModuleName.find_last_of(':');
376 std::string ArchStr = ModuleName.substr(ColonPos + 1);
378 BinaryName = ModuleName
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DDiagnosticRenderer.h98 StringRef ModuleName,
101 StringRef ModuleName,
115 void emitImportStackRecursively(SourceLocation Loc, StringRef ModuleName,
169 StringRef ModuleName,
173 StringRef ModuleName,
H A DTextDiagnostic.h106 StringRef ModuleName,
110 StringRef ModuleName,
/freebsd-10.2-release/sys/contrib/dev/acpica/include/
H A Dacutils.h130 AcpiOsPrintf (" (%8.8X/%s-%u)\n", ACPI_CA_VERSION, ModuleName, LineNumber)
421 const char *ModuleName,
428 const char *ModuleName,
436 const char *ModuleName,
444 const char *ModuleName,
452 const char *ModuleName,
459 const char *ModuleName,
467 const char *ModuleName,
475 const char *ModuleName,
505 char *ModuleName,
[all...]
H A Dacpixf.h1107 const char *ModuleName,
1116 const char *ModuleName,
1126 const char *ModuleName,
1135 const char *ModuleName,
1144 const char *ModuleName,
1153 const char *ModuleName,
1169 const char *ModuleName,
1181 const char *ModuleName,
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DModuleBuilder.cpp40 CodeGeneratorImpl(DiagnosticsEngine &diags, const std::string& ModuleName, argument
43 M(new llvm::Module(ModuleName, C)) {}
160 const std::string& ModuleName,
164 return new CodeGeneratorImpl(Diags, ModuleName, CGO, C);
159 CreateLLVMCodeGen(DiagnosticsEngine &Diags, const std::string& ModuleName, const CodeGenOptions &CGO, const TargetOptions & , llvm::LLVMContext& C) argument
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Lex/
H A DHeaderSearch.cpp124 std::string HeaderSearch::getModuleFileName(StringRef ModuleName) { argument
131 llvm::sys::path::append(Result, ModuleName + ".pcm");
135 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) { argument
137 Module *Module = ModMap.findModule(ModuleName);
148 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework");
153 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
171 Module = ModMap.findModule(ModuleName);
180 llvm::sys::path::append(NestedModuleMapDirName, ModuleName);
183 Module = ModMap.findModule(ModuleName);
198 Module = ModMap.findModule(ModuleName);
467 StringRef ModuleName = llvm::sys::path::stem(TopFrameworkDir->getName()); local
802 StringRef ModuleName = llvm::sys::path::stem(TopFrameworkDir->getName()); local
[all...]
H A DModuleMap.cpp473 ModuleMap::inferFrameworkModule(StringRef ModuleName, argument
478 if (Module *Mod = lookupModuleQualified(ModuleName, Parent))
541 llvm::sys::path::append(UmbrellaName, "Headers", ModuleName + ".h");
550 Module *Result = new Module(ModuleName, SourceLocation(), Parent,
552 if (LangOpts.CurrentModule == ModuleName) {
554 SourceModuleName = ModuleName;
560 Modules[ModuleName] = Result;
1199 StringRef ModuleName = Id.back().first; local
1209 << ModuleName;
1216 if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModul
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp273 StringRef ModuleName,
289 emitImportLocation(Loc, PLoc, ModuleName, SM);
484 StringRef ModuleName,
489 Message << "in module '" << ModuleName << "' imported from "
497 StringRef ModuleName,
502 Message << "while building module '" << ModuleName << "' imported from "
272 emitImportStackRecursively(SourceLocation Loc, StringRef ModuleName, const SourceManager &SM) argument
482 emitImportLocation(SourceLocation Loc, PresumedLoc PLoc, StringRef ModuleName, const SourceManager &SM) argument
495 emitBuildingModuleLocation(SourceLocation Loc, PresumedLoc PLoc, StringRef ModuleName, const SourceManager &SM) argument
H A DCompilerInstance.cpp1107 StringRef ModuleName = Path[0].first->getName(); local
1115 if (LastModuleImportResult && ModuleName != getLangOpts().CurrentModule)
1129 } else if (ModuleName == getLangOpts().CurrentModule) {
1131 Module = PP->getHeaderSearchInfo().getModuleMap().findModule(ModuleName);
1135 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName);
1140 ModuleFileName = PP->getHeaderSearchInfo().getModuleFileName(ModuleName);
1192 << ModuleName
1202 if (Pos->first == ModuleName)
1212 CyclePath += ModuleName;
1215 << ModuleName << CyclePat
[all...]
H A DTextDiagnostic.cpp897 StringRef ModuleName,
900 OS << "In module '" << ModuleName << "' imported from "
903 OS << "In module " << ModuleName << "':\n";
908 StringRef ModuleName,
911 OS << "While building module '" << ModuleName << "' imported from "
914 OS << "While building module '" << ModuleName << "':\n";
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DModuleMap.h291 Module *inferFrameworkModule(StringRef ModuleName,
H A DHeaderSearch.h473 /// \param ModuleName The module whose module file name will be returned.
477 std::string getModuleFileName(StringRef ModuleName);
481 /// \param ModuleName The name of the module we're looking for.
488 Module *lookupModule(StringRef ModuleName, bool AllowSearch = true);
532 /// \param Dir The framework directory (e.g., ModuleName.framework).
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Serialization/
H A DModuleManager.cpp163 StringRef ModuleName = llvm::sys::path::stem((*victim)->FileName); local
164 if (Module *mod = modMap->findModule(ModuleName)) {
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp378 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
821 Module &M, GlobalValue *ModuleName) {
833 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
971 GlobalVariable *ModuleName = createPrivateGlobalForString( local
975 ModuleName->setUnnamedAddr(false);
1033 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
1051 createInitializerPoisonCalls(M, ModuleName);
820 createInitializerPoisonCalls( Module &M, GlobalValue *ModuleName) argument
/freebsd-10.2-release/sys/dev/asr/
H A Di2oexec.h1124 U8 ModuleName[I2O_MODULE_NAME_SZ]; member in struct:_I2O_EXEC_EXECUTE_DDM_TABLE
1151 U8 ModuleName[I2O_MODULE_NAME_SZ]; member in struct:_I2O_EXEC_DRIVER_STORE_TABLE
H A Di2omsg.h1179 U8 ModuleName[I2O_MODULE_NAME_SZ];

Completed in 233 milliseconds