Home
last modified time | relevance | path

Searched refs:fetchValue (Results 1 – 25 of 116) sorted by relevance

12345

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/tests/unit/unittest/
H A Dsqlitestatementmock.h47 Type fetchValue(int column) const;
60 int BaseSqliteStatementMock::fetchValue<int>(int column) const
66 long BaseSqliteStatementMock::fetchValue<long>(int column) const
72 long long BaseSqliteStatementMock::fetchValue<long long>(int column) const
78 double BaseSqliteStatementMock::fetchValue<double>(int column) const
84 Utils::SmallString BaseSqliteStatementMock::fetchValue<Utils::SmallString>(int column) const
90 Utils::PathString BaseSqliteStatementMock::fetchValue<Utils::PathString>(int column) const
H A Dmocksqlitestatement.h56 Type fetchValue(int column) const;
77 int BaseMockSqliteStatement::fetchValue<int>(int column) const
83 long BaseMockSqliteStatement::fetchValue<long>(int column) const
89 long long BaseMockSqliteStatement::fetchValue<long long>(int column) const
95 double BaseMockSqliteStatement::fetchValue<double>(int column) const
101 Utils::SmallString BaseMockSqliteStatement::fetchValue<Utils::SmallString>(int column) const
107 Utils::PathString BaseMockSqliteStatement::fetchValue<Utils::PathString>(int column) const
H A Dsqlitestatement-test.cpp192 ASSERT_THAT(statement.fetchValue<int>(0), 0); in TEST_F()
193 ASSERT_THAT(statement.fetchValue<int64_t>(0), 0); in TEST_F()
194 ASSERT_THAT(statement.fetchValue<double>(0), 0.0); in TEST_F()
195 ASSERT_THAT(statement.fetchValue<Utils::SmallString>(0), "foo"); in TEST_F()
196 ASSERT_THAT(statement.fetchValue<Utils::PathString>(0), "foo"); in TEST_F()
198 ASSERT_THAT(statement.fetchValue<int>(1), 23); in TEST_F()
199 ASSERT_THAT(statement.fetchValue<int64_t>(1), 23); in TEST_F()
200 ASSERT_THAT(statement.fetchValue<double>(1), 23.3); in TEST_F()
202 ASSERT_THAT(statement.fetchValue<Utils::PathString>(1), "23.3"); in TEST_F()
244 ASSERT_THAT(statement.fetchValue<int>(1), 323); in TEST_F()
[all …]
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/acceptance-tests/actors/
H A Dbbl.go136 return b.fetchValue("lbs")
140 return b.fetchValue("director-username")
144 return b.fetchValue("director-password")
148 return b.fetchValue("director-address")
152 return b.fetchValue("director-ca-cert")
156 return b.fetchValue("jumpbox-address")
160 return b.fetchValue("ssh-key")
164 return b.fetchValue("director-ssh-key")
168 return b.fetchValue("env-id")
172 return b.fetchValue("print-env")
[all …]
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/Engines/
H A DInnodb.php335 $GLOBALS['dbi']->fetchValue('SHOW ENGINE INNODB STATUS;', 0, 'Status')
358 return $GLOBALS['dbi']->fetchValue('SELECT @@innodb_version;');
370 return $GLOBALS['dbi']->fetchValue(
387 $GLOBALS['dbi']->fetchValue(
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/Engines/
H A DInnodb.php307 . htmlspecialchars((string) $dbi->fetchValue(
334 return $dbi->fetchValue('SELECT @@innodb_version;');
348 $value = $dbi->fetchValue(
374 return $dbi->fetchValue(
/dports/devel/art/art-0.9.02/libs/libtplreader/
H A Dccloader.cc16 … *(size_t*) records[i].address = atoll(chunk.element.fetchValue(records[i].name).c_str()); in ccload()
20 *(string*) records[i].address = chunk.element.fetchValue(records[i].name); in ccload()
24 string s = chunk.element.fetchValue(records[i].name); in ccload()
H A Dgen_xml_sax_read.cc114 string Element::fetchValue(string name) { in fetchValue() function in Element
403 if("allocator" == chunk.element.fetchValue("__type__")) { in domainLoader()
406 } else if("deallocator" == chunk.element.fetchValue("__type__")) { in domainLoader()
409 } else if("reallocator" == chunk.element.fetchValue("__type__")) { in domainLoader()
412 } else if("operator" == chunk.element.fetchValue("__type__")) { in domainLoader()
416 cerr << "Unexpected element '" << chunk.element.fetchValue("__type__") in domainLoader()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/sqlite/
H A Dsqlitebasestatement.cpp735 int BaseStatement::fetchValue<int>(int column) const in fetchValue() function in Sqlite::BaseStatement
742 return long(fetchValue<long long>(column)); in fetchLongValue()
746 long BaseStatement::fetchValue<long>(int column) const in fetchValue() function in Sqlite::BaseStatement
757 long long BaseStatement::fetchValue<long long>(int column) const in fetchValue() function in Sqlite::BaseStatement
773 double BaseStatement::fetchValue<double>(int column) const in fetchValue() function in Sqlite::BaseStatement
779 StringType BaseStatement::fetchValue(int column) const in fetchValue() function in Sqlite::BaseStatement
784 template SQLITE_EXPORT Utils::SmallStringView BaseStatement::fetchValue<Utils::SmallStringView>(
786 template SQLITE_EXPORT Utils::SmallString BaseStatement::fetchValue<Utils::SmallString>(
788 template SQLITE_EXPORT Utils::PathString BaseStatement::fetchValue<Utils::PathString>(
793 return fetchValue<Utils::SmallStringView>(column); in fetchSmallStringViewValue()
[all …]
H A Dsqlitebasestatement.h82 Type fetchValue(int column) const;
156 template <> SQLITE_EXPORT int BaseStatement::fetchValue<int>(int column) const;
157 template <> SQLITE_EXPORT long BaseStatement::fetchValue<long>(int column) const;
158 template <> SQLITE_EXPORT long long BaseStatement::fetchValue<long long>(int column) const;
159 template <> SQLITE_EXPORT double BaseStatement::fetchValue<double>(int column) const;
160 extern template SQLITE_EXPORT Utils::SmallStringView BaseStatement::fetchValue<Utils::SmallStringVi…
161 extern template SQLITE_EXPORT Utils::SmallString BaseStatement::fetchValue<Utils::SmallString>(int …
162 extern template SQLITE_EXPORT Utils::PathString BaseStatement::fetchValue<Utils::PathString>(int co…
249 return statement.template fetchValue<Type>(0); in toValue()
/dports/www/tikiwiki/tiki-21.2/lib/rating/formula/
H A DTrackerField.php39 return $this->fetchValue($object, $field, $default);
42 protected function fetchValue($object, $field, $default) function in Tiki_Formula_Function_TrackerField
/dports/converters/wkhtmltopdf/qt-5db36ec/src/declarative/qml/
H A Dqdeclarativeinstruction.cpp209 …\t" << "FETCH_VALUE\t\t" << instr->fetchValue.property << "\t" << instr->fetchValue.type << "\t" <… in dump()
218 …"\t\t" << line << "\t" << "POP_VALUE\t\t" << instr->fetchValue.property << "\t" << instr->fetchVal… in dump()
/dports/cad/verilator/verilator-4.216/src/
H A DV3Simulate.h300 AstNode* fetchValue(AstNode* nodep) { in fetchValue() function
533 if (optimizable()) newValue(nodep, fetchValue(valuep)); in visit()
588 newValue(nodep, fetchValue(nodep->rhsp())); in visit()
590 newValue(nodep, fetchValue(nodep->lhsp())); // a zero in visit()
605 newValue(nodep, fetchValue(nodep->lhsp())); // a one in visit()
608 newValue(nodep, fetchValue(nodep->rhsp())); in visit()
628 newValue(nodep, fetchValue(nodep->rhsp())); in visit()
646 newValue(nodep, fetchValue(nodep->expr1p())); in visit()
649 newValue(nodep, fetchValue(nodep->expr2p())); in visit()
785 assignOutValue(nodep, vscp, fetchValue(nodep->rhsp())); in visit()
[all …]
/dports/textproc/dom4j/dom4j-1.6.1/src/test/org/dom4j/
H A DThreadingTest.java203 value = fetchValue(qn); in testQNameCache()
209 value = fetchValue(qn); in testQNameCache()
214 value = fetchValue(qn); in testQNameCache()
234 public String fetchValue(QName qn) { in fetchValue() method in ThreadingTest
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/Navigation/Nodes/
H A DNodeDatabase.php132 $retval = (int)$GLOBALS['dbi']->fetchValue($query);
217 $retval = (int)$GLOBALS['dbi']->fetchValue($query);
263 $retval = (int)$GLOBALS['dbi']->fetchValue($query);
308 $retval = (int)$GLOBALS['dbi']->fetchValue($query);
H A DNodeTable.php101 $retval = (int)$GLOBALS['dbi']->fetchValue($query);
129 $retval = (int)$GLOBALS['dbi']->fetchValue($query);
/dports/math/rkward-kde/rkward-0.7.1/rkward/scriptbackends/
H A Drkcomponentscripting.cpp227 return (component->fetchValue (id, RKComponent::TraditionalValue)); in getValue()
232 return (component->fetchValue (id, RKComponent::StringValue)); in getString()
237 return (component->fetchValue (id, RKComponent::BooleanValue)); in getBoolean()
242 return (component->fetchValue (id, RKComponent::StringlistValue)); in getList()
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/declarative/qdeclarativeinstruction/
H A Dtst_qdeclarativeinstruction.cpp459 i.fetchValue.property = 34; in dump()
460 i.fetchValue.type = 6; in dump()
461 i.fetchValue.bindingSkipList = 7; in dump()
483 i.fetchValue.property = 35; in dump()
484 i.fetchValue.type = 8; in dump()
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/Navigation/Nodes/
H A DNodeDatabase.php137 $retval = (int) $dbi->fetchValue($query);
224 $retval = (int) $dbi->fetchValue($query);
272 $retval = (int) $dbi->fetchValue($query);
319 $retval = (int) $dbi->fetchValue($query);
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/templates/database/structure/
H A Dbody_for_table_summary.twig42 {% set default_engine = dbi.fetchValue('SELECT @@storage_engine;') %}
45 {% set default_engine = dbi.fetchValue('SELECT @@default_storage_engine;') %}
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/designercore/projectstorage/
H A Dsourcepathcache.h127 auto fetchValue(SourceContextId id) { return storage.fetchSourceContextPath(id); } in fetchValue() function
142 auto fetchValue(SourceId id) in fetchValue() function
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/
H A DDatabaseInterface.php1014 return $this->fetchValue(
1234 public function fetchValue( function in PhpMyAdmin\\DatabaseInterface
1549 $result = $this->fetchValue($query, 0, $returned_field[$which], $link);
1753 $user = $this->fetchValue('SELECT CURRENT_USER();');
1917 $this->lowerCaseTableNames = $this->fetchValue(
2196 return $this->fetchValue('SELECT LAST_INSERT_ID();', 0, 0, $link);
2332 $result = $this->fetchValue($sql);
2393 return $this->fetchValue($sql);
2397 $return = $this->fetchValue('SELECT @@collation_database');
2410 return $this->fetchValue('SELECT @@collation_server');
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/templates/database/structure/
H A Dbody_for_table_summary.twig40 {% set default_engine = dbi.fetchValue('SELECT @@storage_engine;') %}
43 {% set default_engine = dbi.fetchValue('SELECT @@default_storage_engine;') %}
/dports/www/phalcon4/cphalcon-4.1.1/tests/database/DataMapper/Pdo/Connection/
H A DFetchValueCest.php37 $all = $connection->fetchValue(
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/
H A DDatabaseInterface.php1402 return $this->fetchValue(
1622 …public function fetchValue($query, $row_number = 0, $field = 0, $link = DatabaseInterface::CONNECT… function in PhpMyAdmin\\DatabaseInterface
1922 return($this->fetchValue($query, 0, $returned_field[$which], $link));
2222 $user = $this->fetchValue('SELECT CURRENT_USER();');
2355 $this->_lower_case_table_names = $this->fetchValue(
2754 return $this->fetchValue('SELECT LAST_INSERT_ID();', 0, 0, $link);
2887 $result = $this->fetchValue($sql);
2953 return $this->fetchValue($sql);
2957 $return = $this->fetchValue('SELECT @@collation_database');
2971 return $this->fetchValue('SELECT @@collation_server');

12345