Home
last modified time | relevance | path

Searched refs:inputList (Results 1 – 15 of 15) 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()
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()
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()
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.java149 if (help || inputList == null || inputList.isEmpty()) { in run()
154 if (inputList.size() > 1) { in run()
160 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/desugar/java/com/google/devtools/common/options/testing/
DConverterTester.java92 ImmutableList<String> inputList = ImmutableList.copyOf(inputs); in addEqualityGroup() local
93 inputLists.add(inputList); in addEqualityGroup()
94 for (String input : inputList) { in addEqualityGroup()
120 for (ImmutableList<String> inputList : inputLists) { in testItems()
121 for (String input : inputList) { in testItems()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DAlphabeticIndex.java153 private List<Record<V>> inputList; field in AlphabeticIndex
619 if (inputList != null && !inputList.isEmpty()) { in buildImmutableIndex()
683 if (inputList == null) { in addRecord()
684 inputList = new ArrayList<Record<V>>(); in addRecord()
686 inputList.add(new Record<V>(name, data)); in addRecord()
717 if (inputList != null && !inputList.isEmpty()) { in clearRecords()
718 inputList.clear(); in clearRecords()
742 return inputList != null ? inputList.size() : 0; in getRecordCount()
765 if (inputList == null || inputList.isEmpty()) { in initBuckets()
771 Collections.sort(inputList, recordComparator); in initBuckets()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DAlphabeticIndex.java153 private List<Record<V>> inputList; field in AlphabeticIndex
599 if (inputList != null && !inputList.isEmpty()) { in buildImmutableIndex()
660 if (inputList == null) { in addRecord()
661 inputList = new ArrayList<Record<V>>(); in addRecord()
663 inputList.add(new Record<V>(name, data)); in addRecord()
692 if (inputList != null && !inputList.isEmpty()) { in clearRecords()
693 inputList.clear(); in clearRecords()
715 return inputList != null ? inputList.size() : 0; in getRecordCount()
737 if (inputList == null || inputList.isEmpty()) { in initBuckets()
743 Collections.sort(inputList, recordComparator); in initBuckets()
[all …]
/external/deqp-deps/glslang/glslang/MachineIndependent/
Diomapper.cpp121 , inputList(inList) in TVarGatherTraverser()
132 target = &inputList; in visitSymbol()
149 TVarLiveMap& inputList; member in glslang::TVarGatherTraverser
159 , inputList(inList) in TVarSetTraverser()
170 source = &inputList; in visitSymbol()
199 const TVarLiveMap& inputList; member in glslang::TVarSetTraverser