Home
last modified time | relevance | path

Searched refs:strB (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dzero_copy_stream_unittest.cc293 static const char* strB = "WhirledPeas"; in TEST_F() local
311 coded_output->WriteVarint32(strlen(strB)); in TEST_F()
312 coded_output->WriteRaw(strB, strlen(strB)); in TEST_F()
327 EXPECT_EQ(strlen(strB), insize); in TEST_F()
329 EXPECT_EQ(0, memcmp(temp_buffer, strB, insize)); in TEST_F()
599 static const char* strB = "QuickBrownFox"; in TEST_F() local
621 outlen = strlen(strB) + 1; in TEST_F()
623 coded_output->WriteRaw(strB, outlen); in TEST_F()
641 EXPECT_EQ(strlen(strB) + 1, insize); in TEST_F()
643 EXPECT_EQ(0, memcmp(temp_buffer, strB, insize)) in TEST_F()
[all …]
/external/skia/src/core/
DSkRect.cpp168 SkString strL, strT, strR, strB; in dump() local
172 SkAppendScalarDec(&strB, fBottom); in dump()
174 strL.c_str(), strT.c_str(), strR.c_str(), strB.c_str()); in dump()
/external/llvm/test/CodeGen/ARM/
D2011-04-12-AlignBug.ll9 @.strB = private unnamed_addr constant [4 x i8] c"foo\00", align 1
/external/icu/icu4c/source/test/cintltst/
Dcmsccoll.c988 UChar strB[MAXSLEN+1]; in TestIncrementalNormalize() local
1006 strB[0] = baseA; in TestIncrementalNormalize()
1009 strB[sLen-i] = ccMix[i % 3]; in TestIncrementalNormalize()
1012 strB[sLen] = 0; in TestIncrementalNormalize()
1015 doTest(coll, strA, strB, UCOL_EQUAL); /* optimized functions in the impl*/ in TestIncrementalNormalize()
1017 doTest(coll, strA, strB, UCOL_EQUAL); in TestIncrementalNormalize()
1029 static const UChar strB[] = {0x41, 0xc0, 0x316, 0}; in TestIncrementalNormalize() local
1031 doTest(coll, strA, strB, UCOL_EQUAL); in TestIncrementalNormalize()
1043 static const UChar strB[] = {0x41, 0xc0, 0x316, 0xD800, 0xDC00, 0}; in TestIncrementalNormalize() local
1045 doTest(coll, strA, strB, UCOL_GREATER); in TestIncrementalNormalize()
[all …]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationMiscTest.java1257 StringBuffer strB = new StringBuffer(); in TestIncrementalNormalize() local
1264 strB.delete(0, strB.length()); in TestIncrementalNormalize()
1265 strB.append(baseA); in TestIncrementalNormalize()
1268 strB.insert(1, ccMix[i % 3]); in TestIncrementalNormalize()
1272 … strA.toString(), strB.toString(), 0); // optimized functions in the impl in TestIncrementalNormalize()
1275 strA.toString(), strB.toString(), 0); in TestIncrementalNormalize()
1283 String strB = "A\u00c0\u0316"; in TestIncrementalNormalize() local
1285 CollationTest.doTest(this, (RuleBasedCollator)coll, strA, strB, 0); in TestIncrementalNormalize()
1291 String strB = "A\u00c0\u0316\uD800\uDC00"; in TestIncrementalNormalize() local
1293 CollationTest.doTest(this, (RuleBasedCollator)coll, strA, strB, 1); in TestIncrementalNormalize()
[all …]
/external/libedit/src/
Dterminal.c1052 static const Char strB[] = {033, '[', 'B', '\0'}; in terminal_reset_arrow() local
1065 keymacro_add(el, strB, &arrow[A_K_DN].fun, arrow[A_K_DN].type); in terminal_reset_arrow()
1080 keymacro_add(el, &strB[1], &arrow[A_K_DN].fun, arrow[A_K_DN].type); in terminal_reset_arrow()
/external/libxml2/
Dxmlschemas.c2894 xmlChar *strA = NULL, *strB = NULL; in xmlSchemaPIllegalAttrErr() local
2899 xmlSchemaFormatQNameNs(&strB, attr->ns, attr->name), in xmlSchemaPIllegalAttrErr()
2902 FREE_AND_NULL(strB); in xmlSchemaPIllegalAttrErr()
14169 xmlChar *strA = NULL, *strB = NULL, *strC = NULL; in xmlSchemaCheckDerivationOKRestriction2to4() local
14186 xmlSchemaGetComponentDesignation(&strB, in xmlSchemaCheckDerivationOKRestriction2to4()
14192 FREE_AND_NULL(strB); in xmlSchemaCheckDerivationOKRestriction2to4()
14302 xmlChar *strA = NULL, *strB = NULL; in xmlSchemaCheckDerivationOKRestriction2to4() local
14311 xmlSchemaGetComponentDesignation(&strB, baseItem), in xmlSchemaCheckDerivationOKRestriction2to4()
14314 FREE_AND_NULL(strB); in xmlSchemaCheckDerivationOKRestriction2to4()
16465 xmlChar *strA = NULL, *strB = NULL; in xmlSchemaCheckDerivationOKRestriction() local
[all …]
/external/skia/tests/
DPathOpsOpTest.cpp3660 …const char strB[] = "M31.35 57.75L31.35 57.75C31.9 57.7514 32.45 57.7052 33 57.7587C33.55 57.8122 … in issue3517() local
3661 SkParsePath::FromSVGString(strB, &pathB); in issue3517()