/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | ScopeInfo.h | 614 bool isNested() const { return Nested; } in isNested() function 686 void addCapture(VarDecl *Var, bool isBlock, bool isByref, bool isNested, in addCapture() argument 689 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture() 700 void addThisCapture(bool isNested, SourceLocation Loc, QualType CaptureType, 1043 inline void CapturingScopeInfo::addThisCapture(bool isNested, in addThisCapture() argument 1047 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, CaptureType, in addThisCapture()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeTypeUDT.cpp | 64 dumpSymbolField(OS, "nested", isNested(), Indent); in dump() 183 bool NativeTypeUDT::isNested() const { in isNested() function in NativeTypeUDT 185 return UnmodifiedType->isNested(); in isNested()
|
H A D | NativeTypeEnum.cpp | 154 dumpSymbolField(OS, "nested", isNested(), Indent); in dump() 311 bool NativeTypeEnum::isNested() const { in isNested() function in NativeTypeEnum 313 return UnmodifiedType->isNested(); in isNested()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | aggregate.d | 196 return fields.dim - isNested() - (vthis2 !is null); in nonHiddenFields() 278 if (isNested()) in checkOverlappedFields() 281 if (!cd || !cd.baseClass || !cd.baseClass.isNested()) in checkOverlappedFields() 621 final bool isNested() const in isNested() function
|
H A D | func.d | 523 if (!dualCtx && !ad && !isNested()) in declareThis() 535 if (dualCtx || isNested()) in declareThis() 1122 if (!thisfd.isNested() && !thisfd.vthis && !intypeof) in getLevel() 1139 if (!thiscd.isNested() && !intypeof) in getLevel() 1210 return ident == Id.main && resolvedLinkage() != LINK.c && !isMember() && !isNested(); in isMain() 1215 return ident == Id.main && resolvedLinkage() == LINK.c && !isMember() && !isNested(); in isCMain() 1240 return ident == Id.rt_init && resolvedLinkage() == LINK.c && !isMember() && !isNested(); in isRtInit() 1365 if (purity > PURE.weak && isNested()) in isPure() 1695 if (!isPureBypassingInference() || isNested()) in isTypeIsolatedIndirect() 1774 bool isNested() const in isNested() function [all …]
|
H A D | escape.d | 1802 if (fd && fd.isNested()) in visit() 1823 if (fd && fd.isNested()) in visit() 2017 if (de.func.isNested()) in visit() 2057 if (fd.isNested() && tf.isreturn) in visit() 2074 if (fd && fd.isNested()) in visit()
|
H A D | aggregate.h | 132 bool isNested() const;
|
H A D | delegatize.d | 289 if (!fd.isThis() && !fd.isNested()) in ensureStaticLinkTo()
|
H A D | traits.d | 673 if (e.ident == Id.isNested) in semanticTraits() 685 return ad.isNested() ? True() : False(); in semanticTraits() 689 return fd.isNested() ? True() : False(); in semanticTraits() 742 return isFuncX(f => !f.needThis() && !f.isNested()); in semanticTraits() 862 if (ad.isNested()) // `C` is nested in semanticTraits()
|
H A D | cppmangle.d | 639 const isNested = !inStd && (ns || q); variable 641 if (substitute(ti.tempdecl, !haveNE && isNested)) 644 if (!haveNE && isNested) 993 void mangle_variable(VarDeclaration d, bool isNested) in mangle_variable() argument 1009 else if (isNested) in mangle_variable()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBSymbolTypeUDT.h | 40 FORWARD_SYMBOL_METHOD(isNested)
|
H A D | PDBSymbolTypeEnum.h | 39 FORWARD_SYMBOL_METHOD(isNested)
|
H A D | PDBSymbolTypeTypedef.h | 35 FORWARD_SYMBOL_METHOD(isNested)
|
H A D | PDBSymbolTypeBaseClass.h | 39 FORWARD_SYMBOL_METHOD(isNested)
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | dstruct.c | 561 if (isNested()) in checkOverlappedFields() 564 if (!cd || !cd->baseClass || !cd->baseClass->isNested()) in checkOverlappedFields() 636 size_t nfields = fields.dim - isNested(); in fill() 864 bool AggregateDeclaration::isNested() in isNested() function 1341 size_t nfields = fields.dim - isNested(); in fit() 1352 if (i == fields.dim - 1 && isNested() && e->op == TOKnull) in fit()
|
H A D | func.c | 494 if ((storage_class & STC_TYPECTOR) && !(ad || isNested())) in semantic() 552 if (tf->purity == PUREimpure && (isNested() || isThis())) in semantic() 559 if (adx->isNested()) in semantic() 617 if (!tf->isNaked() && !(isThis() || isNested())) in semantic() 724 if (f->isscope && !isNested() && !ad) in semantic() 729 if (f->isreturn && !needThis() && !isNested()) in semantic() 2518 else if (isNested()) in declareThis() 3672 if (!thisfd->isNested() && !thisfd->vthis && !sc->intypeof) in getLevel() 3690 if (!thiscd->isNested() && !sc->intypeof) in getLevel() 3735 linkage != LINKc && !isMember() && !isNested(); in isMain() [all …]
|
H A D | delegatize.c | 194 if (!fd->isThis() && !fd->isNested()) in checkNestedRef()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | NativeTypeEnum.h | 50 bool isNested() const override;
|
H A D | NativeTypeUDT.h | 52 bool isNested() const override;
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | d-codegen.cc | 1812 if (!callee->isNested ()) in call_by_alias_p() 2163 gcc_assert (fdp->isNested () || fdp->vthis); in get_frame_for_symbol() 2180 if (!adp || !adp->isNested () || !adp->vthis) in get_frame_for_symbol() 2244 while (cd && cd->isNested ()) in d_nested_class() 2261 while (sd && sd->isNested ()) in d_nested_struct() 2299 if (fd->isNested ()) in find_this_tree() 2617 if (ad && ad->isNested ()) in get_frameinfo() 2619 while (ad->isNested ()) in get_frameinfo() 2660 if (fd->isNested ()) in get_framedecl()
|
H A D | decl.cc | 827 if (d->isNested ()) in visit() 830 while (fdp && fdp->isNested ()) in visit() 932 while (ad->isNested ()) in visit() 1238 if (fd->isNested ()) in get_symbol_decl() 1379 if (!fd || !fd->isNested ()) in get_symbol_decl()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | d-codegen.cc | 2101 if (!callee->isNested ()) in call_by_alias_p() 2466 gcc_assert (fdp->isNested () || fdp->vthis); in get_frame_for_symbol() 2483 if (!adp || !adp->isNested () || !adp->vthis) in get_frame_for_symbol() 2547 while (ad && ad->isNested ()) in get_outer_function() 2585 if (fd->isNested ()) in find_this_tree() 2910 if (ad && ad->isNested ()) in get_frameinfo() 2912 while (ad->isNested ()) in get_frameinfo() 2949 if (fd->isNested ()) in get_framedecl()
|
H A D | decl.cc | 933 if (d->isNested ()) in visit() 936 while (fdp && fdp->isNested ()) in visit() 996 while (ad->isNested ()) in visit() 1407 if (fd->isNested ()) in get_symbol_decl() 1558 if (!fd || !fd->isNested ()) in get_symbol_decl()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | traits.d | 2357 template isNested(T) 2360 enum isNested = __traits(isNested, T); 2367 static assert(!isNested!S); 2371 static assert(isNested!NestedStruct); 2388 enum hasNested = isNested!T || 2409 static assert(!__traits(compiles, isNested!int)); 2413 static assert(!isNested!StaticStruct); 2418 static assert( isNested!NestedStruct); 2420 static assert( isNested!(immutable NestedStruct)); 2423 static assert(!__traits(compiles, isNested!(NestedStruct[1]))); [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | ScopeInfo.cpp | 223 return !isNested() && isVariableCapture() && getVariable()->isInitCapture(); in isInitCapture()
|