/external/truth/extensions/proto/src/main/java/com/google/common/truth/extensions/proto/ |
D | FieldScopeLogic.java | 448 abstract T newLogicOfSameType(List<FieldScopeLogic> newElements); in newLogicOfSameType() argument 468 IntersectionFieldScopeLogic newLogicOfSameType(List<FieldScopeLogic> newElements) { in newLogicOfSameType() argument 469 checkArgument(newElements.size() == 2, "Expected 2 elements: %s", newElements); in newLogicOfSameType() local 470 return new IntersectionFieldScopeLogic(newElements.get(0), newElements.get(1)); in newLogicOfSameType() 512 UnionFieldScopeLogic newLogicOfSameType(List<FieldScopeLogic> newElements) { in newLogicOfSameType() argument 513 checkArgument(newElements.size() == 2, "Expected 2 elements: %s", newElements); in newLogicOfSameType() local 514 return new UnionFieldScopeLogic(newElements.get(0), newElements.get(1)); in newLogicOfSameType() 555 NegationFieldScopeLogic newLogicOfSameType(List<FieldScopeLogic> newElements) { in newLogicOfSameType() argument 556 checkArgument(newElements.size() == 1, "Expected 1 element: %s", newElements); in newLogicOfSameType() local 557 return new NegationFieldScopeLogic(newElements.get(0)); in newLogicOfSameType()
|
/external/cronet/tot/base/test/android/javatests/src/org/chromium/base/test/transit/ |
D | Elements.java | 206 Elements newElements = new Elements(); in consolidate() local 207 newElements.mElements.addAll(mElements); in consolidate() 208 newElements.mElementFactories.putAll(mElementFactories); in consolidate() 209 newElements.mOtherEnterConditions.addAll(mOtherEnterConditions); in consolidate() 210 newElements.mOtherExitConditions.addAll(mOtherExitConditions); in consolidate() 211 mOwner.addAll(newElements); in consolidate() 213 return newElements; in consolidate()
|
D | ConditionWaiter.java | 390 Elements newElements = fabricateElements(newFactories); in processWaits() local 391 nextBatch = createEnterConditionWaits(newElements); in processWaits() 404 mConditionsGuardingFactories.putAll(newElements.getElementFactories()); in processWaits() 405 newElementIds.addAll(newElements.getElementIds()); in processWaits() 421 Elements newElements = new Elements(); in fabricateElements() local 423 newElements.addAll(factory.processDelayedDeclarations()); in fabricateElements() 425 return newElements; in fabricateElements()
|
D | ElementFactory.java | 33 Elements newElements = builder.consolidate(); in processDelayedDeclarations() local 34 return newElements; in processDelayedDeclarations()
|
/external/cronet/stable/base/test/android/javatests/src/org/chromium/base/test/transit/ |
D | Elements.java | 206 Elements newElements = new Elements(); in consolidate() local 207 newElements.mElements.addAll(mElements); in consolidate() 208 newElements.mElementFactories.putAll(mElementFactories); in consolidate() 209 newElements.mOtherEnterConditions.addAll(mOtherEnterConditions); in consolidate() 210 newElements.mOtherExitConditions.addAll(mOtherExitConditions); in consolidate() 211 mOwner.addAll(newElements); in consolidate() 213 return newElements; in consolidate()
|
D | ConditionWaiter.java | 390 Elements newElements = fabricateElements(newFactories); in processWaits() local 391 nextBatch = createEnterConditionWaits(newElements); in processWaits() 404 mConditionsGuardingFactories.putAll(newElements.getElementFactories()); in processWaits() 405 newElementIds.addAll(newElements.getElementIds()); in processWaits() 421 Elements newElements = new Elements(); in fabricateElements() local 423 newElements.addAll(factory.processDelayedDeclarations()); in fabricateElements() 425 return newElements; in fabricateElements()
|
D | ElementFactory.java | 33 Elements newElements = builder.consolidate(); in processDelayedDeclarations() local 34 return newElements; in processDelayedDeclarations()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/ |
D | NamedDispatchers.kt | 50 val newElements = arrayOfNulls<String>(newCapacity) in ensureCapacity() constant 52 destination = newElements, in ensureCapacity() 56 destination = newElements, in ensureCapacity() 60 elements = newElements in ensureCapacity()
|
/external/dagger2/java/dagger/hilt/processor/internal/root/ |
D | RootProcessingStep.java | 108 ImmutableSet<XElement> newElements = in postProcess() local 112 newElements.isEmpty(), in postProcess() 116 newElements.stream().map(XElements::toStableString).collect(toImmutableList())); in postProcess() 117 } else if (newElements.isEmpty()) { in postProcess()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | ImmutableCollection.java | 305 public final boolean addAll(Collection<? extends E> newElements) { in addAll() argument 518 private void ensureRoomFor(int newElements) { in ensureRoomFor() argument 520 int newCapacity = expandedCapacity(contents.length, size + newElements); in ensureRoomFor()
|
D | MinMaxPriorityQueue.java | 273 public boolean addAll(Collection<? extends E> newElements) { in addAll() argument 275 for (E element : newElements) { in addAll()
|
D | ImmutableList.java | 529 public final boolean addAll(int index, Collection<? extends E> newElements) { in addAll() argument
|
/external/cronet/tot/third_party/icu/source/common/ |
D | ucharstriebuilder.cpp | 114 UCharsTrieElement *newElements=new UCharsTrieElement[newCapacity]; in add() local 115 if(newElements==nullptr) { in add() 120 uprv_memcpy(newElements, elements, (size_t)elementsLength*sizeof(UCharsTrieElement)); in add() 123 elements=newElements; in add()
|
D | bytestriebuilder.cpp | 164 BytesTrieElement *newElements=new BytesTrieElement[newCapacity]; in add() local 165 if(newElements==nullptr) { in add() 170 uprv_memcpy(newElements, elements, (size_t)elementsLength*sizeof(BytesTrieElement)); in add() 173 elements=newElements; in add()
|
/external/cronet/stable/third_party/icu/source/common/ |
D | ucharstriebuilder.cpp | 114 UCharsTrieElement *newElements=new UCharsTrieElement[newCapacity]; in add() local 115 if(newElements==nullptr) { in add() 120 uprv_memcpy(newElements, elements, (size_t)elementsLength*sizeof(UCharsTrieElement)); in add() 123 elements=newElements; in add()
|
D | bytestriebuilder.cpp | 164 BytesTrieElement *newElements=new BytesTrieElement[newCapacity]; in add() local 165 if(newElements==nullptr) { in add() 170 uprv_memcpy(newElements, elements, (size_t)elementsLength*sizeof(BytesTrieElement)); in add() 173 elements=newElements; in add()
|
/external/icu/icu4c/source/common/ |
D | ucharstriebuilder.cpp | 114 UCharsTrieElement *newElements=new UCharsTrieElement[newCapacity]; in add() local 115 if(newElements==nullptr) { in add() 120 uprv_memcpy(newElements, elements, (size_t)elementsLength*sizeof(UCharsTrieElement)); in add() 123 elements=newElements; in add()
|
D | bytestriebuilder.cpp | 164 BytesTrieElement *newElements=new BytesTrieElement[newCapacity]; in add() local 165 if(newElements==nullptr) { in add() 170 uprv_memcpy(newElements, elements, (size_t)elementsLength*sizeof(BytesTrieElement)); in add() 173 elements=newElements; in add()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableCollection.java | 57 public final boolean addAll(Collection<? extends E> newElements) { in addAll() argument
|
D | ImmutableList.java | 235 public final boolean addAll(int index, Collection<? extends E> newElements) { in addAll() argument
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableList.java | 529 public final boolean addAll(int index, Collection<? extends E> newElements) { 821 private void ensureRoomFor(int newElements) { 823 int newCapacity = expandedCapacity(contents.length, size + newElements);
|
D | ImmutableCollection.java | 296 public final boolean addAll(Collection<? extends E> newElements) { in addAll() argument
|
D | MinMaxPriorityQueue.java | 273 public boolean addAll(Collection<? extends E> newElements) { in addAll() argument 275 for (E element : newElements) { in addAll()
|
D | Sets.java | 661 public final boolean addAll(Collection<? extends E> newElements) { in addAll() argument
|
/external/antlr/runtime/C/src/ |
D | antlr3collections.c | 1313 …pANTLR3_VECTOR_ELEMENT newElements = (pANTLR3_VECTOR_ELEMENT)ANTLR3_REALLOC(vector->elements, (siz… in antlr3VectorResize() local 1314 if (newElements == NULL) in antlr3VectorResize() 1319 vector->elements = newElements; in antlr3VectorResize()
|