Home
last modified time | relevance | path

Searched refs:KEY1 (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/text/src/android/text/cts/
DAnnotationTest.java34 private static final String KEY1 = "name"; field in AnnotationTest
45 new Annotation(KEY1, VALUE1); in testConstructor()
51 mAnnotation = new Annotation(KEY1, VALUE1); in testGetValue()
60 mAnnotation = new Annotation(KEY1, VALUE1); in testGetKey()
61 assertEquals(KEY1, mAnnotation.getKey()); in testGetKey()
68 mAnnotation = new Annotation(KEY1, VALUE1); in testGetSpanTypeId()
77 mAnnotation = new Annotation(KEY1, VALUE1); in testWriteToParcel()
/cts/tests/tests/content/src/android/content/cts/
DContentResolverTest.java72 private static final String KEY1 = "key1"; field in ContentResolverTest
97 values.put(COLUMN_KEY_NAME, KEY1); in setUp()
334 assertEquals(KEY1, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME))); in testQuery_WithSqlSelectionArgs()
891 values.put(COLUMN_KEY_NAME, KEY1); in testDelete()
913 assertEquals(KEY1, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME))); in testDelete()
931 assertEquals(KEY1, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME))); in testDelete()
935 selection = COLUMN_KEY_NAME + "=\"" + KEY1 + "\""; in testDelete()