/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | IssuesTest.cs | 86 var message1 = new OneofMerging { Nested = new Nested { X = 10 } };
in OneofMerging() 87 var message2 = new OneofMerging { Nested = new Nested { Y = 20 } };
in OneofMerging() 88 var expected = new OneofMerging { Nested = new Nested { X = 10, Y = 20 } };
in OneofMerging()
|
/third_party/rust/crates/serde/test_suite/tests/regression/ |
H A D | issue2371.rs | 4 pub struct Nested; structure names 10 nested: Nested, 20 nested: Nested, 30 nested: Nested, 40 nested: Nested,
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/ |
H A D | UnittestIssues.cs | 73 new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.OneofMerging), global::UnitTest.Issues.TestProtos.OneofMerging.Parser, new[]{ "Text", "Nested" }, new[]{ "Value" }, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.OneofMerging.Types.Nested), global::UnitTest.Issues.TestProtos.OneofMerging.Types.Nested.Parser, new[]{ "X", "Y" }, null, null, null, null)}), in UnittestIssuesReflection() 235 #region Nested types 373 #region Nested types 1604 #region Nested types 2463 case ValueOneofCase.Nested: in OneofMerging() 2464 Nested = other.Nested.Clone(); in OneofMerging() 2490 public global::UnitTest.Issues.TestProtos.OneofMerging.Types.Nested Neste property in UnitTest.Issues.TestProtos.OneofMerging 2503 Nested = 2, global() enumerator 2684 public sealed partial class Nested : pb::IMessage<Nested> global() class in UnitTest.Issues.TestProtos.OneofMerging.Types 2705 public Nested() { Nested() method in UnitTest.Issues.TestProtos.OneofMerging.Types.Nested 2712 public Nested(Nested other) : this() { Nested() method in UnitTest.Issues.TestProtos.OneofMerging.Types.Nested [all...] |
H A D | UnittestCustomOptionsProto3.cs | 494 #region Nested types 1191 #region Nested types 2578 #region Nested types 3647 #region Nested types
|
/third_party/typescript/tests/baselines/reference/ |
H A D | truthinessCallExpressionCoercion.js | 82 function B(a: Nested, b: Nested) { 96 interface Nested {
|
H A D | contextuallyTypedBindingInitializer.js | 9 interface Nested { 12 function ff({ nested = { show: v => v.toString() } }: Nested) {}
|
H A D | contextuallyTypedBindingInitializerNegative.js | 9 interface Nested { 12 function ff({ nested: nestedRename = { show: v => v } }: Nested) {}
|
H A D | privateNameInInExpression(target=es2022).js | 101 class Nested { 205 class Nested {
|
H A D | privateNameInInExpression(target=esnext).js | 101 class Nested { 205 class Nested {
|
/third_party/python/Lib/test/ |
H A D | test_with.py | 53 class Nested(object): class 89 class MockNested(Nested): 91 Nested.__init__(self, *managers) 98 return Nested.__enter__(self) 103 return Nested.__exit__(self, *exc_info) 292 with Nested(mock_contextmanager_generator()): 299 with Nested(m) as foo: 307 with Nested(m) as (foo): 313 with Nested(mock_contextmanager_generator()) as (foo, bar):
|
H A D | pickletester.py | 2735 global Nested 2736 class Nested: class 2742 for obj in [Nested.A, Nested.A.B, Nested.A.B.C]: 2772 class Nested: class in AbstractPickleTests.test_py_methods.PyMethodsTest 2773 "Nested class" 2779 assert cls is PyMethodsTest.Nested 2782 assert isinstance(self, PyMethodsTest.Nested) 2789 PyMethodsTest.Nested 2820 class Nested(str): global() class in AbstractPickleTests.test_c_methods.Subclass [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | repeated_field_unittest.cc | 1202 typedef TestAllTypes::NestedMessage Nested; in TEST() typedef 1203 std::vector<Nested> values; in TEST() 1204 values.push_back(Nested()); in TEST() 1206 values.push_back(Nested()); in TEST() 1209 RepeatedPtrField<Nested> field(values.begin(), values.end()); in TEST() 1214 RepeatedPtrField<Nested> other(field.begin(), field.end()); in TEST() 1863 typedef TestAllTypes::NestedMessage Nested; typedef in google::protobuf::__anon17052::RepeatedFieldInsertionIteratorsTest 1864 Nested nesteds[2]; 1865 std::vector<Nested*> nested_ptrs; 1902 nested_ptrs.push_back(new Nested); in SetUp() [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | template.hpp | 92 class Nested { class
|
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | calculate_array_length_test.cc | 171 TEST_F(CalculateArrayLengthTest, Nested) { in TEST_F()
|
H A D | loop_to_for_loop_test.cc | 103 TEST_F(LoopToForLoopTest, Nested) { in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | TypeDumpVisitor.cpp | 35 ENUM_ENTRY(ClassOptions, Nested), 466 NestedTypeRecord &Nested) { in visitKnownMember() 467 printTypeIndex("Type", Nested.getNestedType()); in visitKnownMember() 468 W->printString("Name", Nested.getName()); in visitKnownMember() 465 visitKnownMember(CVMemberRecord &CVR, NestedTypeRecord &Nested) visitKnownMember() argument
|
H A D | EnumTables.cpp | 307 CV_ENUM_CLASS_ENT(ClassOptions, Nested),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeTypeUDT.cpp | 187 return (Tag->Options & ClassOptions::Nested) != ClassOptions::None; in isNested()
|
H A D | NativeTypeEnum.cpp | 315 return bool(Record->getOptions() & codeview::ClassOptions::Nested); in isNested()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CodeView.h | 206 Nested = 0x0008, member in llvm::codeview::CallingConvention::ClassOptions
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | compressed_tuple_test.cc | 238 TEST(CompressedTupleTest, Nested) { in TEST()
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | Descriptor.cs | 1373 #region Nested types 2849 #region Nested types 3464 #region Nested types 5977 #region Nested types 7032 #region Nested types 8438 #region Nested types 8928 #region Nested types 9387 #region Nested types 9956 #region Nested types
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 2004 // Put the Nested flag on a type if it appears immediately inside a tag type. in getCommonClassOptions() 2009 CO |= ClassOptions::Nested; in getCommonClassOptions() 2430 for (const DIType *Nested : Info.NestedTypes) { in lowerRecordFieldList() 2431 NestedTypeRecord R(getTypeIndex(Nested), Nested->getName()); in lowerRecordFieldList()
|
/third_party/node/deps/v8/tools/ |
H A D | windbg.js | 693 print(`Nested depth level: ${hsd.level}`);
|
/third_party/protobuf/csharp/src/AddressBook/ |
H A D | Addressbook.cs | 367 #region Nested types
|