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

  /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/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/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/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/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-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/Transforms/Scalar/
NewGVN.cpp 202 "Asking for a component for a value we never processed");
219 // See if we really were the root of a component, by seeing if we still have
220 // our DFSNumber. If we do, we are the root of the component, and we have
221 // completed a component. If we do not, we are not the root of a component,
222 // and belong on the component stack.
226 auto &Component = Components.back();
227 Component.insert(I);
228 LLVM_DEBUG(dbgs() << "Component root is " << *I << "\n");
231 // Pop a component off the stack and label it
    [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/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 2914 Address Component =
2918 LValue ElemLV = MakeAddrLValue(Component, T, LV.getBaseInfo(),
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 10386 typedef Sema::OffsetOfComponent Component;
10387 SmallVector<Component, 4> Components;
10390 Component Comp;
12448 // Note: it is sufficient to compare the Name component of NameInfo:
13458 // component and takes the init (if any).
13506 // component and takes the complete expansion so far as its init (if any).
14633 // component. Tack it on to the end of the nested name specifier.

Completed in 49 milliseconds