Searched refs:otherList (Results 1 – 11 of 11) sorted by relevance
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | SIPObjectList.java | 102 public void concatenate(SIPObjectList otherList) { in concatenate() argument 103 super.concatenate(otherList); in concatenate() 111 public void concatenate(SIPObjectList otherList, boolean topFlag) { in concatenate() argument 112 super.concatenate(otherList, topFlag); in concatenate()
|
/external/dng_sdk/source/ |
D | dng_opcode_list.cpp | 75 void dng_opcode_list::Swap (dng_opcode_list &otherList) in Swap() argument 78 fList.swap (otherList.fList); in Swap() 80 std::swap (fAlwaysApply, otherList.fAlwaysApply); in Swap() 82 std::swap (fStage, otherList.fStage); in Swap()
|
D | dng_opcode_list.h | 113 void Swap (dng_opcode_list &otherList);
|
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/gwt/ |
D | GwtValueTypeWithBuilder.java | 44 abstract ImmutableList<T> otherList(); in otherList() method in GwtValueTypeWithBuilder 64 Builder<T> otherList(List<T> x); in otherList() method
|
/external/mockito/src/test/java/org/mockitousage/matchers/ |
D | GenericMatchersTest.java | 22 List<String> sort(List<String> otherList); in sort() argument
|
/external/guava/guava/src/com/google/common/collect/ |
D | Lists.java | 972 List<?> otherList = (List<?>) other; 974 if (size != otherList.size()) { 977 if (thisList instanceof RandomAccess && otherList instanceof RandomAccess) { 980 if (!Objects.equal(thisList.get(i), otherList.get(i))) { 986 return Iterators.elementsEqual(thisList.iterator(), otherList.iterator());
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | Lists.java | 959 List<?> otherList = (List<?>) other; 961 if (size != otherList.size()) { 964 if (thisList instanceof RandomAccess && otherList instanceof RandomAccess) { 967 if (!Objects.equal(thisList.get(i), otherList.get(i))) { 973 return Iterators.elementsEqual(thisList.iterator(), otherList.iterator());
|
/external/llvm-project/mlir/include/mlir/IR/ |
D | BlockSupport.h | 220 void transferNodesFromList(ilist_traits<Operation> &otherList, 238 void transferNodesFromList(ilist_traits<Block> &otherList,
|
/external/llvm-project/mlir/lib/IR/ |
D | Region.cpp | 218 ilist_traits<Block> &otherList, block_iterator first, block_iterator last) { in transferNodesFromList() argument 222 if (curParent == otherList.getParentRegion()) in transferNodesFromList()
|
D | Operation.cpp | 469 ilist_traits<Operation> &otherList, op_iterator first, op_iterator last) { in transferNodesFromList() argument 477 if (curParent == otherList.getContainingBlock()) in transferNodesFromList()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
D | NodeList.java | 172 public void addAll(NodeList<N> otherList) { in addAll() argument 173 for (N node : otherList) { in addAll()
|