Home
last modified time | relevance | path

Searched refs:inputList (Results 1 – 14 of 14) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/
DListDexCommand.java63 private List<String> inputList = Lists.newArrayList(); field in ListDexCommand
70 if (help || inputList == null || inputList.isEmpty()) { in run()
75 if (inputList.size() > 1) { in run()
81 String input = inputList.get(0); in run()
DListReferencesCommand.java56 if (help || inputList == null || inputList.isEmpty()) { in run()
61 if (inputList.size() > 1) { in run()
67 String input = inputList.get(0); in run()
DListClassesCommand.java58 if (help || inputList == null || inputList.isEmpty()) { in run()
63 if (inputList.size() > 1) { in run()
69 String input = inputList.get(0); in run()
DListDependenciesCommand.java62 private List<String> inputList = Lists.newArrayList(); field in ListDependenciesCommand
69 if (help || inputList == null || inputList.isEmpty()) { in run()
74 if (inputList.size() > 1) { in run()
80 String input = inputList.get(0); in run()
DDumpCommand.java62 if (help || inputList == null || inputList.isEmpty()) { in run()
67 if (inputList.size() > 1) { in run()
73 String input = inputList.get(0); in run()
DListFieldOffsetsCommand.java66 if (help || inputList == null || inputList.isEmpty()) { in run()
71 if (inputList.size() > 1) { in run()
77 String input = inputList.get(0); in run()
DListVtablesCommand.java82 if (help || inputList == null || inputList.isEmpty()) { in run()
87 if (inputList.size() > 1) { in run()
93 String input = inputList.get(0); in run()
DDisassembleCommand.java145 if (help || inputList == null || inputList.isEmpty()) { in run()
150 if (inputList.size() > 1) { in run()
156 String input = inputList.get(0); in run()
DDexInputCommand.java64 protected List<String> inputList = Lists.newArrayList(); field in DexInputCommand
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue103/
DMergingTest.java60 List<Map<Object, Object>> inputList = map.get("input"); in check() local
61 assertEquals(4, inputList.size()); in check()
63 Map<Object, Object> center = inputList.get(0); in check()
68 Map<Object, Object> left = inputList.get(1); in check()
73 Map<Object, Object> big = inputList.get(2); in check()
77 Map<Object, Object> small = inputList.get(3); in check()
/external/guava/guava/src/com/google/common/collect/
DCollections2.java411 final ImmutableList<E> inputList; field in Collections2.OrderedPermutationCollection
417 this.inputList = Ordering.from(comparator).immutableSortedCopy(input); in OrderedPermutationCollection()
419 this.size = calculateSize(inputList, comparator); in OrderedPermutationCollection()
466 return new OrderedPermutationIterator<E>(inputList, comparator); in iterator()
472 return isPermutation(inputList, list); in contains()
478 return "orderedPermutationCollection(" + inputList + ")"; in toString()
564 final ImmutableList<E> inputList; field in Collections2.PermutationCollection
567 this.inputList = input; in PermutationCollection()
571 return IntMath.factorial(inputList.size()); in size()
579 return new PermutationIterator<E>(inputList); in iterator()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DAlphabeticIndex.java153 private List<Record<V>> inputList; field in AlphabeticIndex
603 if (inputList != null && !inputList.isEmpty()) { in buildImmutableIndex()
664 if (inputList == null) { in addRecord()
665 inputList = new ArrayList<Record<V>>(); in addRecord()
667 inputList.add(new Record<V>(name, data)); in addRecord()
696 if (inputList != null && !inputList.isEmpty()) { in clearRecords()
697 inputList.clear(); in clearRecords()
719 return inputList != null ? inputList.size() : 0; in getRecordCount()
741 if (inputList == null || inputList.isEmpty()) { in initBuckets()
747 Collections.sort(inputList, recordComparator); in initBuckets()
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DAlphabeticIndex.java153 private List<Record<V>> inputList; field in AlphabeticIndex
623 if (inputList != null && !inputList.isEmpty()) { in buildImmutableIndex()
687 if (inputList == null) { in addRecord()
688 inputList = new ArrayList<Record<V>>(); in addRecord()
690 inputList.add(new Record<V>(name, data)); in addRecord()
721 if (inputList != null && !inputList.isEmpty()) { in clearRecords()
722 inputList.clear(); in clearRecords()
746 return inputList != null ? inputList.size() : 0; in getRecordCount()
769 if (inputList == null || inputList.isEmpty()) { in initBuckets()
775 Collections.sort(inputList, recordComparator); in initBuckets()
[all …]
/external/r8/src/main/java/com/android/tools/r8/compatdx/
DCompatDx.java91 public final String inputList; field in CompatDx.DxCompatOptions
166 final OptionSpec<String> inputList; field in CompatDx.DxCompatOptions.Spec
244 inputList = parser in Spec()
303 inputList = options.valueOf(spec.inputList); in DxCompatOptions()