Home
last modified time | relevance | path

Searched defs:fetch (Results 76 – 100 of 5661) sorted by relevance

12345678910>>...227

/dports/databases/postgresql13-client/postgresql-13.5/src/test/regress/sql/
H A Drangefuncs.sql52 fetch all from rf_cur; local
54 fetch all from rf_cur; local
55 fetch next from rf_cur; local
56 fetch next from rf_cur; local
57 fetch prior from rf_cur; local
59 fetch next from rf_cur; local
60 fetch next from rf_cur; local
61 fetch next from rf_cur; local
62 fetch prior from rf_cur; local
63 fetch prior from rf_cur; local
[all …]
/dports/databases/postgresql13-docs/postgresql-13.5/src/test/regress/sql/
H A Drangefuncs.sql52 fetch all from rf_cur; local
54 fetch all from rf_cur; local
55 fetch next from rf_cur; local
56 fetch next from rf_cur; local
57 fetch prior from rf_cur; local
59 fetch next from rf_cur; local
60 fetch next from rf_cur; local
61 fetch next from rf_cur; local
62 fetch prior from rf_cur; local
63 fetch prior from rf_cur; local
[all …]
/dports/databases/postgresql13-plperl/postgresql-13.5/src/test/regress/sql/
H A Drangefuncs.sql52 fetch all from rf_cur; local
54 fetch all from rf_cur; local
55 fetch next from rf_cur; local
56 fetch next from rf_cur; local
57 fetch prior from rf_cur; local
59 fetch next from rf_cur; local
60 fetch next from rf_cur; local
61 fetch next from rf_cur; local
62 fetch prior from rf_cur; local
63 fetch prior from rf_cur; local
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/fetch/
H A Dcached_xhr.cpp20 attr.onsuccess = [](emscripten_fetch_t *fetch) { in fetchFromIndexedDB()
32 attr.onprogress = [](emscripten_fetch_t *fetch) { in fetchFromIndexedDB()
40 emscripten_fetch_t *fetch = emscripten_fetch(&attr, "gears.png"); in fetchFromIndexedDB() local
49 attr.onsuccess = [](emscripten_fetch_t *fetch) { in main()
58 attr.onprogress = [](emscripten_fetch_t *fetch) { in main()
66 emscripten_fetch_t *fetch = emscripten_fetch(&attr, "gears.png"); in main() local
H A Dto_indexeddb.cpp20 attr.onsuccess = [](emscripten_fetch_t *fetch) { in main()
36 attr.onprogress = [](emscripten_fetch_t *fetch) { in main()
46 attr.onerror = [](emscripten_fetch_t *fetch) { in main()
50 emscripten_fetch_t *fetch = emscripten_fetch(&attr, "gears.png"); in main() local
H A Dsync_xhr.cpp21 attr.onsuccess = [](emscripten_fetch_t *fetch) { in main()
38 attr.onprogress = [](emscripten_fetch_t *fetch) { in main()
46 attr.onerror = [](emscripten_fetch_t *fetch) { in main()
51 emscripten_fetch_t *fetch = emscripten_fetch(&attr, "gears.png"); in main() local
H A Dto_memory.cpp26 attr.onsuccess = [](emscripten_fetch_t *fetch) { in main()
56 attr.onprogress = [](emscripten_fetch_t *fetch) { in main()
77 attr.onerror = [](emscripten_fetch_t *fetch) { in main()
96 emscripten_fetch_t *fetch = emscripten_fetch(&attr, "gears.png"); in main() local
H A Dresponse_headers.cpp29 { in main()
69 attr.onerror = [] ( emscripten_fetch_t *fetch ) in main()
70 { in main()
76 emscripten_fetch_t *fetch = emscripten_fetch( &attr, "gears.png" ); in main() local
H A Dexample_xhr_progress.cpp10 void downloadSucceeded(emscripten_fetch_t *fetch) in downloadSucceeded()
17 void downloadFailed(emscripten_fetch_t *fetch) in downloadFailed()
23 void downloadProgress(emscripten_fetch_t *fetch) in downloadProgress()
H A Dexample_stream_async_xhr.cpp10 void downloadSucceeded(emscripten_fetch_t *fetch) in downloadSucceeded()
17 void downloadFailed(emscripten_fetch_t *fetch) in downloadFailed()
23 void downloadProgress(emscripten_fetch_t *fetch) in downloadProgress()
/dports/www/netsurf/netsurf-3.10/content/
H A Dfetch.c89 struct fetch { struct
90 fetch_callback callback;/**< Callback function. */ argument
98 int fetcherd; /**< Fetcher descriptor for this fetch */ argument
99 void *fetcher_handle; /**< The handle for the fetcher. */ argument
100 bool fetch_is_active; /**< This fetch is active. */ argument
149 static bool fetch_dispatch_job(struct fetch *fetch) in fetch_dispatch_job()
462 struct fetch *fetch; in fetch_start() local
643 void fetch_change_callback(struct fetch *fetch, in fetch_change_callback()
653 long fetch_http_code(struct fetch *fetch) in fetch_http_code()
808 void fetch_remove_from_queues(struct fetch *fetch) in fetch_remove_from_queues()
[all …]
/dports/databases/dbixx/dbixx-0.0.4/
H A Drow.cpp119 bool row::fetch(int pos,short &v) { return sfetch(pos,v); } in fetch() function in dbixx::row
120 bool row::fetch(int pos,int &v) { return sfetch(pos,v); } in fetch() function in dbixx::row
121 bool row::fetch(int pos,long &v) { return sfetch(pos,v); } in fetch() function in dbixx::row
123 bool row::fetch(int pos,unsigned int &v) { return ufetch(pos,v); } in fetch() function in dbixx::row
126 bool row::fetch(int pos,long long &v) in fetch() function in dbixx::row
145 bool row::fetch(int pos,unsigned long long &v) in fetch() function in dbixx::row
164 bool row::fetch(int pos,string &v) in fetch() function in dbixx::row
183 bool row::fetch(int pos,float &v) in fetch() function in dbixx::row
192 bool row::fetch(int pos,long double &v) in fetch() function in dbixx::row
201 bool row::fetch(int pos,double &v) in fetch() function in dbixx::row
[all …]
/dports/databases/cppdb/cppdb-0.3.1/src/
H A Dfrontend.cpp166 bool result::fetch(int col,short &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
168 bool result::fetch(int col,int &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
169 bool result::fetch(int col,unsigned &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
170 bool result::fetch(int col,long &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
172 bool result::fetch(int col,long long &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
174 bool result::fetch(int col,float &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
175 bool result::fetch(int col,double &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
178 bool result::fetch(int col,std::tm &v) { return res_->fetch(col,v); } in fetch() function in cppdb::result
196 bool result::fetch(short &v) { return res_->fetch(current_col_++,v); } in fetch() function in cppdb::result
198 bool result::fetch(int &v) { return res_->fetch(current_col_++,v); } in fetch() function in cppdb::result
[all …]
/dports/security/erlang-jose/erlang-jose-1.11.1/test/cavp_SUITE_data/
H A Dfetch.erl11 -module(fetch). module
20 fetch(URL = "ftp" ++ _, OutputFile) -> function
61 fetch(URL = "http" ++ _, File) -> function
/dports/security/elixir-jose/erlang-jose-1.11.1/test/cavp_SUITE_data/
H A Dfetch.erl11 -module(fetch). module
20 fetch(URL = "ftp" ++ _, OutputFile) -> function
61 fetch(URL = "http" ++ _, File) -> function
/dports/sysutils/sensu-go/sensu-go-5.11.1/backend/apid/graphql/
H A Dnode.go93 func (f *assetNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
115 func (f *checkNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
137 func (f *entityNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
159 func (f *handlerNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
181 func (f *hookNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
203 func (f *mutatorNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
269 func (f *roleNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
313 func (f *userNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
335 func (f *eventNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
362 func (f *namespaceNodeResolver) fetch(p relay.NodeResolverParams) (interface{}, error) { func
[all …]
/dports/dns/dnsdbq/dnsdbq-2.6.0/
H A Dnetio.h53 struct fetch { struct
54 struct fetch *next; argument
66 typedef struct fetch *fetch_t; argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/extensions/browser/updater/
H A Dextension_downloader_unittest.cc45 std::unique_ptr<ManifestFetchData> fetch( in CreateTestAppFetchData() local
55 std::unique_ptr<ManifestFetchData> fetch) { in AddFetchDataToDownloader()
91 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
147 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
197 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
241 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
282 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
318 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
346 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
378 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/extensions/browser/updater/
H A Dextension_downloader_unittest.cc45 std::unique_ptr<ManifestFetchData> fetch( in CreateTestAppFetchData() local
55 std::unique_ptr<ManifestFetchData> fetch) { in AddFetchDataToDownloader()
91 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
147 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
197 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
241 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
282 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
318 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
346 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
378 std::unique_ptr<ManifestFetchData> fetch(CreateTestAppFetchData()); in TEST_F() local
/dports/databases/p5-DBIx-Class-Fixtures/DBIx-Class-Fixtures-1.001039/t/var/configs/
H A Dfetch.json3 "fetch": 0 number
6 "fetch": 0 number
11 "fetch": [{ array
20 "fetch": [{ array
29 "fetch": [{ array
H A Drules.json3 "fetch": 0 number
6 "fetch": 0 number
14 "fetch": [{ array
21 "fetch": 0 number
26 "fetch": [{ array
/dports/databases/cppdb/cppdb-0.3.1/test/
H A Ddummy_driver.h40 virtual bool fetch(int,short &) in fetch() function
45 virtual bool fetch(int,int &){ return false; } in fetch() function
46 virtual bool fetch(int,unsigned &){ return false; } in fetch() function
47 virtual bool fetch(int,long &){ return false; } in fetch() function
49 virtual bool fetch(int,long long &){ return false; } in fetch() function
51 virtual bool fetch(int,float &){ return false; } in fetch() function
52 virtual bool fetch(int,double &){ return false; } in fetch() function
53 virtual bool fetch(int,long double &){ return false; } in fetch() function
54 virtual bool fetch(int,std::string &){ return false; } in fetch() function
55 virtual bool fetch(int,std::ostream &){ return false; } in fetch() function
[all …]
/dports/databases/akonadi/akonadi-21.12.3/src/core/
H A Dentitycache_p.h201 auto fetch = new FetchJob(T(id), session); in Q_DECLARE_METATYPE() local
221 auto fetch = qobject_cast<CollectionFetchJob *>(job); in Q_DECLARE_METATYPE() local
232 auto fetch = qobject_cast<ItemFetchJob *>(job); in Q_DECLARE_METATYPE() local
243 auto fetch = qobject_cast<TagFetchJob *>(job); in Q_DECLARE_METATYPE() local
256 auto fetch = new CollectionFetchJob(Collection(id), CollectionFetchJob::Base, session); in Q_DECLARE_METATYPE() local
488 auto fetch = qobject_cast<CollectionFetchJob *>(job); in Q_DECLARE_METATYPE() local
495 auto fetch = qobject_cast<ItemFetchJob *>(job); in Q_DECLARE_METATYPE() local
502 auto fetch = qobject_cast<TagFetchJob *>(job); in Q_DECLARE_METATYPE() local
511 auto fetch = new CollectionFetchJob(ids, CollectionFetchJob::Base, session); in Q_DECLARE_METATYPE() local
/dports/graphics/nanort/nanort-b1feea8/examples/common/glm/test/external/gli/core/
H A Dconvert_func.hpp165 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
179 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
193 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
211 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
229 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
247 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
265 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
283 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
301 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
319 …static vec<4, retType, P> fetch(textureType const & Texture, typename textureType::extent_type con… in fetch() function
[all …]
/dports/databases/postgresql96-server/postgresql-9.6.24/src/test/regress/sql/
H A Dhs_standby_allowed.sql88 fetch first from hsc; local
89 fetch last from hsc; local
90 fetch 1 from hsc; local

12345678910>>...227