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

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeBaseClass.h 39 FORWARD_SYMBOL_METHOD(isNested)
PDBSymbolTypeEnum.h 39 FORWARD_SYMBOL_METHOD(isNested)
PDBSymbolTypeTypedef.h 35 FORWARD_SYMBOL_METHOD(isNested)
PDBSymbolTypeUDT.h 40 FORWARD_SYMBOL_METHOD(isNested)
IPDBRawSymbol.h 224 virtual bool isNested() const = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeTypeEnum.h 50 bool isNested() const override;
NativeTypeUDT.h 52 bool isNested() const override;
NativeRawSymbol.h 202 bool isNested() const override;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeTypeUDT.cpp 64 dumpSymbolField(OS, "nested", isNested(), Indent);
183 bool NativeTypeUDT::isNested() const {
185 return UnmodifiedType->isNested();
NativeTypeEnum.cpp 154 dumpSymbolField(OS, "nested", isNested(), Indent);
311 bool NativeTypeEnum::isNested() const {
313 return UnmodifiedType->isNested();
NativeRawSymbol.cpp 624 bool NativeRawSymbol::isNested() const {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 580 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested,
586 Nested(IsNested), CapturesThis(false), ODRUsed(false),
590 Capture(IsThisCapture, bool IsNested, SourceLocation Loc,
593 Kind(ByCopy ? Cap_ByCopy : Cap_ByRef), Nested(IsNested),
598 Capture(IsVLACapture, const VariableArrayType *VLA, bool IsNested,
601 Nested(IsNested), CapturesThis(false), ODRUsed(false),
614 bool isNested() const { return Nested; }
686 void addCapture(VarDecl *Var, bool isBlock, bool isByref, bool isNested,
689 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc,
697 /*FIXME: IsNested*/ false, Loc, CaptureType))
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
aggregate.d 196 return fields.dim - isNested() - (vthis2 !is null);
278 if (isNested())
281 if (!cd || !cd.baseClass || !cd.baseClass.isNested())
621 final bool isNested() const
aggregate.h 132 bool isNested() const;
func.d 523 if (!dualCtx && !ad && !isNested())
535 if (dualCtx || isNested())
1122 if (!thisfd.isNested() && !thisfd.vthis && !intypeof)
1129 /* AggregateDeclaration::isNested returns true only when
1139 if (!thiscd.isNested() && !intypeof)
1210 return ident == Id.main && resolvedLinkage() != LINK.c && !isMember() && !isNested();
1215 return ident == Id.main && resolvedLinkage() == LINK.c && !isMember() && !isNested();
1240 return ident == Id.rt_init && resolvedLinkage() == LINK.c && !isMember() && !isNested();
1365 if (purity > PURE.weak && isNested())
1695 if (!isPureBypassingInference() || isNested())
    [all...]
delegatize.d 289 if (!fd.isThis() && !fd.isNested())
cppmangle.d 639 const isNested = !inStd && (ns || q);
641 if (substitute(ti.tempdecl, !haveNE && isNested))
644 if (!haveNE && isNested)
990 * isNested = Whether this variable is nested, e.g. a template parameter
993 void mangle_variable(VarDeclaration d, bool isNested)
1009 else if (isNested)
escape.d 1802 if (fd && fd.isNested())
1823 if (fd && fd.isNested())
2017 if (de.func.isNested())
2057 if (fd.isNested() && tf.isreturn)
2074 if (fd && fd.isNested())
traits.d 68 * pragma(msg, __traits(isNested, s.f));
69 * // s.f is `DotVarExp`, but `__traits(isNested)`` needs a `FuncDeclaration`.
105 "isNested",
673 if (e.ident == Id.isNested)
685 return ad.isNested() ? True() : False();
689 return fd.isNested() ? True() : False();
742 return isFuncX(f => !f.needThis() && !f.isNested());
862 if (ad.isNested()) // `C` is nested
declaration.h 673 virtual bool isNested() const;
721 bool isNested() const;
visitor.d 182 if (!e.func.isNested() || e.func.needThis())
  /src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp 223 return !isNested() && isVariableCapture() && getVariable()->isInitCapture();
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-codegen.cc 2101 if (!callee->isNested ())
2466 gcc_assert (fdp->isNested () || fdp->vthis);
2483 if (!adp || !adp->isNested () || !adp->vthis)
2547 while (ad && ad->isNested ())
2585 if (fd->isNested ())
2910 if (ad && ad->isNested ())
2912 while (ad->isNested ())
2949 if (fd->isNested ())
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/DIA/
DIARawSymbol.h 197 bool isNested() const override;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
traits.d 53 * $(LREF isNested)
2571 template isNested(T)
2574 enum isNested = __traits(isNested, T);
2581 static assert(!isNested!S);
2585 static assert(isNested!NestedStruct);
2602 enum hasNested = isNested!T ||
2623 static assert(!__traits(compiles, isNested!int));
2627 static assert(!isNested!StaticStruct);
2632 static assert( isNested!NestedStruct)
    [all...]

Completed in 45 milliseconds

1 2 3