Home
last modified time | relevance | path

Searched refs:sub_objects (Results 1 – 25 of 51) sorted by relevance

123

/dports/www/ilias/ILIAS-5.4.25/Services/Object/classes/
H A Dclass.ilObjectAddNewItemGUI.php53 protected $sub_objects; // [array] variable in ilObjectAddNewItemGUI
131 $this->sub_objects = array();
149 $this->sub_objects[] = array("type" => "object",
155 $this->sub_objects = ilUtil::sortArray($this->sub_objects, "title", 1);
157 return (bool) sizeof($this->sub_objects);
171 $this->sub_objects = array();
252 … $this->sub_objects[] = array("type" => "column_separator");
261 $this->sub_objects[] = array("type" => "group",
276 $this->sub_objects[] = array("type" => "object",
284 return (bool) sizeof($this->sub_objects);
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/Object/classes/
H A Dclass.ilObjectAddNewItemGUI.php53 protected $sub_objects; // [array] variable in ilObjectAddNewItemGUI
131 $this->sub_objects = array();
151 $this->sub_objects[] = array("type" => "object",
157 $this->sub_objects = ilUtil::sortArray($this->sub_objects, "title", 1);
159 return (bool) sizeof($this->sub_objects);
173 $this->sub_objects = array();
254 … $this->sub_objects[] = array("type" => "column_separator");
263 $this->sub_objects[] = array("type" => "group",
278 $this->sub_objects[] = array("type" => "object",
286 return (bool) sizeof($this->sub_objects);
[all …]
/dports/devel/xparam/xparam-1.22/lib/xparam/
H A Dxpv_subobject_output.h69 ValueList sub_objects = F::sub_objects(*obj); in output() local
75 for (i=sub_objects.begin(); i!=sub_objects.end(); ++i) { in output()
76 if (i!=sub_objects.begin()) in output()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/lac/
H A Dblock_sparsity_pattern.cc88 sub_objects[i][j] = nullptr; in reinit()
91 sub_objects.reinit(0, 0); in reinit()
96 sub_objects.reinit(rows, columns); in reinit()
103 sub_objects[i][j] = p; in reinit()
118 *sub_objects[i][j] = *bsp.sub_objects[i][j]; in operator =()
137 row_sizes[r] = sub_objects[r][0]->n_rows(); in collect_sizes()
153 col_sizes[c] = sub_objects[0][c]->n_cols(); in collect_sizes()
172 sub_objects[i][j]->compress(); in compress()
183 if (sub_objects[i][j]->empty() == false) in empty()
217 count += sub_objects[r][0]->n_rows(); in n_rows()
[all …]
H A Dtrilinos_block_sparse_matrix.cc53 this->sub_objects.reinit(n_block_rows, n_block_columns); in reinit()
63 Assert(this->sub_objects[r][c] == nullptr, ExcInternalError()); in reinit()
64 this->sub_objects[r][c] = p; in reinit()
115 this->sub_objects[r][c]->reinit(parallel_partitioning[r], in reinit()
157 this->sub_objects[r][c]->reinit(block_sparsity_pattern.block(r, c)); in reinit()
187 this->sub_objects[r][c]->reinit(parallel_partitioning[r], in reinit()
313 return this->sub_objects[0][0]->get_mpi_communicator(); in get_mpi_communicator()
H A Dpetsc_parallel_block_sparse_matrix.cc46 this->sub_objects.reinit(n_block_rows, n_block_columns); in reinit()
55 this->sub_objects[r][c] = p; in reinit()
70 this->sub_objects.reinit(bdsp.n_block_rows(), bdsp.n_block_cols()); in reinit()
92 this->sub_objects[r][c] = p; in reinit()
/dports/deskutils/egroupware/egroupware/api/src/Egw/
H A DBase.php60 static $sub_objects = array( variable in EGroupware\\Api\\Egw\\Base
100 …if (!isset(self::$sub_objects[$name]) && !class_exists('EGroupware\\Api\\'.ucfirst($name)) && !cla…
126 …$class = isset(self::$sub_objects[$name]) ? self::$sub_objects[$name] : 'EGroupware\\Api\\'.ucfirs…
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/lac/
H A Dblock_sparsity_pattern.h362 sub_objects; variable
761 return *sub_objects[row][column]; in block()
774 return *sub_objects[row][column]; in block()
809 sub_objects[row_index.first][col_index.first]->add(row_index.second, in add()
893 sub_objects[row_index.first][block_col]->add_entries( in add_entries()
916 return sub_objects[row_index.first][col_index.first]->exists( in exists()
933 c += sub_objects[row_index.first][b]->row_length(row_index.second); in row_length()
972 sub_objects[row_index.first][b]->row_length(row_index.second); in column_number()
975 sub_objects[row_index.first][b]->column_number(row_index.second, in column_number()
978 block_columns += sub_objects[row_index.first][b]->n_cols(); in column_number()
H A Dblock_sparse_matrix.templates.h104 this->sub_objects.reinit(sparsity.n_block_rows(), sparsity.n_block_cols()); in reinit()
112 this->sub_objects[r][c] = p; in reinit()
158 count += this->sub_objects[i][j]->n_actually_nonzero_elements(threshold); in n_actually_nonzero_elements()
199 mem += MemoryConsumption::memory_consumption(this->sub_objects); in memory_consumption()
202 mem += MemoryConsumption::memory_consumption(*this->sub_objects[r][c]); in memory_consumption()
H A Dblock_matrix_base.h1528 MemoryConsumption::memory_consumption(sub_objects) + in memory_consumption()
1537 MatrixType *p = this->sub_objects[r][c]; in memory_consumption()
1553 MatrixType *p = this->sub_objects[r][c]; in clear()
1554 this->sub_objects[r][c] = nullptr; in clear()
1557 sub_objects.reinit(0, 0); in clear()
1573 return *sub_objects[row][column]; in block()
1586 return *sub_objects[row][column]; in block()
2607 row_sizes[r] = sub_objects[r][0]->m(); in collect_sizes()
2613 Assert(row_sizes[r] == sub_objects[r][c]->m(), in collect_sizes()
2623 col_sizes[c] = sub_objects[0][c]->n(); in collect_sizes()
[all …]
/dports/devel/xparam/xparam-1.22/examples/involved/src/
H A Dreg_shapes.cpp43 static ValueList sub_objects(const Point& p) { in sub_objects() function in Point_output
51 static ValueList sub_objects(const Composite& c) { in sub_objects() function in Composite_output
H A Dreg_circle.cpp43 static ValueList sub_objects(const Circle& c) { in sub_objects() function in Circle_output
/dports/devel/xparam/xparam-1.22/doc/doc_examples/
H A Dreg_shapes.cpp12 static ValueList sub_objects(const Point& p) { in sub_objects() function in Point_output
20 static ValueList sub_objects(const Composite& c) { in sub_objects() function in Composite_output
H A Dreg_circle.cpp12 static ValueList sub_objects(const Circle& c) { in sub_objects() function in Circle_output
/dports/databases/p5-Rose-DB-Object/Rose-DB-Object-0.814/lib/Rose/DB/Object/
H A DManager.pm2124 my(@seen, %seen, @sub_objects);
2351 $sub_objects[$i] = $subobject;
2520 my @sub_objects;
2546 $sub_objects[$i] = $subobject;
2680 my(@seen, %seen, @sub_objects);
2882 push(@{$sub_objects[$i]}, $subobject);
2887 push(@{$sub_objects[$i]}, $subobject);
2893 $parent_object = $sub_objects[$bt];
2994 my @sub_objects;
3018 $sub_objects[$i] = $subobject;
[all …]
H A DHelpers.pm919 my(@objects, @sub_objects);
937 push(@sub_objects, \%rel_vals);
949 my $sub_objects = shift(@sub_objects);
950 Rose::DB::Object::Helpers::init_with_tree($object, $sub_objects) if(%$sub_objects);
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/storage/
H A Ddelete.py124 sub_objects, _ = expander.ExpandPaths(dir_paths)
125 objects.update(sub_objects)
/dports/www/ilias/ILIAS-5.4.25/Services/SystemCheck/classes/
H A Dclass.ilSCCronTrash.php124 $sub_objects = $GLOBALS['DIC']['tree']->lookupTrashedObjectTypes();
128 foreach ($sub_objects as $obj_type) {
/dports/devel/xparam/xparam-1.22/tests/include/
H A Dtest_reg_duck.h68 static xParam::ValueList sub_objects(const duckling& d) { in sub_objects() function
76 static xParam::ValueList sub_objects(const ducky& d) { in sub_objects() function
H A Dtest_reg_coordinate.h22 static xParam::ValueList sub_objects(const coordinate& c) { in sub_objects() function
/dports/www/ilias6/ILIAS-6.14/Services/SystemCheck/classes/
H A Dclass.ilSCCronTrash.php124 $sub_objects = $GLOBALS['DIC']['tree']->lookupTrashedObjectTypes();
128 foreach ($sub_objects as $obj_type) {
/dports/www/ilias/ILIAS-5.4.25/Services/Bookmarks/classes/
H A Dclass.ilBookmarkImportExport.php161 $sub_objects = ilBookmarkFolder::getObjects($object['child']);
162 foreach ($sub_objects as $sub_object) {
/dports/devel/xparam/xparam-1.22/tests/src/
H A Dtest_reg_bottle.cpp12 static ValueList sub_objects(const bottle& b) { in sub_objects() function in bottle_output_functor
H A Dtest_reg_goose.cpp10 static ValueList sub_objects(const goose& g) { in sub_objects() function in GooseOutputFunctor
H A Dtest_reg_rawprinter.cpp12 static ValueList sub_objects(const rawprinter& r) { in sub_objects() function in rawprinter_output_functor

123