/third_party/typescript/tests/baselines/reference/ |
H A D | classMemberInitializerWithLamdaScoping.js | 19 var field1: string; variable 21 constructor(private field1: string) { 24 console.log(field1); // But this should be error as the field1 will resolve to var field1 26 // it would resolve to private field1 and thats not what user intended here. 29 console.log(field1); // This shouldnt be error as its a static property 49 var field1;
variable 51 function Test1(field1) {
52 this.field1 [all...] |
H A D | classMemberInitializerWithLamdaScoping2.js | 4 var field1: string; variable 11 constructor(private field1: string) { 14 console.log(field1); // But this should be error as the field1 will resolve to var field1 16 // it would resolve to private field1 and thats not what user intended here. 21 var field1;
variable 24 function Test1(field1) {
25 this.field1 = field1;
[all...] |
H A D | classMemberInitializerWithLamdaScoping3.js | 4 var field1: string; variable 11 constructor(private field1: string) { 14 console.log(field1); // But this should be error as the field1 will resolve to var field1 16 // it would resolve to private field1 and thats not what user intended here. 21 var field1;
variable 27 function Test1(field1) {
28 this.field1 = field1;
[all...] |
H A D | decoratorWithNegativeLiteralTypeNoCrash.js | 4 public field1: -1 = -1; 20 this.field1 = -1;
25 ], A.prototype, "field1", void 0);
|
H A D | callSignaturesShouldBeResolvedBeforeSpecialization.js | 4 field1: I1<boolean>;
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | binary_storage_test.js | 16 const /** !Field */ field1 = 41 storage.set(1, field1); 45 expect(storage.get(1)).toBe(field1); 52 storage.set(DEFAULT_PIVOT + 1, field1); 55 expect(storage.get(DEFAULT_PIVOT + 1)).toBe(field1); 62 storage.set(0, field1); 66 expect(storage.get(0)).toBe(field1); 73 storage.set(0, field1); 78 expect(storage.get(0)).toBe(field1); 95 storage.set(100001, field1); [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | initializer-entry-defined-twice.c | 5 int field1; member 10 .field1 = 0, 11 .field1 = 0 36 struct empty field1; member 41 .field1 = { },
|
/third_party/rust/crates/pin-utils/tests/ |
H A D | projection.rs | 6 field1: T1, 11 unsafe_pinned!(field1: T1); 19 let foo = Foo { field1: 1, field2: 2 }; in projection() 22 let x1: Pin<&mut i32> = foo.as_mut().field1(); in projection()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | LazyFieldLiteTest.java | 143 LazyFieldLite field1 = createLazyFieldLiteFromMessage(message1); in testMergeBeforeParsing() 147 field1.merge(field2); in testMergeBeforeParsing() 150 assertEquals(expected, field1.getValue(TestAllTypes.getDefaultInstance())); in testMergeBeforeParsing() 160 LazyFieldLite field1 = LazyFieldLite.fromValue(message1); in testMergeOneNotParsed() 161 field1.getValue(TestAllTypes.getDefaultInstance()); // Force parsing. in testMergeOneNotParsed() 163 field1.merge(field2); in testMergeOneNotParsed() 164 assertEquals(expected, field1.getValue(TestAllTypes.getDefaultInstance())); in testMergeOneNotParsed() 167 field1 = LazyFieldLite.fromValue(message1); in testMergeOneNotParsed() 170 field1.merge(field2); in testMergeOneNotParsed() 171 assertEquals(expected, field1 in testMergeOneNotParsed() [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | repeated_field_unittest.cc | 148 RepeatedField<int> field1; in TEST() local 151 field1.Add(5); in TEST() 152 field1.Add(42); in TEST() 154 EXPECT_FALSE(field1.empty()); in TEST() 155 EXPECT_EQ(field1.size(), 2); in TEST() 156 EXPECT_EQ(field1.Get(0), 5); in TEST() 157 EXPECT_EQ(field1.Get(1), 42); in TEST() 162 field1.Swap(&field2); in TEST() 164 EXPECT_TRUE(field1.empty()); in TEST() 165 EXPECT_EQ(field1 in TEST() 174 RepeatedField<int> field1; TEST() local 194 RepeatedField<int> field1; TEST() local 885 RepeatedPtrField<std::string> field1; TEST() local 915 RepeatedPtrField<std::string> field1; TEST() local 936 RepeatedPtrField<std::string> field1; TEST() local [all...] |
H A D | generated_message_reflection.cc | 504 const FieldDescriptor* field1 = nullptr; in SwapOneofField() local 506 field1 = descriptor_->FindFieldByNumber(oneof_case1); in SwapOneofField() 508 switch (field1->cpp_type()) { in SwapOneofField() 511 temp_##TYPE = GetField<TYPE>(*message1, field1); \ in SwapOneofField() 524 temp_message = ReleaseMessage(message1, field1); in SwapOneofField() 528 temp_string = GetString(*message1, field1); in SwapOneofField() 532 GOOGLE_LOG(FATAL) << "Unimplemented type: " << field1->cpp_type(); in SwapOneofField() 571 switch (field1->cpp_type()) { in SwapOneofField() 574 SetField<TYPE>(message2, field1, temp_##TYPE); \ in SwapOneofField() 587 SetAllocatedMessage(message2, temp_message, field1); in SwapOneofField() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | formattedval_iterimpl.cpp | 98 int32_t field1 = fFields.elementAti(i * 4 + 1); in addOverlapSpans() local 101 if (field1 != field2) { in addOverlapSpans() 133 int32_t field1 = fFields.elementAti(i*4 + 1); in sort() local 150 } else if (field1 != field2) { in sort() 152 comparison = field2 - field1; in sort() 162 fFields.setElementAt(field1, i*4 + 5); in sort()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | formattedval_iterimpl.cpp | 98 int32_t field1 = fFields.elementAti(i * 4 + 1); in addOverlapSpans() local 101 if (field1 != field2) { in addOverlapSpans() 133 int32_t field1 = fFields.elementAti(i*4 + 1); in sort() local 150 } else if (field1 != field2) { in sort() 152 comparison = field2 - field1; in sort() 162 fFields.setElementAt(field1, i*4 + 5); in sort()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | formattedval_iterimpl.cpp | 98 int32_t field1 = fFields.elementAti(i * 4 + 1); in addOverlapSpans() local 101 if (field1 != field2) { in addOverlapSpans() 133 int32_t field1 = fFields.elementAti(i*4 + 1); in sort() local 150 } else if (field1 != field2) { in sort() 152 comparison = field2 - field1; in sort() 162 fFields.setElementAt(field1, i*4 + 5); in sort()
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_context.cc | 58 // are different). name1 and name2 are field1 and field2's camel-case name 60 bool IsConflicting(const FieldDescriptor* field1, const std::string& name1, in IsConflicting() argument 63 if (field1->is_repeated()) { in IsConflicting() 68 // field1 is repeated, and field2 is not. in IsConflicting() 70 *info = "both repeated field \"" + field1->name() + "\" and singular " + in IsConflicting() 76 *info = "both repeated field \"" + field1->name() + "\" and singular " + in IsConflicting() 90 return IsConflicting(field2, name2, field1, name1, info); in IsConflicting()
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.02/15.02.03/ |
H A D | 15.02.03-008.js | 16 field1: 5, 22 field1: 5,
|
H A D | 15.02.03-011.js | 16 field1: 5, 22 field1: 5,
|
H A D | 15.02.03-006.js | 16 field1: 5, 22 field1: 5,
|
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | parser_unittest.cc | 2814 const FieldDescriptorProto& field1 = file_.message_type(0).field(0); in TEST_F() local 2817 EXPECT_TRUE(HasSpan('a', 'i', field1)); in TEST_F() 2818 EXPECT_TRUE(HasSpan('a', 'b', field1, "label")); in TEST_F() 2819 EXPECT_TRUE(HasSpan('c', 'd', field1, "type")); in TEST_F() 2820 EXPECT_TRUE(HasSpan('e', 'f', field1, "name")); in TEST_F() 2821 EXPECT_TRUE(HasSpan('g', 'h', field1, "number")); in TEST_F() 2843 const FieldDescriptorProto& field1 = file_.message_type(0).field(0); in TEST_F() local 2846 EXPECT_TRUE(HasSpan('a', 'g', field1)); in TEST_F() 2847 EXPECT_TRUE(HasSpan('a', 'b', field1, "type")); in TEST_F() 2848 EXPECT_TRUE(HasSpan('c', 'd', field1, "nam in TEST_F() 2874 const FieldDescriptorProto& field1 = file_.extension(0); TEST_F() local 2918 const FieldDescriptorProto& field1 = file_.message_type(0).extension(0); TEST_F() local [all...] |
/third_party/protobuf/src/google/protobuf/util/ |
H A D | message_differencer.cc | 469 bool MessageDifferencer::FieldBefore(const FieldDescriptor* field1, in FieldBefore() argument 473 if (field1 == NULL) { in FieldBefore() 482 return (field1->number() < field2->number()); in FieldBefore() 680 const FieldDescriptor* field1 = fields1[index1]; in CombineFields() local 683 if (FieldBefore(field1, field2)) { in CombineFields() 688 } else if (FieldBefore(field2, field1)) { in CombineFields() 721 const FieldDescriptor* field1 = message1_fields[field_index1]; in CompareWithFieldsInternal() local 725 if (field1 == NULL && field2 == NULL) { in CompareWithFieldsInternal() 730 if (FieldBefore(field1, field2)) { in CompareWithFieldsInternal() 732 if (IsIgnored(message1, message2, field1, *parent_field in CompareWithFieldsInternal() [all...] |
/third_party/libcoap/src/ |
H A D | coap_async.c | 22 #define SEARCH_PAIR(head,out,field1,val1,field2,val2,field3,val3) \ 23 SEARCH_PAIR3(head,out,field1,val1,field2,val2,field3,val3,next) 25 #define SEARCH_PAIR3(head,out,field1,val1,field2,val2,field3,val3,next) \ 28 if ((out)->field1 == (val1) && (out)->field2 == (val2) && \
|
/third_party/protobuf/js/ |
H A D | message.js | 1650 * @param {*} field1 The first field. 1654 jspb.Message.compareFields = function(field1, field2) { 1656 if (field1 == field2) return true; 1658 if (!goog.isObject(field1) || !goog.isObject(field2)) { 1660 if ((typeof field1 === 'number' && isNaN(field1)) || 1663 return String(field1) == String(field2); 1671 field1 = /** @type {!Object} */(field1); 1673 if (field1 [all...] |
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | message_test.py | 459 generator.field1.extend(messages) 464 generator.group1.add().field1.MergeFrom(messages[0]) 465 generator.group1.add().field1.MergeFrom(messages[1]) 466 generator.group1.add().field1.MergeFrom(messages[2]) 467 generator.group2.add().field1.MergeFrom(messages[0]) 468 generator.group2.add().field1.MergeFrom(messages[1]) 469 generator.group2.add().field1.MergeFrom(messages[2])
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_weave.c | 104 const int field1 = weave ? s->first_field : (!s->first_field); in weave_slice() local 113 av_image_copy_plane(out->data[i] + out->linesize[i] * field1 + in weave_slice() 118 s->linesize[i], end - start - compensation * field1); in weave_slice()
|
/third_party/jerryscript/tests/jerry-test-suite/15/15.02/15.02.02/ |
H A D | 15.02.02-004.js | 16 field1: Number,
|