Home
last modified time | relevance | path

Searched refs:fromTable (Results 1 – 25 of 190) sorted by relevance

12345678

/dports/science/opensim-core/opensim-core-4.1/OpenSim/Common/Test/
H A DtestAPDMDataReader.cpp57 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
62 fromTable = accelTableTyped.getRowAtIndex(numRows - 1)[0]; in main()
64 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
69 fromTable = magTableTyped.getRowAtIndex(0)[0]; in main()
71 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
73 fromTable = magTableTyped.getRowAtIndex(numRows - 1)[0]; in main()
75 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
80 fromTable = gyroTableTyped.getRowAtIndex(0)[0]; in main()
82 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
83 fromTable = gyroTableTyped.getRowAtIndex(numRows - 1)[0]; in main()
[all …]
H A DtestXsensDataReader.cpp62 SimTK::Vec3 fromTable = accelTableTyped.getRowAtIndex(0)[0]; in main() local
65 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
69 fromTable = accelTableTyped.getRowAtIndex(numRows - 1)[0]; in main()
71 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
76 fromTable = magTableTyped.getRowAtIndex(0)[0]; in main()
78 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
83 fromTable = gyroTableTyped.getRowAtIndex(0)[0]; in main()
85 ASSERT_EQUAL(fromTable, fromFile, tolerance); in main()
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/tests/phpunit/unit/Elgg/Database/Clauses/
H A DComparisonClauseUnitTest.php21 $this->qb = Select::fromTable('entities', 'alias');
58 $qb = Select::fromTable('entities', 'alias');
73 $qb = Select::fromTable('entities', 'alias');
88 $qb = Select::fromTable('entities', 'alias');
103 $qb = Select::fromTable('entities', 'alias');
130 $qb = Select::fromTable('entities', 'alias');
155 $qb = Select::fromTable('entities', 'alias');
169 $qb = Select::fromTable('entities', 'alias');
184 $qb = Select::fromTable('entities', 'alias');
201 $qb = Select::fromTable('entities', 'alias');
[all …]
H A DJoinClauseUnitTest.php21 $this->qb = Select::fromTable('entities', 'alias');
33 $expected = Select::fromTable('entities', 'alias');
45 $expected = Select::fromTable('entities', 'alias');
61 $expected = Select::fromTable('entities', 'alias');
72 $expected = Select::fromTable('entities', 'alias');
85 $expected = Select::fromTable('entities', 'alias');
97 $expected = Select::fromTable('entities', 'alias');
110 $expected = Select::fromTable('entities', 'alias');
122 $expected = Select::fromTable('entities', 'alias');
134 $expected = Select::fromTable('entities', 'alias');
H A DEntitySortByClauseUnitTest.php20 $this->qb = Select::fromTable('entities', 'alias');
35 $qb = Select::fromTable('entities', 'alias');
51 $qb = Select::fromTable('entities', 'alias');
67 $qb = Select::fromTable('entities', 'alias');
84 $qb = Select::fromTable('entities', 'alias');
101 $qb = Select::fromTable('entities', 'alias');
119 $qb = Select::fromTable('entities', 'alias');
136 $qb = Select::fromTable('entities', 'alias');
154 $qb = Select::fromTable('entities', 'alias');
168 $qb = Select::fromTable('entities', 'alias');
[all …]
H A DAnnotationWhereClauseUnitTest.php21 $this->qb = Select::fromTable('entities', 'alias');
36 $qb = Select::fromTable('entities', 'alias');
55 $qb = Select::fromTable('entities', 'alias');
74 $qb = Select::fromTable('entities', 'alias');
95 $qb = Select::fromTable('entities', 'alias');
119 $qb = Select::fromTable('entities', 'alias');
138 $qb = Select::fromTable('entities', 'alias');
157 $qb = Select::fromTable('entities', 'alias');
186 $qb = Select::fromTable('entities', 'alias');
206 $qb = Select::fromTable('entities', 'alias');
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Database/Schema/
H A DComparator.php57 public function diffTable(Table $fromTable, Table $toTable) argument
59 $newTableOptions = array_merge($fromTable->getOptions(), $toTable->getOptions());
60 $optionDiff = array_diff_assoc($newTableOptions, $fromTable->getOptions());
61 $tableDifferences = parent::diffTable($fromTable, $toTable);
69 … $tableDifferences = GeneralUtility::makeInstance(TableDiff::class, $fromTable->getName());
70 $tableDifferences->fromTable = $fromTable;
84 $tableDifferences->fromTable
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Database/Schema/
H A DComparator.php61 public function diffTable(Table $fromTable, Table $toTable) argument
63 $newTableOptions = array_merge($fromTable->getOptions(), $toTable->getOptions());
64 …$optionDiff = ArrayUtility::arrayDiffAssocRecursive($newTableOptions, $fromTable->getOptions(), tr…
65 $tableDifferences = parent::diffTable($fromTable, $toTable);
73 … $tableDifferences = GeneralUtility::makeInstance(TableDiff::class, $fromTable->getName());
74 $tableDifferences->fromTable = $fromTable;
88 $tableDifferences->fromTable
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Database/Schema/
H A DComparator.php60 public function diffTable(Table $fromTable, Table $toTable) argument
62 $newTableOptions = array_merge($fromTable->getOptions(), $toTable->getOptions());
63 $optionDiff = array_diff_assoc($newTableOptions, $fromTable->getOptions());
64 $tableDifferences = parent::diffTable($fromTable, $toTable);
72 … $tableDifferences = GeneralUtility::makeInstance(TableDiff::class, $fromTable->getName());
73 $tableDifferences->fromTable = $fromTable;
87 $tableDifferences->fromTable
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php123 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
139 $changedIndexes = array(), $removedIndexes = array(), Table $fromTable = null) argument
148 $this->fromTable = $fromTable;
159 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php123 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
139 $changedIndexes = array(), $removedIndexes = array(), Table $fromTable = null) argument
148 $this->fromTable = $fromTable;
159 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/elgg/elgg-3.3.23/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/typo3-10/typo3_src-10.4.25/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/typo3-11/typo3_src-11.5.7/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/owncloud/owncloud/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/www/nextcloud/nextcloud/3rdparty/doctrine/dbal/src/Schema/
H A DTableDiff.php96 public $fromTable; variable in Doctrine\\DBAL\\Schema\\TableDiff
117 ?Table $fromTable = null argument
126 $this->fromTable = $fromTable;
137 … $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DSqlitePlatform.php699 if (! $diff->fromTable instanceof Table) {
706 foreach ($diff->fromTable->getIndexes() as $index) {
722 $fromTable = $diff->fromTable;
724 if (! $fromTable instanceof Table) {
867 $fromTable = $diff->fromTable;
868 if (! $fromTable instanceof Table) {
874 $table = clone $fromTable;
972 $sql[] = $this->getDropTableSQL($fromTable);
1101 foreach ($fromTable->getColumns() as $columnName => $column) {
1139 $indexes = $fromTable->getIndexes();
[all …]
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DSqlitePlatform.php699 if (! $diff->fromTable instanceof Table) {
706 foreach ($diff->fromTable->getIndexes() as $index) {
722 $fromTable = $diff->fromTable;
724 if (! $fromTable instanceof Table) {
867 $fromTable = $diff->fromTable;
868 if (! $fromTable instanceof Table) {
874 $table = clone $fromTable;
972 $sql[] = $this->getDropTableSQL($fromTable);
1101 foreach ($fromTable->getColumns() as $columnName => $column) {
1139 $indexes = $fromTable->getIndexes();
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DSqlitePlatform.php699 if (! $diff->fromTable instanceof Table) {
706 foreach ($diff->fromTable->getIndexes() as $index) {
722 $fromTable = $diff->fromTable;
724 if (! $fromTable instanceof Table) {
867 $fromTable = $diff->fromTable;
868 if (! $fromTable instanceof Table) {
874 $table = clone $fromTable;
972 $sql[] = $this->getDropTableSQL($fromTable);
1101 foreach ($fromTable->getColumns() as $columnName => $column) {
1139 $indexes = $fromTable->getIndexes();
[all …]
/dports/www/owncloud/owncloud/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DSqlitePlatform.php699 if (! $diff->fromTable instanceof Table) {
706 foreach ($diff->fromTable->getIndexes() as $index) {
722 $fromTable = $diff->fromTable;
724 if (! $fromTable instanceof Table) {
867 $fromTable = $diff->fromTable;
868 if (! $fromTable instanceof Table) {
874 $table = clone $fromTable;
972 $sql[] = $this->getDropTableSQL($fromTable);
1101 foreach ($fromTable->getColumns() as $columnName => $column) {
1139 $indexes = $fromTable->getIndexes();
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/tests/phpunit/unit/Elgg/Database/
H A DQueryBuilderTest.php18 $this->qb = Select::fromTable('foo', 'f');
70 $expected = Select::fromTable('foo', 'f');
90 $expected = Select::fromTable('foo', 'f');
105 $expected = Select::fromTable('foo', 'f');
122 $expected = Select::fromTable('foo', 'f');
143 $expected = Select::fromTable('foo', 'f');
166 $expected = Select::fromTable('foo', 'f');
183 $expected = Select::fromTable('foo', 'f');
204 $expected = Select::fromTable('foo', 'f');
227 $expected = Select::fromTable('foo', 'f');
[all …]

12345678