HomeSort by: relevance | last modified time | path
    Searched refs:Instance (Results 1 - 25 of 121) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCLabel.h 24 // The instance number of this Directional Local Label.
25 unsigned Instance;
30 MCLabel(unsigned instance) : Instance(instance) {}
36 /// Get the current instance of this Directional Local Label.
37 unsigned getInstance() const { return Instance; }
39 /// Increment the current instance of this Directional Local Label.
40 unsigned incInstance() { return ++Instance; }
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 79 CompilerInstance Instance(CI.getPCHContainerOperations());
80 Instance.setInvocation(std::move(Invocation));
81 Instance.createDiagnostics(
85 Instance.getDiagnostics().setSourceManager(&SM);
87 // The instance wants to take ownership, however DisableFree frontend option
89 Instance.setFileManager(&CI.getFileManager());
90 Instance.setSourceManager(&SM);
91 Instance.setPreprocessor(CI.getPreprocessorPtr());
92 Instance.setASTContext(&CI.getASTContext());
94 Instance.getPreprocessor().InitializeForModelFile()
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/mips/
mips_console.cpp 48 MIPSConsole::Instance()
mips_console.h 45 static MIPSConsole *Instance(void);
mips_boot.cpp 92 _cons = MIPSConsole::Instance();
94 _cons = Console::Instance();
98 _cons = Console::Instance();
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apdump.c 52 UINT32 Instance,
188 * Instance - ACPI table instance no. to be dumped
201 UINT32 Instance,
221 return (ApWriteToBinaryFile (Table, Instance));
258 UINT32 Instance = 0;
269 Status = AcpiOsGetTableByIndex (i, &Table, &Instance, &Address);
292 TableStatus = ApDumpTableBuffer (Table, Instance, Address);
374 UINT32 Instance;
407 for (Instance = 0; Instance < AP_MAX_ACPI_FILES; Instance++
    [all...]
apfiles.c 145 * Instance - ACPI table instance no. to be written
157 UINT32 Instance)
189 if (Instance > 0)
191 snprintf (InstanceStr, sizeof (InstanceStr), "%u", Instance);
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oslinuxtbl.c 61 UINT32 Instance;
76 UINT32 *Instance);
81 UINT32 Instance);
120 UINT32 Instance,
131 UINT32 Instance,
285 * Instance - Multiple table support for SSDT/UEFI (0...n)
291 * AE_LIMIT: Instance is beyond valid limit
301 UINT32 Instance,
322 Status = OslGetBiosTable (Signature, Instance, Table, Address);
329 Instance, Table, Address)
    [all...]
