Home
last modified time | relevance | path

Searched refs:RemoveAt (Results 1 – 25 of 29) sorted by relevance

12

/external/pdfium/core/fpdfapi/parser/
Dcpdf_array_unittest.cpp37 TEST(ArrayTest, RemoveAt) { in TEST() argument
44 arr->RemoveAt(3); in TEST()
50 arr->RemoveAt(4); in TEST()
51 arr->RemoveAt(4); in TEST()
64 arr->RemoveAt(11); in TEST()
Dcpdf_array.h147 void RemoveAt(size_t index);
Dcpdf_array.cpp198 void CPDF_Array::RemoveAt(size_t index) { in RemoveAt() function in CPDF_Array
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
DStackList.cs64 RemoveAt(this.Count - 1); in Pop()
/external/cronet/tot/base/win/
Dvector_unittest.cc450 TEST(VectorTest, RemoveAt) { in TEST() argument
453 HRESULT hr = vec->RemoveAt(3); in TEST()
456 hr = vec->RemoveAt(2); in TEST()
463 hr = vec->RemoveAt(2); in TEST()
466 hr = vec->RemoveAt(1); in TEST()
473 hr = vec->RemoveAt(1); in TEST()
476 hr = vec->RemoveAt(0); in TEST()
483 hr = vec->RemoveAt(0); in TEST()
/external/cronet/stable/base/win/
Dvector_unittest.cc450 TEST(VectorTest, RemoveAt) { in TEST() argument
453 HRESULT hr = vec->RemoveAt(3); in TEST()
456 hr = vec->RemoveAt(2); in TEST()
463 hr = vec->RemoveAt(2); in TEST()
466 hr = vec->RemoveAt(1); in TEST()
473 hr = vec->RemoveAt(1); in TEST()
476 hr = vec->RemoveAt(0); in TEST()
483 hr = vec->RemoveAt(0); in TEST()
Dvector.h282 IFACEMETHODIMP RemoveAt(unsigned index) override { in RemoveAt() function
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs178 list.RemoveAt(1); in RemoveAt_Valid()
181 list.RemoveAt(list.Count - 1); // Now the count will be 1... in RemoveAt_Valid()
182 list.RemoveAt(0); in RemoveAt_Valid()
190 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); in RemoveAt_Invalid()
191 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(3)); in RemoveAt_Invalid()
/external/cronet/tot/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs178 list.RemoveAt(1); in RemoveAt_Valid()
181 list.RemoveAt(list.Count - 1); // Now the count will be 1... in RemoveAt_Valid()
182 list.RemoveAt(0); in RemoveAt_Valid()
190 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); in RemoveAt_Invalid()
191 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(3)); in RemoveAt_Invalid()
/external/cronet/stable/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs178 list.RemoveAt(1); in RemoveAt_Valid()
181 list.RemoveAt(list.Count - 1); // Now the count will be 1... in RemoveAt_Valid()
182 list.RemoveAt(0); in RemoveAt_Valid()
190 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); in RemoveAt_Invalid()
191 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(3)); in RemoveAt_Invalid()
/external/pdfium/core/fpdfdoc/
Dcpdf_nametree.cpp40 pLimits->RemoveAt(pLimits->size() - 1); in GetNodeLimitsAndSanitize()
143 pKids->RemoveAt(i); in UpdateNodesAndLimitsUponDeletion()
551 pFind->RemoveAt(result.value().index + 1); in DeleteValueAndName()
552 pFind->RemoveAt(result.value().index); in DeleteValueAndName()
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs179 list.RemoveAt(1); in RemoveAt_Valid()
182 list.RemoveAt(list.Count - 1); // Now the count will be 1... in RemoveAt_Valid()
183 list.RemoveAt(0); in RemoveAt_Valid()
191 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); in RemoveAt_Invalid()
192 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(3)); in RemoveAt_Invalid()
889 list.RemoveAt(0); in Capacity_Zero()
/external/cronet/tot/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs179 list.RemoveAt(1); in RemoveAt_Valid()
182 list.RemoveAt(list.Count - 1); // Now the count will be 1... in RemoveAt_Valid()
183 list.RemoveAt(0); in RemoveAt_Valid()
191 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); in RemoveAt_Invalid()
192 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(3)); in RemoveAt_Invalid()
889 list.RemoveAt(0); in Capacity_Zero()
/external/cronet/stable/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs179 list.RemoveAt(1); in RemoveAt_Valid()
182 list.RemoveAt(list.Count - 1); // Now the count will be 1... in RemoveAt_Valid()
183 list.RemoveAt(0); in RemoveAt_Valid()
191 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); in RemoveAt_Invalid()
192 Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(3)); in RemoveAt_Invalid()
889 list.RemoveAt(0); in Capacity_Zero()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTree.cs251 children.RemoveAt(i); in DeleteChild()
323 children.RemoveAt(indexToDelete); in ReplaceChildren()
/external/pdfium/xfa/fwl/
Dcfwl_combobox.h60 void RemoveAt(int32_t iIndex);
Dcfwl_listbox.h73 void RemoveAt(int32_t iIndex);
Dcfwl_combobox.cpp60 void CFWL_ComboBox::RemoveAt(int32_t iIndex) { in RemoveAt() function in pdfium::CFWL_ComboBox
61 m_pListBox->RemoveAt(iIndex); in RemoveAt()
/external/tensorflow/tensorflow/core/profiler/utils/
Dxplane_utils.cc65 void RemoveAt(protobuf::RepeatedPtrField<T>* array, in RemoveAt() function
89 RemoveAt(array, {i}); in Remove()
95 RemoveAt(array, indices); in RemoveIf()
/external/pdfium/core/fpdfapi/edit/
Dcpdf_pagecontentmanager.cpp215 contents_array->RemoveAt(stream_index); in ExecuteScheduledRemovals()
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/Sources/
DBrowserDialog.cpp351 mBrowserEntries.RemoveAt( mid ); in OnServiceRemove()
/external/pdfium/xfa/fxfa/
Dcxfa_ffcombobox.cpp308 ToComboBox(GetNormalWidget())->RemoveAt(nIndex); in DeleteItem()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs594 public void RemoveAt(int index) in RemoveAt() method in Google.Protobuf.Collections.RepeatedField
/external/cronet/stable/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs594 public void RemoveAt(int index) in RemoveAt() method in Google.Protobuf.Collections.RepeatedField
/external/cronet/tot/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs594 public void RemoveAt(int index) in RemoveAt() method in Google.Protobuf.Collections.RepeatedField

12