Home
last modified time | relevance | path

Searched refs:shadowed (Results 1 – 25 of 41) sorted by relevance

12

/openbsd-src/gnu/gcc/gcc/cp/
H A Dname-lookup.c1114 tree shadowed; in check_for_out_of_scope_variable() local
1120 shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (decl) in check_for_out_of_scope_variable()
1122 while (shadowed != NULL_TREE && TREE_CODE (shadowed) == VAR_DECL in check_for_out_of_scope_variable()
1123 && DECL_DEAD_FOR_LOCAL (shadowed)) in check_for_out_of_scope_variable()
1124 shadowed = DECL_HAS_SHADOWED_FOR_VAR_P (shadowed) in check_for_out_of_scope_variable()
1125 ? DECL_SHADOWED_FOR_VAR (shadowed) : NULL_TREE; in check_for_out_of_scope_variable()
1126 if (!shadowed) in check_for_out_of_scope_variable()
1127 shadowed = IDENTIFIER_NAMESPACE_VALUE (DECL_NAME (decl)); in check_for_out_of_scope_variable()
1128 if (shadowed) in check_for_out_of_scope_variable()
1134 shadowed); in check_for_out_of_scope_variable()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dsearch27.t65 my $shadowed = join "|", sort keys %count;
66 ok $shadowed, "squaa::Vliff";
H A Dsearch25.t68 my $shadowed = join "|", sort keys %count;
69 is $shadowed, "squaa::Vliff";
H A Dsearch22.t68 my $shadowed = join "|", sort ascii_order keys %count;
69 is $shadowed, "hinkhonk::Glunk|hinkhonk::Vliff|perlthng|squaa::Vliff";
/openbsd-src/sys/uvm/
H A Duvm_fault.c641 boolean_t shadowed; in uvm_fault()
669 shadowed = uvm_fault_upper_lookup(&ufi, &flt, anons, pages); in uvm_fault_check()
670 if (shadowed == TRUE) { in uvm_fault_check()
677 * if the desired page is not shadowed by the amap and in uvm_fault_check()
897 boolean_t shadowed; in uvm_fault_upper_lookup()
912 shadowed = FALSE;
927 shadowed = TRUE; in uvm_fault_upper()
966 return shadowed; in uvm_fault_upper()
1254 * now, if the desired page is not shadowed by the amap and we have in uvm_fault_lower()
574 boolean_t shadowed; uvm_fault() local
838 boolean_t shadowed; uvm_fault_upper_lookup() local
/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Ddecl.c273 tree shadowed; member
1001 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
1017 if (b->shadowed) in pop_labeled_block()
1018 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (b->shadowed)) = in pop_labeled_block()
1019 TREE_VALUE (b->shadowed); in pop_labeled_block()
1142 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
1376 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Ddecl.c1917 tree shadowed; in poplevel_class() local
1933 for (shadowed = level->class_shadowed; in poplevel_class()
1934 shadowed; in poplevel_class()
1935 shadowed = TREE_CHAIN (shadowed)) in poplevel_class()
1936 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed)) = NULL_TREE; in poplevel_class()
1945 for (shadowed = b->class_shadowed; in poplevel_class()
1946 shadowed; in poplevel_class()
1947 shadowed = TREE_CHAIN (shadowed)) in poplevel_class()
1951 binding = IDENTIFIER_BINDING (TREE_PURPOSE (shadowed)); in poplevel_class()
1956 IDENTIFIER_CLASS_VALUE (TREE_PURPOSE (shadowed)) in poplevel_class()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/
H A Dprivate-2.m48 /* The private variable can be shadowed without warnings, because
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A DBUGS25 it may not be complete yet, and C macros are not shadowed. Please consult
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A DBUGS25 it may not be complete yet, and C macros are not shadowed. Please consult
/openbsd-src/gnu/gcc/gcc/
H A Dc-decl.c210 struct c_binding *shadowed; /* the innermost decl shadowed by this one */ member
494 b->shadowed = 0; in bind()
531 here = &(*here)->shadowed; in bind()
533 b->shadowed = *here; in bind()
773 I_LABEL_BINDING (b->id) = b->shadowed; in pop_scope()
786 I_TAG_BINDING (b->id) = b->shadowed; in pop_scope()
860 I_SYMBOL_BINDING (b->id) = b->shadowed; in pop_scope()
861 if (b->shadowed && b->shadowed->type) in pop_scope()
862 TREE_TYPE (b->shadowed->decl) = b->shadowed->type; in pop_scope()
1934 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed) in warn_if_shadowing()
[all …]
/openbsd-src/sys/dev/pci/drm/i915/gvt/
H A Dgtt.h168 bool shadowed; member
H A Dgtt.c1762 if (!mm->ppgtt_mm.shadowed) in invalidate_ppgtt_mm()
1779 mm->ppgtt_mm.shadowed = false; in invalidate_ppgtt_mm()
1793 if (mm->ppgtt_mm.shadowed) in shadow_ppgtt_mm()
1799 mm->ppgtt_mm.shadowed = true; in shadow_ppgtt_mm()
2770 if (mm->ppgtt_mm.shadowed) in intel_vgpu_invalidate_ppgtt()
H A Dscheduler.c697 !workload->shadow_mm->ppgtt_mm.shadowed) { in intel_vgpu_shadow_mm_pin()
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/
H A DTargetCallingConv.td117 /// which became shadowed, when some register is used.
134 /// registers to be shadowed. Note that, unlike CCAssignToRegWithShadow, this
/openbsd-src/gnu/usr.bin/perl/dist/constant/
H A DChanges79 site (because it get shadowed). Thanks to Imacat.
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dc-decl.c183 tree shadowed; member
618 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
751 newlevel->shadowed = shadowed_labels; in push_label_level()
802 shadowed_labels = level->shadowed; in pop_label_level()
2001 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
6093 for (link = current_binding_level->shadowed; in store_parm_decls()
6097 current_binding_level->shadowed = 0; in store_parm_decls()
H A Dc-parse.in3660 typedefs, and hence are shadowed by local declarations. */
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DDiagnosticCommonKinds.td107 def err_module_shadowed : Error<"import of shadowed module '%0'">, DefaultFatal;
109 "build a shadowed submodule '%0'">, DefaultFatal;
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/
H A DChanges273 the new xsubpp will be shadowed by another, existing xsubpp
/openbsd-src/gnu/usr.bin/perl/cpan/Encode/ucm/
H A DmacKorean.ucm74 <U0031><U20DE><UF87B> \xA3\x41 |3 # DIGIT ONE + COMBINING ENCLOSING SQUARE, sans, shadowed
81 <U0032><U20DE><UF87B> \xA3\x42 |3 # DIGIT TWO + COMBINING ENCLOSING SQUARE, sans, shadowed
88 <U0033><U20DE><UF87B> \xA3\x43 |3 # DIGIT THREE + COMBINING ENCLOSING SQUARE, sans, shadowed
95 <U0034><U20DE><UF87B> \xA3\x44 |3 # DIGIT FOUR + COMBINING ENCLOSING SQUARE, sans, shadowed
102 <U0035><U20DE><UF87B> \xA3\x45 |3 # DIGIT FIVE + COMBINING ENCLOSING SQUARE, sans, shadowed
109 <U0036><U20DE><UF87B> \xA3\x46 |3 # DIGIT SIX + COMBINING ENCLOSING SQUARE, sans, shadowed
116 <U0037><U20DE><UF87B> \xA3\x47 |3 # DIGIT SEVEN + COMBINING ENCLOSING SQUARE, sans, shadowed
123 <U0038><U20DE><UF87B> \xA3\x48 |3 # DIGIT EIGHT + COMBINING ENCLOSING SQUARE, sans, shadowed
130 <U0039><U20DE><UF87B> \xA3\x49 |3 # DIGIT NINE + COMBINING ENCLOSING SQUARE, sans, shadowed
9097 <UF864><U005B><U0031><U0030><U005D> \xA3\x4A |3 # number ten in enclosing square, sans, shadowed
[all …]
/openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl05.rst703 shadowed variable).
/openbsd-src/gnu/usr.bin/binutils/cpu/
H A Dfrv.cpu1808 ; These registers are shadowed onto h-gr
1823 ; These registers are shadowed onto h-gr
1871 ; These registers are shadowed onto h-fr
1887 ; These registers are shadowed onto h-fr
1902 ; These registers are shadowed onto h-fr
1927 ; These registers are shadowed onto h-fr
2011 ; These registers are shadowed onto h-cpr
/openbsd-src/gnu/usr.bin/binutils-2.17/cpu/
H A Dfrv.cpu2240 ; These registers are shadowed onto h-gr
2255 ; These registers are shadowed onto h-gr
2303 ; These registers are shadowed onto h-fr
2319 ; These registers are shadowed onto h-fr
2334 ; These registers are shadowed onto h-fr
2359 ; These registers are shadowed onto h-fr
2443 ; These registers are shadowed onto h-cpr
/openbsd-src/gnu/usr.bin/perl/lib/unicore/
H A DIndex.txt1579 Dingbats, Drop-shadowed 274D
1771 Drop-shadowed Dingbats 274D

12