| /src/sys/external/bsd/acpica/dist/utilities/ |
| uttrack.c | 49 * element contains the caller's component, module name, function name, and 75 UINT32 Component, 82 UINT32 Component, 129 * Component - Component type of caller 142 UINT32 Component, 171 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line); 198 * Component - Component type of caller 211 UINT32 Component, [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| gdbarch_types.py | 37 class Component: 84 class Info(Component): 85 "An Info component is copied from the gdbarch_info." 88 class Value(Component): 89 "A Value component is just a data member." 115 class Function(Component): 116 "A Function component is a function pointer member." 183 components: List[Component] = []
|
| gdbarch.py | 28 from gdbarch_types import Component, Function, Info, Value, components 41 def info(c: Component): 46 def not_info(c: Component): 224 # This component has its 'invalid' field set to True, but 229 f"component {c.name} has postdefault and invalid set to True"
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gdbarch_types.py | 37 class Component: 84 class Info(Component): 85 "An Info component is copied from the gdbarch_info." 88 class Value(Component): 89 "A Value component is just a data member." 115 class Function(Component): 116 "A Function component is a function pointer member." 183 components: List[Component] = []
|
| gdbarch.py | 28 from gdbarch_types import Component, Function, Info, Value, components 41 def info(c: Component): 46 def not_info(c: Component): 224 # This component has its 'invalid' field set to True, but 229 f"component {c.name} has postdefault and invalid set to True"
|
| /src/sys/external/bsd/acpica/dist/include/ |
| acoutput.h | 48 * Debug levels and component IDs. These are used to control the 50 * per-component basis and a per-exception-type basis. 53 /* Component IDs are used in the global "DebugLayer" */ 68 /* Component IDs for ACPI tools and utilities */ 80 /* Component IDs reserved for ACPI drivers */ 296 * line number, function name, module(file) name, component ID 303 #define ACPI_IS_DEBUG_ENABLED(Level, Component) \ 304 ((Level & AcpiDbgLevel) && (Component & AcpiDbgLayer)) 309 * 1) Debug print for the current component is enabled 338 #define ACPI_DO_DEBUG_PRINT(Function, Level, Line, Filename, Modulename, Component, ...) [all...] |
| acutils.h | 1052 UINT32 Component, 1059 UINT32 Component, 1066 UINT32 Component, 1076 UINT32 Component,
|
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/ |
| RecursiveSymbolVisitor.h | 74 const OffsetOfNode &Component = S->getComponent(I); 75 if (Component.getKind() == OffsetOfNode::Field) { 76 if (!visit(Component.getField(), Component.getEndLoc()))
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| MipsLinux.h | 41 getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component,
|
| MipsLinux.cpp | 120 StringRef Component, 138 Path, Twine("libclang_rt." + Component + "-" + "mips" + Suffix));
|
| OpenBSD.h | 80 std::string getCompilerRT(const llvm::opt::ArgList &Args, StringRef Component,
|
| BareMetal.h | 37 StringRef Component,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Path.h | 30 /// @name Lexical Component Iterator 43 /// Iteration examples. Each component is separated by ',': 56 StringRef Component; ///< The current component. Not necessarily in Path. 65 reference operator*() const { return Component; } 82 StringRef Component; ///< The current component. Not necessarily in Path. 90 reference operator*() const { return Component; } 100 /// @returns Iterator initialized with the first component of \a path. 110 /// @returns Iterator initialized with the first reverse component of \a path [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| CoverageReport.cpp | 131 for (const auto &Component : 135 if (Component.index() >= NumRedundant) 140 if (FirstPathComponents[Component.index()] != Component.value()) { 141 NumRedundant = Component.index(); 159 auto Component = sys::path::begin(Paths[0]); 161 auto LastComponent = Component; 162 ++Component; 163 PrefixLen += Component - LastComponent;
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Path.cpp | 60 // Look for this first component in the following order. 227 i.Component = find_first_component(path, style); 243 // Increment Position to past the current component 244 Position += Component.size(); 248 Component = StringRef(); 254 bool was_net = Component.size() > 2 && is_separator(Component[0], S) && 255 Component[1] == Component[0] && !is_separator(Component[2], S) [all...] |
| /src/external/mit/libuv/dist/tools/ |
| vswhere_usability_wrapper.cmd | 17 set VSWHERE_REQ=-requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ |
| ToolChain.cpp | 197 // Try again after stripping trailing -component. 420 StringRef Component, 422 std::string CRTAbsolutePath = getCompilerRT(Args, Component, Type); 427 StringRef Component, 457 return (Prefix + Twine("clang_rt.") + Component + ArchAndEnv + Suffix).str(); 460 std::string ToolChain::getCompilerRT(const ArgList &Args, StringRef Component, 464 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/false); 475 buildCompilerRTBasename(Args, Component, Type, /*AddArch=*/true); 482 StringRef Component, 484 return Args.MakeArgString(getCompilerRT(Args, Component, Type)) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| SarifDiagnostics.cpp | 73 // characters are not reserved for the path component and 92 // There is no authority, so end the component and add the root to the URI. 97 assert(Iter != End && "Expected there to be a non-root path component."); 99 // we skip past the first path component, as it was handled it above. 100 std::for_each(++Iter, End, [&Ret](StringRef Component) { 102 // paths for the initial backslash following the drive component, which 104 if (Component == "\\") 112 for (char C : Component) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| ToolChain.h | 188 StringRef Component, 433 StringRef Component, 437 getCompilerRTArgString(const llvm::opt::ArgList &Args, StringRef Component, 441 StringRef Component,
|
| /src/external/apache2/llvm/dist/clang/lib/Index/ |
| IndexBody.cpp | 451 const OffsetOfNode &Component = S->getComponent(I); 452 if (Component.getKind() == OffsetOfNode::Field) 453 IndexCtx.handleReference(Component.getField(), Component.getEndLoc(),
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-config/ |
| llvm-config.cpp | 41 // Include the component table. This creates an array of struct 42 // AvailableComponent entries, which record the component name, library name, 60 // LinkModeShared will link with the dynamic component libraries if they 64 // LinkModeStatic will link with the static component libraries if they 69 /// Traverse a single component adding to the topological ordering in 72 /// \param Name - The component to traverse. 73 /// \param ComponentMap - A prebuilt map of component names to descriptors. 77 /// \param GetComponentNames - Get the component names instead of the 88 // Lookup the component. 91 errs() << "Can't find component: '" << Name << "' in the map. Available components are: " [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| VTableBuilder.cpp | 993 /// Component indices of the first component of each of the vtables in the 1161 const VTableComponent &Component = Components[TI.first]; 1165 switch (Component.getKind()) { 1167 llvm_unreachable("Unexpected vtable component kind!"); 1169 MD = Component.getFunctionDecl(); 1172 MD = Component.getDestructorDecl(); 1920 const VTableComponent &Component = Components[I]; 1922 // Dump the component. 1923 switch (Component.getKind()) [all...] |
| /src/sys/external/bsd/acpica/dist/namespace/ |
| nsdump.c | 152 * Component - Caller's component ID 166 UINT32 Component) 172 /* Do this only if the requested debug level and component are enabled */ 174 if (!ACPI_IS_DEBUG_ENABLED (Level, Component))
|
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| TableGenBackends.h | 66 const std::string &Component);
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| PPDirectives.cpp | 189 // If the first component of the path is "boost", treat this like a standard header 1649 for (auto &Component : llvm::reverse(Components)) { 1650 if ("." == Component) { 1651 } else if (".." == Component) { 1656 if (Component != *RealPathComponentIter) { 1660 SuggestReplacement = RealPathComponentIter->equals_lower(Component); 1663 Component = *RealPathComponentIter; 2166 for (auto Component : Components) { 2178 if (!(Component.size() == 1 && IsSep(Component[0])) [all...] |