oswintbl.c 146 * Instance - Where a pointer to the table instance no. is
168 UINT32 *Instance,
214 *Instance = CurrentInstance;
294 * Instance - For SSDTs (0...n). Use 0 otherwise.
299 * AE_LIMIT: Instance is beyond valid limit
303 * Returns AE_LIMIT when an invalid instance is reached.
315 UINT32 Instance,
346 if (Instance > 0 && ACPI_COMPARE_NAMESEG(Signature, ACPI_SIG_SSDT))
348 if (Instance < 10
    [all...]
osbsdtbl.c 77 UINT32 Instance,
116 UINT32 Instance;
188 * Instance - Multiple table support for SSDT/UEFI (0...n)
194 * AE_LIMIT: Instance is beyond valid limit
204 UINT32 Instance,
211 /* Instance is only valid for SSDT/UEFI tables */
213 if (Instance &&
265 Status = OslGetTableViaRoot (Signature, Instance, Table, Address);
281 * Instance - Where a pointer to the table instance no. i
    [all...]
  /src/external/apache2/llvm/dist/clang/examples/PrintFunctionNames/
PrintFunctionNames.cpp 26 CompilerInstance &Instance;
30 PrintFunctionsConsumer(CompilerInstance &Instance,
32 : Instance(Instance), ParsedTemplates(ParsedTemplates) {}
45 if (!Instance.getLangOpts().DelayedTemplateParsing)
69 clang::Sema &sema = Instance.getSema();
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark_api_internal.h 16 struct Benchmark::Instance {
37 std::vector<Benchmark::Instance>* benchmarks,
  /src/sys/arch/hpc/stand/hpcboot/arm/
arm_console.h 49 static ARMConsole *Instance(MemoryManager *&, ArchitectureOps);
arm_boot.cpp 131 _cons = ARMConsole::Instance(_mem, args.architecture);
133 _cons = Console::Instance();
137 _cons = Console::Instance();
arm_console.cpp 39 ARMConsole::Instance(MemoryManager *&mem, ArchitectureOps arch)
  /src/sys/arch/hpc/stand/hpcboot/
boot.h 62 static Boot &Instance(void);
console.h 53 static Console *Instance(void);
93 #define DPRINTF_SETUP() Console *_cons = Console::Instance()
boot.cpp 58 Boot::Instance()
132 _cons = Console::Instance();
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 243 // Rewrite the contents of the module in a separate compiler instance.
244 CompilerInstance Instance(CI.getPCHContainerOperations(),
246 Instance.setInvocation(
248 Instance.createDiagnostics(
251 Instance.getFrontendOpts().DisableFree = false;
252 Instance.getFrontendOpts().Inputs.clear();
253 Instance.getFrontendOpts().Inputs.emplace_back(
255 Instance.getFrontendOpts().ModuleFiles.clear();
256 Instance.getFrontendOpts().ModuleMapFiles.clear();
258 Instance.getPreprocessorOutputOpts().RewriteImports = false
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
ModuleDepCollector.cpp 112 MDC.ContextHash = Instance.getInvocation().getModuleHash();
116 SourceManager &SM = Instance.getSourceManager();
155 FileID MainFileID = Instance.getSourceManager().getMainFileID();
157 Instance.getSourceManager().getFileEntryForID(MainFileID)->getName());
184 const FileEntry *ModuleMap = Instance.getPreprocessor()
191 MDC.Instance.getASTReader()->getModuleManager().lookup(M->getASTFile());
192 MDC.Instance.getASTReader()->visitInputFiles(
207 makeInvocationForModuleBuildWithoutPaths(MD, Instance.getInvocation());
240 : Instance(I), Consumer(C), Opts(std::move(Opts)) {}
243 PP.addPPCallbacks(std::make_unique<ModuleDepCollectorPP>(Instance, *this))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InterfaceStubFunctionsConsumer.cpp 21 CompilerInstance &Instance;
69 !Instance.getLangOpts().GNUInline)
119 Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input)
233 Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input)
239 InterfaceStubFunctionsConsumer(CompilerInstance &Instance, StringRef InFile,
241 : Instance(Instance), InFile(InFile), Format(Format) {}
269 auto OS = Instance.createDefaultOutputFile(/*Binary=*/false, InFile, "ifs");
273 if (Instance.getLangOpts().DelayedTemplateParsing) {
274 clang::Sema &S = Instance.getSema()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
FrontendAction.h 39 CompilerInstance *Instance;
63 /// \param CI - The current compiler instance, provided as a convenience, see
90 /// compiler instance.
116 /// @name Compiler Instance Access
120 assert(Instance && "Compiler instance not registered!");
121 return *Instance;
124 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; }
206 /// Prepare the action to execute on the given compiler instance.
216 /// \param CI - The compiler instance this action is being run from. Th
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
IncrementalParser.h 44 /// Compiler instance performing the incremental compilation.
61 IncrementalParser(std::unique_ptr<CompilerInstance> Instance,
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/
ModuleDepCollector.h 120 : Instance(I), MDC(MDC) {}
137 /// The compiler instance for the current translation unit.
138 CompilerInstance &Instance;
169 /// The compiler instance for the current translation unit.
170 CompilerInstance &Instance;
  /src/sys/arch/hpc/stand/hpcboot/sh3/
sh_boot.cpp 92 _cons = Console::Instance();
96 _cons = Console::Instance();

Completed in 36 milliseconds

1 2 3 4 5