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

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
subtypes-2.cc 20 struct Outer::Inner
27 Outer::Outer (): p (new Inner), e (Oenum::OC)
subtypes.h 46 struct Inner;
47 Inner *p;
temargs.cc 33 struct Inner
111 Base<long, 47, &a_global, &S::f>::Inner<float> inner; local
117 inner.inner_m ();
classes.cc 632 struct Inner
634 static Inner instance;
639 Inner inner; member in struct:Outer
643 Inner Inner::instance;
nsalias.exp 33 # namespace inner
47 # namespace Inner = inner;
50 # int foo (void) { return x + Inner::foo (); }
54 # namespace oi = Outer::Inner;
74 {name inner}
111 {name Inner}
226 lappend permutations "outer::inner"
227 lappend permutations "Outer::inner"
228 lappend permutations "outer::Inner"
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
subtypes-2.cc 20 struct Outer::Inner
27 Outer::Outer (): p (new Inner), e (Oenum::OC)
subtypes.h 46 struct Inner;
47 Inner *p;
temargs.cc 33 struct Inner
111 Base<long, 47, &a_global, &S::f>::Inner<float> inner; local
117 inner.inner_m ();
classes.cc 632 struct Inner
634 static Inner instance;
639 Inner inner; member in struct:Outer
643 Inner Inner::instance;
nsalias.exp 33 # namespace inner
47 # namespace Inner = inner;
50 # int foo (void) { return x + Inner::foo (); }
54 # namespace oi = Outer::Inner;
74 {name inner}
111 {name Inner}
226 lappend permutations "outer::inner"
227 lappend permutations "Outer::inner"
228 lappend permutations "outer::Inner"
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 75 // Abort if any of the inner matchers can't be converted to
79 llvm::Optional<DynTypedMatcher> Inner =
81 if (!Inner)
83 DynMatchers.push_back(*Inner);
134 std::string Inner;
137 Inner += "|";
138 Inner += Matchers[i].getSupportedKind().asStringRef();
140 return (Twine("Matcher<") + Inner + ">").str();
197 std::string Inner;
200 Inner += "&"
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaInternal.h 254 SpecifierInfoList::iterator Inner;
260 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) {
265 ++Inner;
266 if (Inner == Outer->second.end() && Outer != OuterBack) {
268 Inner = Outer->second.begin();
273 SpecifierInfo &operator*() { return *Inner; }
274 bool operator==(const iterator &RHS) const { return Inner == RHS.Inner; }
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
postblit.d 58 order ~= "destroy inner top";
63 order ~= "copy inner top";
76 order ~= "destroy inner element #" ~ counter++;
81 order ~= "copy inner element #" ~ counter++;
89 order ~= "destroy inner bottom";
94 order ~= "copy inner bottom";
203 static struct Inner
210 order ~= "copy inner #" ~ id;
217 order ~= "destroy inner #" ~ id;
223 Inner inner1, inner2, inner3
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-framefilter-mi.exp 47 mi_continue_to_line [gdb_get_line_number {Inner test breakpoint} ${srcfile}] \
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-framefilter-mi.exp 47 mi_continue_to_line [gdb_get_line_number {Inner test breakpoint} ${srcfile}] \
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
InterpolatingCompilationDatabase.cpp 510 // The actual CompilationDatabase wrapper delegates to its inner database.
515 InterpolatingCompilationDatabase(std::unique_ptr<CompilationDatabase> Inner)
516 : Inner(std::move(Inner)), Index(this->Inner->getAllFiles()) {}
520 auto Known = Inner->getCompileCommands(Filename);
528 Inner->getCompileCommands(Index.chooseProxy(Filename, foldType(Lang)));
535 return Inner->getAllFiles();
539 return Inner->getAllCompileCommands();
543 std::unique_ptr<CompilationDatabase> Inner;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ExprMutationAnalyzer.cpp 44 auto DerivedToBase = [](const ast_matchers::internal::Matcher<Expr> &Inner) {
47 hasSourceExpression(Inner));
50 [&DerivedToBase](const ast_matchers::internal::Matcher<Expr> &Inner) {
51 return ignoringParens(expr(anyOf(Inner, DerivedToBase(Inner))));
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 110 if (const Expr *Inner = peelOffPointerArithmetic(B)) {
111 E = Inner;
696 // this suppression would still apply when we visit these inner functions.
2003 const Expr *Inner) {
2005 if (N->getStmtForDiagnostics() == Inner)
2059 const Expr *Inner = peelOffOuterExpr(E, InputNode);
2060 const ExplodedNode *LVNode = findNodeForExpression(InputNode, Inner);
2079 if (const Expr *Receiver = NilReceiverBRVisitor::getNilReceiver(Inner, LVNode))
2084 if (const auto *Arr = dyn_cast<ArraySubscriptExpr>(Inner))
2090 if (ExplodedGraph::isInterestingLValueExpr(Inner)) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypePrinter.cpp 413 // If so, we want to skip that before printing the inner type.
424 QualType Inner = skipTopLevelReferences(T->getPointeeTypeAsWritten());
425 printBefore(Inner, OS);
428 if (isa<ArrayType>(Inner))
437 QualType Inner = skipTopLevelReferences(T->getPointeeTypeAsWritten());
440 if (isa<ArrayType>(Inner))
442 printAfter(Inner, OS);
449 QualType Inner = skipTopLevelReferences(T->getPointeeTypeAsWritten());
450 printBefore(Inner, OS);
453 if (isa<ArrayType>(Inner))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 327 LoopInterchangeLegality(Loop *Outer, Loop *Inner, ScalarEvolution *SE,
329 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {}
346 bool tightlyNested(Loop *Outer, Loop *Inner);
351 /// OuterInnerReductions. When the outer loop is passed, the inner loop needs
365 /// Set of reduction PHIs taking part of a reduction across the inner and
374 LoopInterchangeProfitability(Loop *Outer, Loop *Inner, ScalarEvolution *SE,
376 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {}
398 LoopInterchangeTransform(Loop *Outer, Loop *Inner, ScalarEvolution *SE,
401 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), LI(LI), DT(DT), LIL(LIL) {}
567 "Inner loop not left in LCSSA form after loop interchange!")
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
lifetime.d 89 If `T` is an inner class whose `outer` field can be used to access an instance
112 "Initializing an inner class requires a pointer to the outer class");
170 class Inner
178 auto innerBuf = new void[__traits(classInstanceSize, Outer.Inner)];
179 auto innerSupport = (() @trusted => cast(Outer.Inner)(innerBuf.ptr))();
181 auto inner = innerSupport.emplace!(Outer.Inner)(outerSupport.emplace!Outer);
182 assert(inner.getI == 3);
188 If `T` is an inner class whose `outer` field can be used to access an instance
257 class Inner
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 133 Expr *inner = E->IgnoreParenCasts(); local
134 if (CallExpr *callE = dyn_cast<CallExpr>(inner)) {
181 Expr *base = inner->IgnoreParenImpCasts();
280 void getBlockMacroRanges(CastExpr *E, SourceRange &Outer, SourceRange &Inner) {
290 Inner = SourceRange(InnerBegin, InnerEnd);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
sumtype.d 1262 alias Inner = SumType!Nat;
1448 static struct Inner
1450 ref this(ref inout Inner other) {}
1455 SumType!Inner inner;
2441 alias Inner = SumType!(int, double);
2442 alias Outer = SumType!(Inner, string);
2450 static string fun(Inner i) { return i.match!fun; }
2454 Outer a = Inner(42);
2455 Outer b = Inner(3.14)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BranchProbabilityInfo.h 215 // SCC is 'Inner' until it is either 'Header' or 'Exiting'. Note that a
218 Inner = 0x0,
348 /// either doesn't belong to any loop or belongs to a loop which is not inner
352 /// either doesn't belong to any loop or belongs to a loop which is not inner
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
dw2-single-line-discriminators.S 64 .LBB0_1: # =>This Inner Loop Header: Depth=1

Completed in 48 milliseconds

1 2 3