HomeSort by relevance Sort by last modified time
    Searched refs:htmlInfo (Results 1 - 5 of 5) sorted by null

  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
Util.java 24 import android.view.ViewStructure.HtmlInfo;
123 HtmlInfo htmlInfo = node.getHtmlInfo();
125 if (htmlInfo != null) {
127 .append("HTML TAG: ").append(htmlInfo.getTag())
128 .append(" attrs: ").append(htmlInfo.getAttributes())
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
Util.java 24 import android.view.ViewStructure.HtmlInfo;
123 HtmlInfo htmlInfo = node.getHtmlInfo();
125 if (htmlInfo != null) {
127 .append("HTML TAG: ").append(htmlInfo.getTag())
128 .append(" attrs: ").append(htmlInfo.getAttributes())
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/util/
Util.java 28 import android.view.ViewStructure.HtmlInfo;
136 HtmlInfo htmlInfo = node.getHtmlInfo();
138 if (htmlInfo != null) {
140 .append("HTML TAG: ").append(htmlInfo.getTag())
141 .append(" attrs: ").append(htmlInfo.getAttributes())
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/util/
Util.java 28 import android.view.ViewStructure.HtmlInfo;
136 HtmlInfo htmlInfo = node.getHtmlInfo();
138 if (htmlInfo != null) {
140 .append("HTML TAG: ").append(htmlInfo.getTag())
141 .append(" attrs: ").append(htmlInfo.getAttributes())
  /cts/tests/autofillservice/src/android/autofillservice/cts/
Helper.java 54 import android.view.ViewStructure.HtmlInfo;
162 final HtmlInfo htmlInfo = assertHasHtmlTag(node, "form");
163 final String formName = getAttributeValue(htmlInfo, "name");
245 final HtmlInfo htmlInfo = node.getHtmlInfo();
246 if (htmlInfo != null) {
247 builder.append(", HtmlInfo[tag=").append(htmlInfo.getTag())
248 .append(", attrs: ").append(htmlInfo.getAttributes()).append(']')
    [all...]

Completed in 212 milliseconds