Home
last modified time | relevance | path

Searched refs:emptyKey (Results 1 – 6 of 6) sorted by relevance

/external/opencensus-java/api/src/test/java/io/opencensus/metrics/
DLabelKeyTest.java73 LabelKey emptyKey = LabelKey.create("", ""); in create_Empty() local
74 assertThat(emptyKey.getKey()).isEmpty(); in create_Empty()
75 assertThat(emptyKey.getDescription()).isEmpty(); in create_Empty()
/external/volley/src/test/java/com/android/volley/toolbox/
DDiskBasedCacheTest.java566 List<Header> emptyKey = new ArrayList<>(); in serializeHeaders() local
567 emptyKey.add(new Header("", "value")); in serializeHeaders()
568 DiskBasedCache.writeHeaderList(emptyKey, baos); in serializeHeaders()
581 assertEquals(DiskBasedCache.readHeaderList(cis), emptyKey); in serializeHeaders() local
/external/skqp/tests/
DGrShapeTest.cpp1389 Key emptyKey; in test_path_effect_makes_empty_shape() local
1390 make_key(&emptyKey, emptyShape); in test_path_effect_makes_empty_shape()
1399 REPORTER_ASSERT(reporter, invertedEmptyKey != emptyKey); in test_path_effect_makes_empty_shape()
1404 REPORTER_ASSERT(reporter, geoPECase.appliedFullStyleKey() == emptyKey); in test_path_effect_makes_empty_shape()
1405 REPORTER_ASSERT(reporter, geoPECase.appliedPathEffectKey() == emptyKey); in test_path_effect_makes_empty_shape()
1406 REPORTER_ASSERT(reporter, geoPECase.appliedPathEffectThenStrokeKey() == emptyKey); in test_path_effect_makes_empty_shape()
1417 REPORTER_ASSERT(reporter, geoPEStrokeCase.appliedFullStyleKey() == emptyKey); in test_path_effect_makes_empty_shape()
1418 REPORTER_ASSERT(reporter, geoPEStrokeCase.appliedPathEffectKey() == emptyKey); in test_path_effect_makes_empty_shape()
1419 REPORTER_ASSERT(reporter, geoPEStrokeCase.appliedPathEffectThenStrokeKey() == emptyKey); in test_path_effect_makes_empty_shape()
1527 Key emptyKey(fillEmptyCase.baseKey()); in DEF_TEST() local
[all …]
/external/skia/tests/
DGrStyledShapeTest.cpp1408 Key emptyKey; in test_path_effect_makes_empty_shape() local
1409 make_key(&emptyKey, emptyShape); in test_path_effect_makes_empty_shape()
1418 REPORTER_ASSERT(reporter, invertedEmptyKey != emptyKey); in test_path_effect_makes_empty_shape()
1423 REPORTER_ASSERT(reporter, geoPECase.appliedFullStyleKey() == emptyKey); in test_path_effect_makes_empty_shape()
1424 REPORTER_ASSERT(reporter, geoPECase.appliedPathEffectKey() == emptyKey); in test_path_effect_makes_empty_shape()
1425 REPORTER_ASSERT(reporter, geoPECase.appliedPathEffectThenStrokeKey() == emptyKey); in test_path_effect_makes_empty_shape()
1436 REPORTER_ASSERT(reporter, geoPEStrokeCase.appliedFullStyleKey() == emptyKey); in test_path_effect_makes_empty_shape()
1437 REPORTER_ASSERT(reporter, geoPEStrokeCase.appliedPathEffectKey() == emptyKey); in test_path_effect_makes_empty_shape()
1438 REPORTER_ASSERT(reporter, geoPEStrokeCase.appliedPathEffectThenStrokeKey() == emptyKey); in test_path_effect_makes_empty_shape()
1548 const Key& emptyKey = fillEmptyCase.baseKey(); in DEF_TEST() local
[all …]
/external/icu/icu4c/source/test/cintltst/
Dcapitst.c1985 uint8_t emptyKey[20], abcKey[50], mergedKey[100]; in TestMergeSortKeys() local
1989 emptyKeyLen = ucol_getSortKey(coll, &empty, 0, emptyKey, 20); in TestMergeSortKeys()
1992 mergedKeyLen = ucol_mergeSortkeys(emptyKey, emptyKeyLen, abcKey, abcKeyLen, mergedKey, 100); in TestMergeSortKeys()
1997 mergedKeyLen = ucol_mergeSortkeys(emptyKey, 0, abcKey, abcKeyLen, mergedKey, 100); in TestMergeSortKeys()
2001 mergedKeyLen = ucol_mergeSortkeys(abcKey, abcKeyLen, emptyKey, 0, mergedKey, 100); in TestMergeSortKeys()
/external/llvm-project/mlir/lib/Bindings/Python/
DIRModules.cpp630 static const std::string emptyKey; in getDialectForKey() local
631 const std::string *canonKey = key == "std" ? &emptyKey : &key; in getDialectForKey()