/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/ |
D | ParseRawPrimitivesBenchmark.cs | 112 CodedInputStream cis = new CodedInputStream(varintInputBuffers[encodedSize]); in ParseRawVarint32_CodedInputStream() 116 sum += cis.ReadInt32(); in ParseRawVarint32_CodedInputStream() 151 CodedInputStream cis = new CodedInputStream(varintInputBuffers[encodedSize]); in ParseRawVarint64_CodedInputStream() 155 sum += cis.ReadInt64(); in ParseRawVarint64_CodedInputStream() 186 CodedInputStream cis = new CodedInputStream(fixedIntInputBuffer); in ParseFixed32_CodedInputStream() 190 sum += cis.ReadFixed32(); in ParseFixed32_CodedInputStream() 212 CodedInputStream cis = new CodedInputStream(fixedIntInputBuffer); in ParseFixed64_CodedInputStream() 216 sum += cis.ReadFixed64(); in ParseFixed64_CodedInputStream() 238 CodedInputStream cis = new CodedInputStream(floatInputBuffer); in ParseRawFloat_CodedInputStream() 242 sum += cis.ReadFloat(); in ParseRawFloat_CodedInputStream() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | CaseInsensitiveString.java | 68 CaseInsensitiveString cis = (CaseInsensitiveString) o; in equals() local 69 cis.getFolded(); in equals() 70 return folded.equals(cis.folded); in equals()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | IssuesTest.cs | 106 var cis = new CodedInputStream(ms.ToArray()); in CodedInputStream_LimitReachedRightAfterTag() 107 cis.PushLimit(1); // make sure we reach the limit right after reading the tag. in CodedInputStream_LimitReachedRightAfterTag() 113 cis.AssertNextTag(WireFormat.MakeTag(11, WireFormat.WireType.Varint)); in CodedInputStream_LimitReachedRightAfterTag()
|
D | CodedInputStreamTest.cs | 460 CodedInputStream cis = new CodedInputStream(new byte[] { tag }); in ReadTag_ZeroFieldRejected() 461 Assert.Throws<InvalidProtocolBufferException>(() => cis.ReadTag()); in ReadTag_ZeroFieldRejected() 854 using (var cis = new CodedInputStream(memoryStream)) in Dispose_DisposesUnderlyingStream() 865 using (var cis = new CodedInputStream(memoryStream, true)) in Dispose_WithLeaveOpen()
|
/third_party/protobuf/src/google/protobuf/ |
D | message_unittest.inc | 583 io::CodedInputStream cis(&zcis); 584 EXPECT_TRUE(msg.MergePartialFromCodedStream(&cis)); 585 EXPECT_EQ(cis.CurrentPosition(), 3 * 4 + 1); 597 io::CodedInputStream cis(&zcis); 598 EXPECT_TRUE(msg.MergePartialFromCodedStream(&cis)); 599 EXPECT_EQ(cis.CurrentPosition(), 3 * 3 + 1); 600 EXPECT_TRUE(cis.LastTagWas(12)); 612 io::CodedInputStream cis(&zcis); 613 EXPECT_TRUE(msg.MergePartialFromCodedStream(&cis)); 614 EXPECT_EQ(cis.CurrentPosition(), 6); [all …]
|
D | lite_unittest.cc | 1060 io::CodedInputStream cis(reinterpret_cast<const uint8*>(kWireFormat), 2); in TEST() 1065 EXPECT_TRUE(msg.MergePartialFromCodedStream(&cis)); in TEST() 1066 EXPECT_FALSE(cis.ConsumedEntireMessage()); in TEST() 1067 EXPECT_TRUE(cis.LastTagWas(132)); in TEST() 1073 io::CodedInputStream cis(reinterpret_cast<const uint8*>(kWireFormat), 1); in TEST() 1077 EXPECT_FALSE(msg.MergePartialFromCodedStream(&cis)); in TEST()
|
D | message_lite.cc | 208 ZeroCopyCodedInputStream(io::CodedInputStream* cis) : cis_(cis) {} in ZeroCopyCodedInputStream() argument
|
/third_party/libwebsockets/lib/roles/mqtt/ |
D | ops-mqtt.c | 237 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_mqtt() 241 if (!wsi->stash->cis[CIS_METHOD] && !wsi->stash->cis[CIS_ALPN]) in rops_client_bind_mqtt() 242 wsi->stash->cis[CIS_ALPN] = "x-amzn-mqtt-ca"; in rops_client_bind_mqtt()
|
/third_party/libwebsockets/lib/roles/http/client/ |
D | client-handshake.c | 121 wsi->stash->cis[CIS_ADDRESS] = in lws_client_connect_4_established() 866 if (wsi->stash && wsi->stash->cis[CIS_HOST]) 868 lws_strdup(wsi->stash->cis[CIS_HOST]); 905 ads = wsi->stash->cis[CIS_ADDRESS]; 922 iface = wsi->stash->cis[CIS_IFACE]; 1419 if (stash->cis[CIS_METHOD] && (!strcmp(stash->cis[CIS_METHOD], "RAW") || 1420 !strcmp(stash->cis[CIS_METHOD], "MQTT"))) 1429 if (hnames[n] && stash->cis[n]) { 1430 if (lws_hdr_simple_create(wsi, hnames[n], stash->cis[n]))
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | mbedtls-client.c | 41 lws_strncpy(hostname, wsi->stash->cis[CIS_HOST], sizeof(hostname)); in lws_ssl_client_bio_create() 84 lws_strncpy(hostname, wsi->stash->cis[CIS_HOST], sizeof(hostname)); in lws_ssl_client_bio_create() 85 alpn_comma = wsi->stash->cis[CIS_ALPN]; in lws_ssl_client_bio_create()
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | LiteralByteStringTest.java | 327 CodedInputStream cis = stringUnderTest.newCodedInput(); in testNewCodedInput() local 328 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length); in testNewCodedInput() 331 assertTrue(classUnderTest + " CodedInputStream must now be exhausted", cis.isAtEnd()); in testNewCodedInput()
|
/third_party/libwebsockets/lib/core-net/ |
D | socks5-client.c | 151 n = strlen(wsi->stash->cis[CIS_ADDRESS]); in lws_socks5c_generate_msg() 170 memcpy(p, wsi->stash->cis[CIS_ADDRESS], n); in lws_socks5c_generate_msg()
|
D | connect.c | 250 wsi->stash->cis[n] = pc; in lws_client_connect_via_info()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | LocaleExtensions.java | 99 for (CaseInsensitiveString cis : uattributes) { in LocaleExtensions() 100 uaset.add(AsciiUtil.toLowerString(cis.value())); in LocaleExtensions()
|
/third_party/libwebsockets/lib/roles/h1/ |
D | ops-h1.c | 954 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_h1() 968 if (!wsi->stash->cis[CIS_METHOD] && !wsi->stash->cis[CIS_ALPN]) in rops_client_bind_h1() 969 wsi->stash->cis[CIS_ALPN] = "http/1.1"; in rops_client_bind_h1()
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | LiteralByteStringTest.java | 545 CodedInputStream cis = stringUnderTest.newCodedInput(); in testNewCodedInput() local 546 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length); in testNewCodedInput() 550 assertTrue(classUnderTest + " CodedInputStream must now be exhausted", cis.isAtEnd()); in testNewCodedInput()
|
D | NioByteStringTest.java | 599 CodedInputStream cis = testString.newCodedInput(); in testNewCodedInput() local 600 byte[] roundTripBytes = cis.readRawBytes(BYTES.length); in testNewCodedInput() 604 assertTrue(CLASSNAME + " CodedInputStream must now be exhausted", cis.isAtEnd()); in testNewCodedInput()
|
/third_party/libwebsockets/lib/tls/openssl/ |
D | openssl-client.c | 146 lws_strncpy(hostname, wsi->stash->cis[CIS_HOST], sizeof(hostname)); in lws_ssl_client_bio_create() 149 alpn_comma = wsi->stash->cis[CIS_ALPN]; in lws_ssl_client_bio_create() 281 alpn_comma = wsi->stash->cis[CIS_ALPN]; in lws_ssl_client_bio_create()
|
/third_party/gettext/gettext-tools/examples/po/ |
D | mt.po | 4 # Clyde Meli <cmeli@cis.um.edu.mt>, 2001-2008. 13 "Last-Translator: Clyde Meli <cmeli@cis.um.edu.mt>\n"
|
D | lv.po | 4 # Arvis Lācis <arvis.lacis@inbox.lv>, 2009.
|
/third_party/libwebsockets/lib/roles/raw-proxy/ |
D | ops-raw-proxy.c | 166 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_raw_proxy()
|
/third_party/libwebsockets/lib/roles/raw-skt/ |
D | ops-raw-skt.c | 273 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_raw_skt()
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 581 using (var cis = new CodedInputStream(memoryStream)) in Dispose_DisposesUnderlyingStream() 592 using (var cis = new CodedInputStream(memoryStream, true)) in Dispose_WithLeaveOpen()
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | ga.txt | 336 tg{"Táidsícis"} 368 xal{"Cailmícis"}
|
/third_party/icu/icu4c/source/data/lang/ |
D | ga.txt | 406 tg{"Táidsícis"} 447 xal{"Cailmícis"}
|