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

  /developers/samples/android/ui/graphics/PdfRendererBasic/Application/src/androidTest/java/com/example/android/pdfrendererbasic/
PdfRendererBasicViewModelTest.java 43 final PdfRendererBasicViewModel.PageInfo firstInfo = mViewModel.getPageInfo().getValue();
44 assertThat(firstInfo).isNotNull();
45 assertThat(firstInfo.index).isEqualTo(0);
46 assertThat(firstInfo.count).isEqualTo(10);
  /external/cldr/tools/java/org/unicode/cldr/util/
RegexLookup.java 217 List<T> getAll(String pattern, Object context, List<Finder> matcherList, Output<String[]> firstInfo);
259 public List<T> getAll(String pattern, Object context, List<Finder> matcherList, Output<String[]> firstInfo) {
267 if (firstInfo != null && !list.isEmpty()) {
270 firstInfo.value = firstNode._info.value;
276 firstInfo.value = n._info.value;
293 Output<String[]> firstInfo = new Output<>();
294 List<T> matches = getAll(pattern, context, matcherList, firstInfo); //need to get whole list because we want value that was entered first
297 arguments.value = firstInfo.value;
299 arguments.value = firstInfo.value;
469 Info firstInfo = new Info()
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/icu/
LocaleMapper.java 226 Output<String[]> firstInfo = new Output<>();
227 RegexResult regexResult = matchXPath(pathConverter, cldr, xpath, matcherFound, firstInfo);
230 String[] arguments = firstInfo.value;
313 * @param firstInfo
318 Output<Finder> matcherFound, Output<String[]> firstInfo) {
331 if (firstInfo != null && info.value != null) {
332 firstInfo.value = info.value;
355 Output<String[]> firstInfo = new Output<>();
357 cldrFile, xpath, matcher, firstInfo);
360 String[] arguments = firstInfo.value
    [all...]
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityNodeInfoTest.java 71 AccessibilityEvent firstInfo = AccessibilityEvent.obtain();
72 firstInfo.recycle();
74 assertSame("AccessibilityNodeInfo not properly reused", firstInfo, secondInfo);

Completed in 377 milliseconds