Home
last modified time | relevance | path

Searched refs:classifiedText (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/textclassifier/
DTextClassifierTest.java143 String classifiedText = "droid@android.com"; in testClassifyText() local
144 int startIndex = text.indexOf(classifiedText); in testClassifyText()
145 int endIndex = startIndex + classifiedText.length(); in testClassifyText()
152 assertThat(classification, isTextClassification(classifiedText, TextClassifier.TYPE_EMAIL)); in testClassifyText()
160 String classifiedText = "www.android.com"; in testClassifyText_url() local
161 int startIndex = text.indexOf(classifiedText); in testClassifyText_url()
162 int endIndex = startIndex + classifiedText.length(); in testClassifyText_url()
169 assertThat(classification, isTextClassification(classifiedText, TextClassifier.TYPE_URL)); in testClassifyText_url()
192 String classifiedText = "HTTP://ANDROID.COM"; in testClassifyText_url_inCaps() local
193 int startIndex = text.indexOf(classifiedText); in testClassifyText_url_inCaps()
[all …]
DTextClassificationManagerTest.java83 String classifiedText = "+12122537077"; in testCannotResolveIntent() local
84 int startIndex = text.indexOf(classifiedText); in testCannotResolveIntent()
85 int endIndex = startIndex + classifiedText.length(); in testCannotResolveIntent()
/frameworks/base/core/java/android/view/textclassifier/
DTextClassifierImpl.java643 final String classifiedText = text.substring(start, end); in createClassificationResult() local
645 .setText(classifiedText); in createClassificationResult()
665 classifiedText, in createClassificationResult()