/third_party/typescript/tests/baselines/reference/ |
H A D | typeofInternalModules.js | 2 module Outer { 11 import importInst = Outer.instantiated; 12 import importUninst = Outer.uninstantiated; 18 var x4: Outer = Outer; 20 x5 = Outer; 21 x5 = Outer.instantiated; 23 var x7: typeof Outer = Outer; 28 var Outer;
variable [all...] |
H A D | constEnumOnlyModuleMerging.js | 2 module Outer { 6 module Outer { 11 import O = Outer; 17 var Outer;
variable 18 (function (Outer) {
19 Outer.x = 1;
20 })(Outer || (Outer = {}));
23 var O = Outer;
|
H A D | innerModExport1.js | 2 module Outer { 20 Outer.ExportFunc();
23 var Outer;
variable 24 (function (Outer) {
34 Outer.outer_var_export = 0;
36 Outer.outerFuncExport = outerFuncExport;
37 })(Outer || (Outer = {}));
38 Outer.ExportFunc();
|
H A D | innerModExport2.js | 2 module Outer { 21 Outer.NonExportFunc();
24 var Outer;
variable 25 (function (Outer) {
36 Outer.outer_var_export = 0;
38 Outer.outerFuncExport = outerFuncExport;
39 })(Outer || (Outer = {}));
40 Outer.NonExportFunc();
|
H A D | privacyCheckTypeOfInvisibleModuleError.js | 2 module Outer { 12 var Outer;
variable 13 (function (Outer) {
17 })(Outer || (Outer = {}));
21 declare module Outer {
|
H A D | privacyCheckTypeOfInvisibleModuleNoError.js | 2 module Outer { 12 var Outer;
variable 13 (function (Outer) {
17 })(Outer || (Outer = {}));
21 declare module Outer {
|
H A D | duplicateAnonymousInners1.js | 11 export var Outer=0; 23 // Outer should show up in intellisense 42 Foo.Outer = 0;
52 // Outer should show up in intellisense
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | issue-573-layout-test-failures.rs | 10 pub struct Outer { structure names 16 pub ar: Outer, 47 ::std::mem::size_of::<Outer>(), in __bindgen_test_layout_Outer_open0_int_close0_instantiation() 49 concat!("Size of template specialization: ", stringify!(Outer)) in __bindgen_test_layout_Outer_open0_int_close0_instantiation() 52 ::std::mem::align_of::<Outer>(), in __bindgen_test_layout_Outer_open0_int_close0_instantiation() 54 concat!("Alignment of template specialization: ", stringify!(Outer)) in __bindgen_test_layout_Outer_open0_int_close0_instantiation()
|
H A D | constant-non-specialized-tp.rs | 15 pub struct Outer { structure names
|
/third_party/typescript/tests/baselines/reference/extractFunction/ |
H A D | extractFunction24.js | 2 function Outer() { function 10 function Outer() { 21 // ==SCOPE::Extract to inner function in function 'Outer'== 22 function Outer() { 34 function Outer() {
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | generic.rs | 11 struct Outer<T: Args> { in generic_struct_flatten() structure names 17 Outer { in generic_struct_flatten() 20 Outer::parse_from(["--answer", "42"]) in generic_struct_flatten() 32 struct Outer<T> in generic_struct_flatten_w_where_clause() structure names 41 Outer { in generic_struct_flatten_w_where_clause() 44 Outer::parse_from(["--answer", "42"]) in generic_struct_flatten_w_where_clause()
|
H A D | macros.rs | 24 struct Outer { in use_option() structure names
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | CFG.cpp | 172 const Loop *Outer = nullptr; in isPotentiallyReachableFromMany() local 174 Outer = getOutermostLoop(LI, BB); in isPotentiallyReachableFromMany() 178 // excluded block. Clear Outer so we process BB's successors. in isPotentiallyReachableFromMany() 179 if (LoopsWithHoles.count(Outer)) in isPotentiallyReachableFromMany() 180 Outer = nullptr; in isPotentiallyReachableFromMany() 181 if (StopLoop && Outer == StopLoop) in isPotentiallyReachableFromMany() 191 if (Outer) { in isPotentiallyReachableFromMany() 195 Outer->getExitBlocks(Worklist); in isPotentiallyReachableFromMany()
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | atomics_validation_test.cc | 87 // struct Outer { m : array<Inner, 4>; }; in TEST_F() 88 // var<private> g : Outer; in TEST_F() 92 auto* Outer = Structure("Outer", {Member("m", ty.Of(Inner))}); in TEST_F() local 93 Global("g", ty.Of(Outer), ast::StorageClass::kPrivate); in TEST_F() 99 "note: atomic sub-type of 'Outer' is declared here"); in TEST_F() 105 // struct Outer { m : array<Inner, 4>; }; in TEST_F() 106 // var<private> g : Outer; in TEST_F() 110 auto* Outer = Structure("Outer", {Membe in TEST_F() local 248 auto* Outer = TEST_F() local 268 auto* Outer = TEST_F() local [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | issue-573-layout-test-failures.hpp | 5 class Outer { class 11 Outer<int> ar;
|
H A D | constant-non-specialized-tp.hpp | 11 struct Outer { struct
|
/third_party/node/src/ |
H A D | util-inl.h | 166 template <typename Inner, typename Outer> 167 constexpr uintptr_t OffsetOf(Inner Outer::*field) { in OffsetOf() argument 168 return reinterpret_cast<uintptr_t>(&(static_cast<Outer*>(nullptr)->*field)); in OffsetOf() 171 template <typename Inner, typename Outer> 172 ContainerOfHelper<Inner, Outer>::ContainerOfHelper(Inner Outer::*field, in ContainerOfHelper() argument 175 reinterpret_cast<Outer*>( in ContainerOfHelper() 178 template <typename Inner, typename Outer> 180 ContainerOfHelper<Inner, Outer>::operator TypeName*() const { in operator TypeName*() 184 template <typename Inner, typename Outer> 185 ContainerOf(Inner Outer::*field, Inner* pointer) ContainerOf() argument [all...] |
H A D | util.h | 262 template <typename Inner, typename Outer> 265 inline ContainerOfHelper(Inner Outer::*field, Inner* pointer); 269 Outer* const pointer_; 274 template <typename Inner, typename Outer> 275 constexpr ContainerOfHelper<Inner, Outer> ContainerOf(Inner Outer::*field,
|
/third_party/rust/crates/serde/test_suite/tests/ |
H A D | test_macros.rs | 1544 enum Outer { in test_enum_in_internally_tagged_enum() enum 1557 &Outer::Inner(Inner::Unit), in test_enum_in_internally_tagged_enum() 1569 &Outer::Inner(Inner::Newtype(1)), in test_enum_in_internally_tagged_enum() 1584 &Outer::Inner(Inner::Tuple(1, 1)), in test_enum_in_internally_tagged_enum() 1605 &Outer::Inner(Inner::Struct { f: 1 }), in test_enum_in_internally_tagged_enum() 1626 &Outer::Inner(Inner::Struct { f: 1 }), in test_enum_in_internally_tagged_enum() 1771 enum Outer { in test_enum_in_untagged_enum() enum 1784 &Outer::Inner(Inner::Unit), in test_enum_in_untagged_enum() 1792 &Outer::Inner(Inner::Newtype(1)), in test_enum_in_untagged_enum() 1803 &Outer in test_enum_in_untagged_enum() [all...] |
/third_party/rust/crates/syn/src/ |
H A D | attr.rs | 20 /// - Outer attributes like `#[repr(transparent)]`. These appear outside or 26 /// - Outer one-line doc comments like `/// Example`. 30 /// - Outer documentation blocks `/** Example */`. 425 /// # Outer attributes 438 Outer, 598 AttrStyle::Outer => true, in outer() 609 AttrStyle::Outer => false, in inner() 644 style: AttrStyle::Outer, 720 AttrStyle::Outer => "#", in fmt()
|
/third_party/python/Lib/test/ |
H A D | test_enum.py | 1028 class Outer(Enum): class 1034 self.assertTrue(isinstance(Outer.Inner, Outer)) 1035 self.assertEqual(Outer.a.value, 1) 1036 self.assertEqual(Outer.Inner.value.foo.value, 10) 1038 list(Outer.Inner.value), 1039 [Outer.Inner.value.foo, Outer.Inner.value.bar], 1042 list(Outer), 1043 [Outer 1052 class Outer(Enum): global() class 1071 class Outer(Enum): global() class 1116 class Outer(Enum): global() class [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopInterchange.cpp | 328 LoopInterchangeLegality(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeLegality() argument 330 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {} in LoopInterchangeLegality() 347 bool tightlyNested(Loop *Outer, Loop *Inner); 375 LoopInterchangeProfitability(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeProfitability() argument 377 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {} in LoopInterchangeProfitability() 399 LoopInterchangeTransform(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeTransform() argument 403 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), LI(LI), DT(DT), in LoopInterchangeTransform() 1150 /// Outer preheader 1151 // Outer header 1157 // Outer latc [all...] |
/third_party/protobuf/ruby/tests/ |
H A D | basic.rb | 378 o = Outer.new 380 raw = Outer.encode(o) 385 assert_equal o, Outer.decode(raw)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 1553 Instruction &Outer, in foldSPFofSPF() 1555 if (Outer.getType() != Inner->getType()) in foldSPFofSPF() 1563 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1572 return replaceInstUsesWith(Outer, C); in foldSPFofSPF() 1585 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1593 Outer.replaceUsesOfWith(Inner, A); in foldSPFofSPF() 1594 return &Outer; in foldSPFofSPF() 1607 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1613 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1624 return replaceInstUsesWith(Outer, NewS in foldSPFofSPF() 1550 foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1, Value *A, Value *B, Instruction &Outer, SelectPatternFlavor SPF2, Value *C) foldSPFofSPF() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | LoopInfo.h | 1125 // Check if Outer contains Inner; with the null loop counting as the in movementPreservesLCSSAForm() 1127 auto Contains = [](const Loop *Outer, const Loop *Inner) { in movementPreservesLCSSAForm() 1128 return !Outer || Outer->contains(Inner); in movementPreservesLCSSAForm()
|