Searched refs:expectedTag (Results 1 – 6 of 6) sorted by relevance
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | CodedInputStreamExtensions.cs | 39 public static void AssertNextTag(this CodedInputStream input, uint expectedTag) in AssertNextTag() argument 42 Assert.AreEqual(expectedTag, tag); in AssertNextTag()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | CodedInputStreamExtensions.cs | 39 public static void AssertNextTag(this CodedInputStream input, uint expectedTag) in AssertNextTag() argument 42 Assert.AreEqual(expectedTag, tag); in AssertNextTag()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | ParsingPrimitivesWrappers.cs | 234 const int expectedTag = 8; in ReadUInt64Wrapper() 252 if (buffer[state.bufferPos++] != expectedTag) in ReadUInt64Wrapper() 275 const int expectedTag = 8; in ReadUInt64WrapperSlow() 285 if (ParsingPrimitives.ParseTag(ref buffer, ref state) == expectedTag) in ReadUInt64WrapperSlow()
|
D | ParsingPrimitivesMessages.cs | 222 private static void CheckLastTagWas(ref ParserInternalState state, uint expectedTag) in CheckLastTagWas() argument 224 if (state.lastTag != expectedTag) { in CheckLastTagWas()
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | cbiapts.c | 669 int32_t tag, expectedTag; in TestBreakIteratorRules() local 671 expectedTag = tagMap[tags[i]&0xf]; in TestBreakIteratorRules() 672 if (tag != expectedTag) { in TestBreakIteratorRules() 674 pos, expectedTag, tag); in TestBreakIteratorRules()
|
/third_party/typescript/src/harness/ |
D | fourslashImpl.ts | 1392 ts.zipWith(tags, actualQuickInfo.tags, (expectedTag, actualTag) => { 1393 assert.equal(expectedTag.name, actualTag.name); 1394 …assert.equal(expectedTag.text, actualTag.text, this.messageAtLastKnownMarker("QuickInfo tag " + ac… 1583 ts.zipWith((options.tags || ts.emptyArray), actualTags, (expectedTag, actualTag) => { 1584 assert.equal(actualTag.name, expectedTag.name); 1585 …assert.equal(actualTag.text, expectedTag.text, this.assertionMessageAtLastKnownMarker("signature h…
|