Home
last modified time | relevance | path

Searched refs:constr (Results 1 – 25 of 1890) sorted by relevance

12345678910>>...76

/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/guiSQLiteStudio/windows/
H A Dconstrainttabmodel.cpp92 return getDetails(constr); in data()
134 return getDetails(constr); in data()
270 switch (constr->type) in getDetails()
273 return getPkDetails(constr); in getDetails()
277 return getCheckDetails(constr); in getDetails()
279 return getFkDetails(constr); in getDetails()
288 switch (constr->type) in getDetails()
291 return getPkDetails(constr); in getDetails()
297 return getCheckDetails(constr); in getDetails()
305 return getFkDetails(constr); in getDetails()
[all …]
H A Dtableconstraintsmodel.cpp56 return getDetails(constr); in data()
207 constr->setParent(createTable); in replaceConstraint()
229 constr->setParent(createTable); in insertConstraint()
243 constr->setParent(createTable); in appendConstraint()
349 switch (constr->type) in getDetails()
352 return getPkDetails(constr); in getDetails()
356 return getCheckDetails(constr); in getDetails()
358 return getFkDetails(constr); in getDetails()
412 switch (constr->type) in handleColumnDeleted()
452 constr->rebuildTokens(); in columnModified()
[all …]
H A Dconstrainttabmodel.h18 QVariant data(SqliteCreateTable::Constraint* constr, int column, int role) const;
41 QString getDetails(SqliteCreateTable::Constraint* constr) const;
42 QString getDetails(SqliteCreateTable::Column::Constraint* constr) const;
44 QString getPkDetails(SqliteCreateTable::Constraint* constr) const;
45 QString getUniqueDetails(SqliteCreateTable::Constraint* constr) const;
46 QString getCheckDetails(SqliteCreateTable::Constraint* constr) const;
47 QString getFkDetails(SqliteCreateTable::Constraint* constr) const;
49 QString getPkDetails(SqliteCreateTable::Column::Constraint* constr) const;
50 QString getUniqueDetails(SqliteCreateTable::Column::Constraint* constr) const;
51 QString getCheckDetails(SqliteCreateTable::Column::Constraint* constr) const;
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/Plugins/SqlEnterpriseFormatter/
H A Dformatcreatetable.cpp116 constr(constr) in FormatCreateTableColumnConstraint()
122 if (!constr->name.isNull()) in formatInternal()
125 switch (constr->type) in formatInternal()
130 if (constr->autoincrKw) in formatInternal()
154 withId(constr->id); in formatInternal()
157 else if (constr->expr) in formatInternal()
178 if (constr->generatedKw) in formatInternal()
196 constr(constr) in FormatCreateTableConstraint()
202 if (!constr->name.isNull()) in formatInternal()
205 switch (constr->type) in formatInternal()
[all …]
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/tests/
H A Dtest_constraints.py51 constr.value()
54 assert constr.value()
65 assert constr.value()
74 copy = constr.copy()
94 constr.value()
97 assert constr.value()
109 assert constr.value()
118 copy = constr.copy()
138 constr.value()
155 copy = constr.copy()
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/guiSQLiteStudio/dialogs/
H A Dcolumndialogconstraintsmodel.cpp31 column->constraints[constrIdx] = constr; in replaceConstraint()
32 constr->setParent(column); in replaceConstraint()
44 constr->setParent(column); in insertConstraint()
56 column->constraints.append(constr); in appendConstraint()
57 constr->setParent(column); in appendConstraint()
136 switch (constr->type) in getIcon()
166 return constr->name; in getName()
172 switch (constr->type) in getType()
201 switch (constr->type) in getDetails()
204 return getPkDetails(constr); in getDetails()
[all …]
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/mindtpy/
H A Dcut_generation.py57 …if constr.has_ub() and constr.has_lb() and value(constr.lower) == value(constr.upper) and config.e…
59 rhs = constr.lower
73 if (constr.has_ub()
76 …or (config.linearize_inactive and constr.uslack() > 0)) or (constr.name == 'MindtPy_utils.objectiv…
91 if (constr.has_lb()
94 …or (config.linearize_inactive and constr.lslack() > 0)) or (constr.name == 'MindtPy_utils.objectiv…
137 if constr.has_lb() and constr.has_ub():
142 constr))
144 if constr.has_ub():
152 constr))
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/guiSQLiteStudio/constraints/
H A Dcolumndefaultpanel.cpp131 storeExpr(constr); in storeConfiguration()
147 clearDefault(constr); in storeExpr()
158 constr->expr = newExpr; in storeExpr()
180 clearDefault(constr); in storeLiteral()
191 constr->expr->setParent(constr); in storeLiteral()
201 if (constr->expr) in clearDefault()
203 delete constr->expr; in clearDefault()
204 constr->expr = nullptr; in clearDefault()
208 constr->id = QString(); in clearDefault()
209 constr->ctime = QString(); in clearDefault()
[all …]
H A Dtablecheckpanel.cpp13 …SqliteCreateTable::Constraint* constr = dynamic_cast<SqliteCreateTable::Constraint*>(constraint.da… in readExpr() local
14 return constr->expr; in readExpr()
19 …SqliteCreateTable::Constraint* constr = dynamic_cast<SqliteCreateTable::Constraint*>(constraint.da… in readName() local
20 return constr->name; in readName()
25 …SqliteCreateTable::Constraint* constr = dynamic_cast<SqliteCreateTable::Constraint*>(constraint.da… in storeType() local
26 constr->type = SqliteCreateTable::Constraint::CHECK; in storeType()
31 …SqliteCreateTable::Constraint* constr = dynamic_cast<SqliteCreateTable::Constraint*>(constraint.da… in readConflictAlgo() local
32 return constr->onConflict; in readConflictAlgo()
38 constr->expr = expr; in storeExpr()
44 constr->name = name; in storeName()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/6942326/
H A DTest.java311 int limit = tc.constr().length(); in test_consub_indexof()
316 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
348 public String constr(); in constr() method
355 public String constr() { return constr; } in constr() method in Test.TestCon17
362 public String constr() { return constr; } in constr() method in Test.TestCon16
369 public String constr() { return constr; } in constr() method in Test.TestCon9
376 public String constr() { return constr; } in constr() method in Test.TestCon8
383 public String constr() { return constr; } in constr() method in Test.TestCon4
390 public String constr() { return constr; } in constr() method in Test.TestCon3
397 public String constr() { return constr; } in constr() method in Test.TestCon2
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/6942326/
H A DTest.java311 int limit = tc.constr().length(); in test_consub_indexof()
316 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
348 public String constr(); in constr() method
355 public String constr() { return constr; } in constr() method in Test.TestCon17
362 public String constr() { return constr; } in constr() method in Test.TestCon16
369 public String constr() { return constr; } in constr() method in Test.TestCon9
376 public String constr() { return constr; } in constr() method in Test.TestCon8
383 public String constr() { return constr; } in constr() method in Test.TestCon4
390 public String constr() { return constr; } in constr() method in Test.TestCon3
397 public String constr() { return constr; } in constr() method in Test.TestCon2
[all …]
/dports/math/jacop/jacop-4.8.0/src/main/scala/org/jacop/scala/
H A Djacop.scala63 this.constr.clear()
316 getModel.constr += c
329 getModel.constr += c
342 getModel.constr += c
355 getModel.constr += c
369 getModel.constr += c
383 getModel.constr += c
397 getModel.constr += c
1475 getModel.constr.remove(getModel.constr.length - 1)
1488 getModel.constr.remove(getModel.constr.length - 1)
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java319 int limit = tc.constr().length(); in test_consub_indexof()
324 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start); in test_consub_indexof()
356 public String constr(); in constr() method
363 public String constr() { return constr; } in constr() method in Test6942326.TestCon17
370 public String constr() { return constr; } in constr() method in Test6942326.TestCon16
377 public String constr() { return constr; } in constr() method in Test6942326.TestCon9
384 public String constr() { return constr; } in constr() method in Test6942326.TestCon8
391 public String constr() { return constr; } in constr() method in Test6942326.TestCon4
398 public String constr() { return constr; } in constr() method in Test6942326.TestCon3
405 public String constr() { return constr; } in constr() method in Test6942326.TestCon2
[all …]
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/preprocessing/plugins/
H A Dremove_zero_terms.py40 for constr in m.component_data_objects(
42 if not constr.body.polynomial_degree() == 1:
44 repn = generate_standard_repn(constr.body)
57 if constr.equality:
58 constr.set_value(constr_body == constr.upper)
59 elif constr.has_lb() and not constr.has_ub():
60 constr.set_value(constr_body >= constr.lower)
61 elif constr.has_ub() and not constr.has_lb():
62 constr.set_value(constr_body <= constr.upper)
65 constr.set_value(EXPR.inequality(
[all …]
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/tests/src/datadicttest/
H A Ddatadicttest.cpp37 Constraint *constr = nullptr; in generateASimpleDataDict() local
75 constr = new Constraint; in generateASimpleDataDict()
76 constr->setName("table_test_pk"); in generateASimpleDataDict()
79 table->addConstraint(constr); in generateASimpleDataDict()
81 constr = new Constraint; in generateASimpleDataDict()
82 constr->setName("table_test_uq"); in generateASimpleDataDict()
87 table->addConstraint(constr); in generateASimpleDataDict()
99 constr = new Constraint; in generateASimpleDataDict()
100 constr->setName("table_test1_fk"); in generateASimpleDataDict()
105 constr->setReferencedTable(table); in generateASimpleDataDict()
[all …]
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/util/
H A Dinfeasible.py40 for constr in m.component_data_objects(
57 if constr.equality:
70 output_dict = dict(name=constr.name)
83 output_dict['body_expr'] = constr.body
84 if constr.equality:
93 if constr.has_lb():
105 if constr.has_ub():
167 for constr in m.component_data_objects(
169 if not constr.equality:
176 if (constr.has_ub() and
[all …]
/dports/science/quantum-espresso/q-e-qe-6.7.0/XSpectra/examples/reference/
H A DNiO.scf.out306 atom: 1 charge: 15.0228 magn: 12.5041 constr: 0.0000
307 atom: 2 charge: 15.0228 magn: -12.5041 constr: 0.0000
308 atom: 3 charge: 6.1326 magn: -0.0000 constr: 0.0000
309 atom: 4 charge: 6.1326 magn: -0.0000 constr: 0.0000
325 atom: 1 charge: 14.6205 magn: 9.3017 constr: 0.0000
326 atom: 2 charge: 14.6205 magn: -9.3017 constr: 0.0000
327 atom: 3 charge: 6.1280 magn: -0.0000 constr: 0.0000
328 atom: 4 charge: 6.1280 magn: -0.0000 constr: 0.0000
344 atom: 1 charge: 14.9045 magn: 7.4877 constr: 0.0000
345 atom: 2 charge: 14.9045 magn: -7.4878 constr: 0.0000
[all …]
/dports/devel/p5-OOTools/OOTools-2.4/lib/Class/
H A Dconstr.pm1 package Class::constr ;
17 ; foreach my $constr ( @args )
18 { my $n = $$constr{name} || 'new'
19 ; $$constr{init} &&= [ $$constr{init} ]
20 unless ref $$constr{init} eq 'ARRAY'
24 { &{$$constr{pre_process}} if defined $$constr{pre_process}
30 ; if (my $cdef = $$constr{default})
51 unless $$constr{no_strict}
52 ; if ( $$constr{skip_autoload} )
62 ; if ( $$constr{init} )
[all …]

12345678910>>...76