/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | dscope.d | 81 Scope* enclosing; /// enclosing Scope member 154 freelist = s.enclosing; in alloc() 202 s.enclosing = &this; in push() 205 if (enclosing) in push() 206 assert(!(enclosing.flags & SCOPE.free)); in push() 207 if (s == enclosing) in push() 209 … printf("this = %p, enclosing = %p, enclosing.enclosing = %p\n", s, &this, enclosing); in push() 211 assert(s != enclosing); in push() 233 if (enclosing) in pop() 234 enclosing.ctorflow.OR(ctorflow); in pop() [all …]
|
H A D | aggregate.d | 123 Dsymbol enclosing; variable 623 return enclosing !is null; in isNested() 630 if (enclosing) // if already nested in makeNested() 648 enclosing = fd; in makeNested() 660 enclosing = ad; in makeNested() 666 enclosing = ti.enclosing; in makeNested() 671 if (enclosing) in makeNested()
|
H A D | access.d | 151 for (auto scx = sc; scx; scx = scx.enclosing) in hasProtectedAccess() 229 for (; sc; sc = sc.enclosing) in checkAccess()
|
H A D | scope.h | 72 Scope *enclosing; // enclosing Scope member
|
H A D | nspace.d | 95 for (Scope* sce = sc; 1; sce = sce.enclosing) in addMember()
|
H A D | dtemplate.d | 1164 ti.parent = ti.enclosing; in matchWithInstance() 2880 for (Scope* scx = sc; scx; scx = scx.enclosing) in applyTemplate() 5806 Dsymbol enclosing; // if referencing local symbols, this is the context variable 6093 if (enclosing != ti.enclosing) in equalsx() 6144 hash = cast(size_t)cast(void*)enclosing; in toHash() 7230 if (!enclosing) in hasNestedArgs() 7233 enclosing = ti.enclosing; in hasNestedArgs() 7279 if (ti && ti.enclosing) in hasNestedArgs() 7284 …if ((td && td.literal) || (ti && ti.enclosing) || (d && !d.isDataseg() && !(d.storage_class & STC.… in hasNestedArgs() 7289 else if (!enclosing) in hasNestedArgs() [all …]
|
H A D | aggregate.h | 93 Dsymbol *enclosing; variable
|
H A D | template.h | 256 Dsymbol *enclosing; // if referencing local symbols, this is the context variable
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | dscope.c | 50 freelist = s->enclosing; in alloc() 68 this->enclosing = NULL; in Scope() 155 s->enclosing = this; in push() 178 Scope *enc = enclosing; in pop() 180 if (enclosing) in pop() 182 enclosing->callSuper |= callSuper; in pop() 185 if (enclosing->fieldinit) in pop() 187 assert(fieldinit != enclosing->fieldinit); in pop() 190 enclosing->fieldinit[i] |= fieldinit[i]; in pop() 198 enclosing = freelist; in pop() [all …]
|
H A D | dstruct.c | 204 enclosing = NULL; in AggregateDeclaration() 866 return enclosing != NULL; in isNested() 873 if (enclosing) // if already nested in makeNested() 889 enclosing = fd; in makeNested() 900 enclosing = ad; in makeNested() 906 enclosing = ti->enclosing; in makeNested() 912 if (enclosing) in makeNested() 1432 if (enclosing || postblit || dtor) in isPOD()
|
H A D | dtemplate.c | 758 for (Scope *scx = sc; scx; scx = scx->enclosing) in evaluateConstraint() 931 ti->parent = ti->enclosing; in matchWithInstance() 2363 for (Scope *scx = sc; scx; scx = scx->enclosing) in functionResolve() 5839 this->enclosing = NULL; in TemplateInstance() 5869 this->enclosing = NULL; in TemplateInstance() 6184 parent = enclosing ? enclosing : tempdecl->parent; in semantic() 7405 if (ti && ti->enclosing) in hasNestedArgs() 7411 (ti && ti->enclosing) || in hasNestedArgs() 7422 if (!enclosing) in hasNestedArgs() 7423 enclosing = dparent; in hasNestedArgs() [all …]
|
H A D | access.c | 280 for (Scope *scx = sc; scx; scx = scx->enclosing) in hasProtectedAccess() 393 for (; sc; sc = sc->enclosing) in checkAccess()
|
H A D | scope.h | 71 Scope *enclosing; // enclosing Scope member
|
H A D | nspace.c | 48 for (Scope *sce = sc; 1; sce = sce->enclosing) in addMember()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/ |
H A D | c-gimplify.c | 161 tree enclosing; in add_block_to_enclosing() local 169 enclosing = gimple_bind_block (bind); in add_block_to_enclosing() 170 BLOCK_SUBBLOCKS (enclosing) = chainon (BLOCK_SUBBLOCKS (enclosing), block); in add_block_to_enclosing()
|
/netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
H A D | xcofflink.c | 696 asection *enclosing; in xcoff_read_internal_relocs() local 698 enclosing = xcoff_section_data (abfd, sec)->enclosing; in xcoff_read_internal_relocs() 700 if (enclosing != NULL in xcoff_read_internal_relocs() 701 && (coff_section_data (abfd, enclosing) == NULL in xcoff_read_internal_relocs() 702 || coff_section_data (abfd, enclosing)->relocs == NULL) in xcoff_read_internal_relocs() 704 && enclosing->reloc_count > 0) in xcoff_read_internal_relocs() 706 if (_bfd_coff_read_internal_relocs (abfd, enclosing, true, in xcoff_read_internal_relocs() 712 if (enclosing != NULL in xcoff_read_internal_relocs() 713 && coff_section_data (abfd, enclosing) != NULL in xcoff_read_internal_relocs() 714 && coff_section_data (abfd, enclosing)->relocs != NULL) in xcoff_read_internal_relocs() [all …]
|
H A D | libcoff-in.h | 213 asection *enclosing; member
|
/netbsd-src/external/gpl3/binutils/dist/bfd/ |
H A D | xcofflink.c | 694 asection *enclosing; in xcoff_read_internal_relocs() local 696 enclosing = xcoff_section_data (abfd, sec)->enclosing; in xcoff_read_internal_relocs() 698 if (enclosing != NULL in xcoff_read_internal_relocs() 699 && (coff_section_data (abfd, enclosing) == NULL in xcoff_read_internal_relocs() 700 || coff_section_data (abfd, enclosing)->relocs == NULL) in xcoff_read_internal_relocs() 702 && enclosing->reloc_count > 0) in xcoff_read_internal_relocs() 704 if (_bfd_coff_read_internal_relocs (abfd, enclosing, true, in xcoff_read_internal_relocs() 710 if (enclosing != NULL in xcoff_read_internal_relocs() 711 && coff_section_data (abfd, enclosing) != NULL in xcoff_read_internal_relocs() 712 && coff_section_data (abfd, enclosing)->relocs != NULL) in xcoff_read_internal_relocs() [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/ |
H A D | c-or1k.texi | 105 enclosing an operand inside of @samp{gotpchi}. Likewise, the 119 references. The @code{R_OR1K_GOT16} relocation can obtained by enclosing an 129 @code{R_OR1K_GOTOFF_AHI16} relocation can obtained by enclosing an operand 131 @code{R_OR1K_GOTOFF_SLO16} can be obtained by enclosing an operand inside of 147 be obtained by enclosing an operand inside of @samp{po}. For example: 157 relocation @code{R_OR1K_GOT_PG21} can be obtained by enclosing an 159 @code{R_OR1K_GOT_LO13} can be obtained by enclosing an operand inside of
|
/netbsd-src/external/gpl3/binutils/dist/gas/doc/ |
H A D | c-or1k.texi | 105 enclosing an operand inside of @samp{gotpchi}. Likewise, the 119 references. The @code{R_OR1K_GOT16} relocation can obtained by enclosing an 129 @code{R_OR1K_GOTOFF_AHI16} relocation can obtained by enclosing an operand 131 @code{R_OR1K_GOTOFF_SLO16} can be obtained by enclosing an operand inside of 147 be obtained by enclosing an operand inside of @samp{po}. For example: 157 relocation @code{R_OR1K_GOT_PG21} can be obtained by enclosing an 159 @code{R_OR1K_GOT_LO13} can be obtained by enclosing an operand inside of
|
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/ |
H A D | c-gimplify.cc | 630 tree enclosing; in add_block_to_enclosing() local 638 enclosing = gimple_bind_block (bind); in add_block_to_enclosing() 639 BLOCK_SUBBLOCKS (enclosing) = chainon (BLOCK_SUBBLOCKS (enclosing), block); in add_block_to_enclosing()
|
/netbsd-src/usr.bin/xlint/lint1/ |
H A D | init.c | 431 brace_level_new(const type_t *tp, brace_level *enclosing) in brace_level_new() argument 436 bl->bl_enclosing = enclosing; in brace_level_new() 602 initialization_new(sym_t *sym, initialization *enclosing) in initialization_new() argument 607 in->in_enclosing = enclosing; in initialization_new()
|
/netbsd-src/tests/lib/libcurses/ |
H A D | testframe.txt | 220 depends on the type of enclosing quotes. A null terminated string is 221 indicated by enclosing double (") quotes. A byte string, one that is 223 indicated by enclosing single (') quotes. A string of chtype 225 indicated by enclosing backticks (`), for this type of string pairs of 252 variables with the pipe (|) symbol and enclosing the entire list in
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/indent/ |
H A D | llvm.vim | 10 " enclosing '{'/'}' block
|
/netbsd-src/external/apache2/llvm/dist/clang/docs/ |
H A D | Modules.rst | 627 A header declaration specifies that a particular header is associated with the enclosing module. 643 …enclosing module. Specifically, when the module is built, the named header will be parsed and its … 706 Submodule declarations describe modules that are nested within their enclosing module. 714 … module. If the *module-declaration* has a ``framework`` specifier, the enclosing module shall hav… 779 …dules that will be re-exported to any translation unit that imports the enclosing module. Each imp… 883 … a library or framework against which a program should be linked if the enclosing module is import… 903 …* specifies the set of configuration macros that have an effect on the API of the enclosing module. 915 …nly be present on a top-level module, i.e., a module that is not nested within an enclosing module. 956 … with which the enclosing module conflicts. The specified module shall not have been imported in t…
|