Home
last modified time | relevance | path

Searched refs:InputList (Results 1 – 25 of 208) sorted by relevance

123456789

/dports/math/cgal/CGAL-5.3/examples/RangeSegmentTrees/
H A Drange_tree_1.cpp20 std::vector<Key> InputList, OutputList; in main() local
23 InputList.push_back(8.0); in main()
24 InputList.push_back(1.0); in main()
25 InputList.push_back(3.9); in main()
26 InputList.push_back(2.0); in main()
27 InputList.push_back(5.0); in main()
28 InputList.push_back(4.8); in main()
29 InputList.push_back(7.7); in main()
30 InputList.push_back(6.8); in main()
32 first = InputList.begin(); in main()
[all …]
H A Drange_tree_3.cpp20 std::list<Key> InputList, OutputList; in main() local
23 InputList.push_back(Key(8,5.1,34)); in main()
24 InputList.push_back(Key(1,1.1,67)); in main()
25 InputList.push_back(Key(3,2.1,56)); in main()
26 InputList.push_back(Key(2,6.1,89)); in main()
27 InputList.push_back(Key(5,4.1,45)); in main()
28 InputList.push_back(Key(4,8.1,76)); in main()
29 InputList.push_back(Key(7,7.1,87)); in main()
30 InputList.push_back(Key(6,3.1,78)); in main()
32 first = InputList.begin(); in main()
[all …]
H A Drange_tree_4.cpp18 std::list<Key> InputList, OutputList; in main() local
21 InputList.push_back(Key(8,5.1,34, 1.11)); in main()
22 InputList.push_back(Key(1,1.1,67, 1.23)); in main()
23 InputList.push_back(Key(3,2.1,56, 1.34)); in main()
24 InputList.push_back(Key(2,6.1,89, 1.09)); in main()
25 InputList.push_back(Key(5,4.1,45, 1.009)); in main()
26 InputList.push_back(Key(4,8.1,76, 1.98)); in main()
27 InputList.push_back(Key(7,7.1,87, 1.333)); in main()
28 InputList.push_back(Key(6,3.1,78, 1.45)); in main()
30 first = InputList.begin(); in main()
[all …]
H A Drange_tree_set_2.cpp23 std::vector<Key> InputList, OutputList; in main() local
26 InputList.push_back(Key(8,5.1)); in main()
27 InputList.push_back(Key(1,1.1)); in main()
28 InputList.push_back(Key(3,2.1)); in main()
29 InputList.push_back(Key(2,6.1)); in main()
30 InputList.push_back(Key(5,4.1)); in main()
31 InputList.push_back(Key(4,8.1)); in main()
32 InputList.push_back(Key(7,7.1)); in main()
33 InputList.push_back(Key(6,3.1)); in main()
35 first = InputList.begin(); in main()
[all …]
H A Drange_tree_map_2.cpp26 std::vector<Key> InputList, OutputList; in main() local
29 InputList.push_back(Key(Pure_key(8,5.1), 'a')); in main()
30 InputList.push_back(Key(Pure_key(1,1.1), 'b')); in main()
31 InputList.push_back(Key(Pure_key(3,2.1), 'c')); in main()
32 InputList.push_back(Key(Pure_key(2,6.1), 'd')); in main()
33 InputList.push_back(Key(Pure_key(5,4.1), 'e')); in main()
34 InputList.push_back(Key(Pure_key(4,8.1), 'f')); in main()
35 InputList.push_back(Key(Pure_key(7,7.1), 'g')); in main()
36 InputList.push_back(Key(Pure_key(6,3.1), 'h')); in main()
38 first = InputList.begin(); in main()
[all …]
H A Dsegment_tree_1.cpp18 std::list<Interval> InputList, OutputList, N; in main() local
21 InputList.push_back(Interval(64, 81)); in main()
22 InputList.push_back(Interval(465, 499)); in main()
23 InputList.push_back(Interval(288, 379)); in main()
24 InputList.push_back(Interval(314, 375)); in main()
28 l_iterator first = InputList.begin(); in main()
29 l_iterator last = InputList.end(); in main()
H A Dsegment_tree_2.cpp21 std::list<Interval> InputList, OutputList, N; in main() local
29 InputList.push_back(Interval(Key(64, 139), Key(81, 921.3))); in main()
30 InputList.push_back(Interval(Key(465, 504), Key(499, 829.0))); in main()
31 InputList.push_back(Interval(Key(288, 875), Key(379, 982.7))); in main()
32 InputList.push_back(Interval(Key(314, 465), Key(375, 711.5))); in main()
35 std::list<Interval>::iterator first = InputList.begin(); in main()
36 std::list<Interval>::iterator last = InputList.end(); in main()
H A Dsegment_tree_3.cpp20 std::list<Interval> InputList, OutputList, N; in main() local
23 InputList.push_back(Interval(Key(1, 3, 5), Key(2,5,7))); in main()
24 InputList.push_back(Interval(Key(2,6.7,5), Key(4,6.9, 8))); in main()
25 InputList.push_back(Interval(Key(2,4.55, 8), Key(5, 7.88, 10))); in main()
26 InputList.push_back(Interval(Key(2, 4.66, 5), Key(6, 8.99, 8))); in main()
29 std::list<Interval>::iterator first = InputList.begin(); in main()
30 std::list<Interval>::iterator last = InputList.end(); in main()
H A Dsegment_tree_set_2.cpp27 std::list<Interval> InputList, OutputList, N; in main() local
30 InputList.push_back(Interval(Key(1,5), Key(2,7))); in main()
31 InputList.push_back(Interval(Key(2,7), Key(3,8))); in main()
32 InputList.push_back(Interval(Key(6,9), Key(9,13))); in main()
33 InputList.push_back(Interval(Key(1,3), Key(3,9))); in main()
36 std::list<Interval>::iterator first = InputList.begin(); in main()
37 std::list<Interval>::iterator last = InputList.end(); in main()
H A Dsegment_tree_4.cpp20 std::list<Interval> InputList, OutputList, N; in main() local
23 InputList.push_back(Interval(Key(1, 4, 5, 2.5), Key(2,5,7, 4.7))); in main()
24 InputList.push_back(Interval(Key(2,6.7,5, 3.5), Key(4,6.9, 8, 7.9))); in main()
25 InputList.push_back(Interval(Key(2,4.55, 8, 5.5), Key(5, 7.88, 10, 9.9))); in main()
26 InputList.push_back(Interval(Key(2, 4.66, 5, 4.6), Key(6, 8.99, 8, 8.4))); in main()
29 std::list<Interval>::iterator first = InputList.begin(); in main()
30 std::list<Interval>::iterator last = InputList.end(); in main()
H A Dsegment_tree_set_3.cpp22 std::list<Interval> InputList, OutputList, N; in main() local
25 InputList.push_back(Interval(Key(1,5,7), Key(2,7,9))); in main()
26 InputList.push_back(Interval(Key(2,7,6), Key(3,8,9))); in main()
27 InputList.push_back(Interval(Key(6,9,5), Key(9,13,8))); in main()
28 InputList.push_back(Interval(Key(1,3,4), Key(3,9,8))); in main()
31 std::list<Interval>::iterator first = InputList.begin(); in main()
32 std::list<Interval>::iterator last = InputList.end(); in main()
H A Dsegment_tree_map_2.cpp26 std::list<Interval> InputList, OutputList, N; in main() local
31 InputList.push_back(Interval(Pure_interval(Key(1,5), Key(2,7)),'a')); in main()
32 InputList.push_back(Interval(Pure_interval(Key(2,7), Key(3,8)),'b')); in main()
33 InputList.push_back(Interval(Pure_interval(Key(6,9), Key(9,13)),'c')); in main()
34 InputList.push_back(Interval(Pure_interval(Key(1,3), Key(3,9)),'d')); in main()
37 std::list<Interval>::iterator first = InputList.begin(); in main()
38 std::list<Interval>::iterator last = InputList.end(); in main()
H A Drange_tree_2.cpp19 std::vector<Key> InputList, OutputList; in main() local
28 InputList.push_back(Key(first_key++,second_key++)); in main()
31 first = InputList.begin(); in main()
32 last = InputList.end(); in main()
33 std::cerr << InputList.size(); in main()
/dports/net/tigervnc-server/tigervnc-1.12.0/win/winvnc/
H A DListConnInfo.h83 void Copy(ListConnInfo* InputList) { in Copy()
85 if (InputList->Empty()) return; in Copy()
86 for (InputList->iBegin(); !InputList->iEnd(); InputList->iNext()) { in Copy()
87 iAdd(InputList); in Copy()
89 setDisable(InputList->getDisable()); in Copy()
92 void iAdd (ListConnInfo* InputList) { in iAdd()
94 InputList->iGetCharInfo(buf); in iAdd()
95 addInfo(InputList->iGetConn(), buf[0], InputList->iGetStatus()); in iAdd()
/dports/net/tigervnc-viewer/tigervnc-1.12.0/win/winvnc/
H A DListConnInfo.h83 void Copy(ListConnInfo* InputList) { in Copy()
85 if (InputList->Empty()) return; in Copy()
86 for (InputList->iBegin(); !InputList->iEnd(); InputList->iNext()) { in Copy()
87 iAdd(InputList); in Copy()
89 setDisable(InputList->getDisable()); in Copy()
92 void iAdd (ListConnInfo* InputList) { in iAdd()
94 InputList->iGetCharInfo(buf); in iAdd()
95 addInfo(InputList->iGetConn(), buf[0], InputList->iGetStatus()); in iAdd()
/dports/math/vtk8/VTK-8.2.0/Filters/Programmable/
H A DvtkProgrammableAttributeDataFilter.cxx32 this->InputList = vtkDataSetCollection::New(); in vtkProgrammableAttributeDataFilter()
42 if (this->InputList) in ~vtkProgrammableAttributeDataFilter()
44 this->InputList->Delete(); in ~vtkProgrammableAttributeDataFilter()
45 this->InputList = nullptr; in ~vtkProgrammableAttributeDataFilter()
52 if ( ! this->InputList->IsItemPresent(ds) ) in AddInput()
55 this->InputList->AddItem(ds); in AddInput()
62 if ( this->InputList->IsItemPresent(ds) ) in RemoveInput()
65 this->InputList->RemoveItem(ds); in RemoveInput()
136 this->InputList->PrintSelf(os,indent.GetNextIndent()); in PrintSelf()
154 vtkGarbageCollectorReport(collector, this->InputList, "InputList"); in ReportReferences()
/dports/math/vtk9/VTK-9.1.0/Filters/Programmable/
H A DvtkProgrammableAttributeDataFilter.cxx32 this->InputList = vtkDataSetCollection::New(); in vtkProgrammableAttributeDataFilter()
42 if (this->InputList) in ~vtkProgrammableAttributeDataFilter()
44 this->InputList->Delete(); in ~vtkProgrammableAttributeDataFilter()
45 this->InputList = nullptr; in ~vtkProgrammableAttributeDataFilter()
52 if (!this->InputList->IsItemPresent(ds)) in AddInput()
55 this->InputList->AddItem(ds); in AddInput()
62 if (this->InputList->IsItemPresent(ds)) in RemoveInput()
65 this->InputList->RemoveItem(ds); in RemoveInput()
130 this->InputList->PrintSelf(os, indent.GetNextIndent()); in PrintSelf()
146 vtkGarbageCollectorReport(collector, this->InputList, "InputList"); in ReportReferences()
/dports/math/vtk6/VTK-6.2.0/Filters/Programmable/
H A DvtkProgrammableAttributeDataFilter.cxx32 this->InputList = vtkDataSetCollection::New(); in vtkProgrammableAttributeDataFilter()
42 if (this->InputList) in ~vtkProgrammableAttributeDataFilter()
44 this->InputList->Delete(); in ~vtkProgrammableAttributeDataFilter()
45 this->InputList = NULL; in ~vtkProgrammableAttributeDataFilter()
52 if ( ! this->InputList->IsItemPresent(ds) ) in AddInput()
55 this->InputList->AddItem(ds); in AddInput()
62 if ( this->InputList->IsItemPresent(ds) ) in RemoveInput()
65 this->InputList->RemoveItem(ds); in RemoveInput()
136 this->InputList->PrintSelf(os,indent.GetNextIndent()); in PrintSelf()
154 vtkGarbageCollectorReport(collector, this->InputList, "InputList"); in ReportReferences()
/dports/math/vtk8/VTK-8.2.0/Filters/General/
H A DvtkInterpolateDataSetAttributes.cxx36 this->InputList = vtkDataSetCollection::New(); in vtkInterpolateDataSetAttributes()
43 if (this->InputList) in ~vtkInterpolateDataSetAttributes()
45 this->InputList->Delete(); in ~vtkInterpolateDataSetAttributes()
46 this->InputList = nullptr; in ~vtkInterpolateDataSetAttributes()
53 this->InputList->RemoveAllItems(); in GetInputList()
57 this->InputList->AddItem(static_cast<vtkDataSet *>(this->GetExecutive()->GetInputData(0, i))); in GetInputList()
59 return this->InputList; in GetInputList()
250 vtkGarbageCollectorReport(collector, this->InputList, "InputList"); in ReportReferences()
/dports/math/vtk9/VTK-9.1.0/Filters/General/
H A DvtkInterpolateDataSetAttributes.cxx36 this->InputList = vtkDataSetCollection::New(); in vtkInterpolateDataSetAttributes()
43 if (this->InputList) in ~vtkInterpolateDataSetAttributes()
45 this->InputList->Delete(); in ~vtkInterpolateDataSetAttributes()
46 this->InputList = nullptr; in ~vtkInterpolateDataSetAttributes()
53 this->InputList->RemoveAllItems(); in GetInputList()
57 this->InputList->AddItem(static_cast<vtkDataSet*>(this->GetExecutive()->GetInputData(0, i))); in GetInputList()
59 return this->InputList; in GetInputList()
242 vtkGarbageCollectorReport(collector, this->InputList, "InputList"); in ReportReferences()
/dports/math/vtk6/VTK-6.2.0/Filters/General/
H A DvtkInterpolateDataSetAttributes.cxx36 this->InputList = vtkDataSetCollection::New(); in vtkInterpolateDataSetAttributes()
43 if (this->InputList) in ~vtkInterpolateDataSetAttributes()
45 this->InputList->Delete(); in ~vtkInterpolateDataSetAttributes()
46 this->InputList = NULL; in ~vtkInterpolateDataSetAttributes()
53 this->InputList->RemoveAllItems(); in GetInputList()
57 this->InputList->AddItem(static_cast<vtkDataSet *>(this->GetExecutive()->GetInputData(0, i))); in GetInputList()
59 return this->InputList; in GetInputList()
250 vtkGarbageCollectorReport(collector, this->InputList, "InputList"); in ReportReferences()
/dports/graphics/opencollada/OpenCOLLADA-1.6.68/COLLADAStreamWriter/include/
H A DCOLLADASWInputList.h24 class InputList; variable
116 class InputList : public ElementWriter
143 InputList ( StreamWriter* streamWriter ) : ElementWriter ( streamWriter ) {} in InputList() function
146 virtual ~InputList() {} in ~InputList()
/dports/math/vtk8/VTK-8.2.0/Filters/Core/
H A DvtkAppendFilter.cxx39 this->InputList = nullptr; in vtkAppendFilter()
47 if (this->InputList != nullptr) in ~vtkAppendFilter()
49 this->InputList->Delete(); in ~vtkAppendFilter()
50 this->InputList = nullptr; in ~vtkAppendFilter()
88 if (this->InputList) in GetInputList()
90 this->InputList->Delete(); in GetInputList()
92 this->InputList = vtkDataSetCollection::New(); in GetInputList()
98 this->InputList->AddItem(this->GetInput(idx)); in GetInputList()
102 return this->InputList; in GetInputList()
/dports/math/vtk9/VTK-9.1.0/Filters/Core/
H A DvtkAppendFilter.cxx43 this->InputList = nullptr; in vtkAppendFilter()
53 if (this->InputList != nullptr) in ~vtkAppendFilter()
55 this->InputList->Delete(); in ~vtkAppendFilter()
56 this->InputList = nullptr; in ~vtkAppendFilter()
92 if (this->InputList) in GetInputList()
94 this->InputList->Delete(); in GetInputList()
96 this->InputList = vtkDataSetCollection::New(); in GetInputList()
102 this->InputList->AddItem(this->GetInput(idx)); in GetInputList()
106 return this->InputList; in GetInputList()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/extension/
H A Ddb.h72 typedef std::list<Input *> InputList; typedef
75 InputList &get_input_list (InputList &ou_list);

123456789