Home
last modified time | relevance | path

Searched refs:emptyKey (Results 1 – 5 of 5) 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/
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/icu/icu4c/source/test/cintltst/
Dcapitst.c1984 uint8_t emptyKey[20], abcKey[50], mergedKey[100]; in TestMergeSortKeys() local
1988 emptyKeyLen = ucol_getSortKey(coll, &empty, 0, emptyKey, 20); in TestMergeSortKeys()
1991 mergedKeyLen = ucol_mergeSortkeys(emptyKey, emptyKeyLen, abcKey, abcKeyLen, mergedKey, 100); in TestMergeSortKeys()
1996 mergedKeyLen = ucol_mergeSortkeys(emptyKey, 0, abcKey, abcKeyLen, mergedKey, 100); in TestMergeSortKeys()
2000 mergedKeyLen = ucol_mergeSortkeys(abcKey, abcKeyLen, emptyKey, 0, mergedKey, 100); in TestMergeSortKeys()