Home
last modified time | relevance | path

Searched refs:MustExec (Results 1 – 25 of 39) sorted by relevance

12

/dports/devel/llvm70/llvm-7.0.1.src/lib/Analysis/
H A DMustExecute.cpp208 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec;
217 MustExec[&I].push_back(L);
230 MustExec[&I].push_back(L);
239 if (!MustExec.count(&V))
242 const auto &Loops = MustExec.lookup(&V);
/dports/devel/llvm90/llvm-9.0.1.src/lib/Analysis/
H A DMustExecute.cpp337 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon6f899e650211::MustExecuteAnnotatedWriter
346 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
359 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
368 if (!MustExec.count(&V)) in printInfoComment()
371 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/llvm80/llvm-8.0.1.src/lib/Analysis/
H A DMustExecute.cpp331 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon548bb4230211::MustExecuteAnnotatedWriter
340 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
353 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
362 if (!MustExec.count(&V)) in printInfoComment()
365 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/cloudflare/cfssl/cfssl-2001f384ec4f/vendor/github.com/jmoiron/sqlx/
H A DREADME.md112 db.MustExec(schema)
115 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "Jason", "Moi…
116 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "John", "Doe"…
117 …tx.MustExec("INSERT INTO place (country, city, telcode) VALUES ($1, $2, $3)", "United States", "Ne…
118 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Hong Kong", "852")
119 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Singapore", "65")
H A Dsqlx.go361 func (db *DB) MustExec(query string, args ...interface{}) sql.Result { func
362 return MustExec(db, query, args...)
448 func (tx *Tx) MustExec(query string, args ...interface{}) sql.Result { func
449 return MustExec(tx, query, args...)
519 func (s *Stmt) MustExec(args ...interface{}) sql.Result { func
520 return MustExec(&qStmt{s}, "", args...)
709 func MustExec(e Execer, query string, args ...interface{}) sql.Result { func
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/jmoiron/sqlx/
H A DREADME.md118 db.MustExec(schema)
121 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "Jason", "Moi…
122 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "John", "Doe"…
123 …tx.MustExec("INSERT INTO place (country, city, telcode) VALUES ($1, $2, $3)", "United States", "Ne…
124 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Hong Kong", "852")
125 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Singapore", "65")
H A Dsqlx.go365 func (db *DB) MustExec(query string, args ...interface{}) sql.Result { func
366 return MustExec(db, query, args...)
460 func (tx *Tx) MustExec(query string, args ...interface{}) sql.Result { func
461 return MustExec(tx, query, args...)
529 func (s *Stmt) MustExec(args ...interface{}) sql.Result { func
530 return MustExec(&qStmt{s}, "", args...)
719 func MustExec(e Execer, query string, args ...interface{}) sql.Result { func
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/jmoiron/sqlx/
H A DREADME.md114 db.MustExec(schema)
117 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "Jason", "Moi…
118 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "John", "Doe"…
119 …tx.MustExec("INSERT INTO place (country, city, telcode) VALUES ($1, $2, $3)", "United States", "Ne…
120 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Hong Kong", "852")
121 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Singapore", "65")
H A Dsqlx.go369 func (db *DB) MustExec(query string, args ...interface{}) sql.Result { func
370 return MustExec(db, query, args...)
456 func (tx *Tx) MustExec(query string, args ...interface{}) sql.Result { func
457 return MustExec(tx, query, args...)
525 func (s *Stmt) MustExec(args ...interface{}) sql.Result { func
526 return MustExec(&qStmt{s}, "", args...)
715 func MustExec(e Execer, query string, args ...interface{}) sql.Result { func
/dports/databases/go-pgweb/pgweb-0.11.7/vendor/github.com/jmoiron/sqlx/
H A DREADME.md112 db.MustExec(schema)
115 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "Jason", "Moi…
116 …tx.MustExec("INSERT INTO person (first_name, last_name, email) VALUES ($1, $2, $3)", "John", "Doe"…
117 …tx.MustExec("INSERT INTO place (country, city, telcode) VALUES ($1, $2, $3)", "United States", "Ne…
118 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Hong Kong", "852")
119 tx.MustExec("INSERT INTO place (country, telcode) VALUES ($1, $2)", "Singapore", "65")
H A Dsqlx.go369 func (db *DB) MustExec(query string, args ...interface{}) sql.Result { func
370 return MustExec(db, query, args...)
456 func (tx *Tx) MustExec(query string, args ...interface{}) sql.Result { func
457 return MustExec(tx, query, args...)
527 func (s *Stmt) MustExec(args ...interface{}) sql.Result { func
528 return MustExec(&qStmt{s}, "", args...)
717 func MustExec(e Execer, query string, args ...interface{}) sql.Result { func
/dports/devel/llvm10/llvm-10.0.1.src/lib/Analysis/
H A DMustExecute.cpp406 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon850250250411::MustExecuteAnnotatedWriter
415 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
428 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
437 if (!MustExec.count(&V)) in printInfoComment()
440 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DMustExecute.cpp406 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anone0e97f300411::MustExecuteAnnotatedWriter
415 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
428 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
437 if (!MustExec.count(&V)) in printInfoComment()
440 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp406 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anonb84db5a80411::MustExecuteAnnotatedWriter
415 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
428 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
437 if (!MustExec.count(&V)) in printInfoComment()
440 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/ChrisTrenkamp/goxpath/
H A Dmisc_test.go25 …res := MustParse(path).MustExec(xmltree.MustParseXML(bytes.NewBufferString(x)), func(o *Opts) { o.…
56 …res := MustParse("/*:p1/namespace::*").MustExec(xmltree.MustParseXML(bytes.NewBufferString(x)), fu…
108 res := xp.MustExec(x)
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Analysis/
H A DMustExecute.cpp409 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon2797854d0511::MustExecuteAnnotatedWriter
418 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
431 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
440 if (!MustExec.count(&V)) in printInfoComment()
443 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Analysis/
H A DMustExecute.cpp409 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anona0003a670511::MustExecuteAnnotatedWriter
418 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
431 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
440 if (!MustExec.count(&V)) in printInfoComment()
443 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/databases/go-pgweb/pgweb-0.11.7/pkg/client/
H A Dclient_test.go304 testClient.db.MustExec(`CREATE TABLE large_table AS SELECT s FROM generate_Series(1,100010) s;`)
305 testClient.db.MustExec(`VACUUM large_table;`)
331 testClient.db.MustExec(`CREATE TABLE "exampleTable" (id int, name varchar);`)
332 testClient.db.MustExec(`INSERT INTO "exampleTable" (id, name) VALUES (1, 'foo'), (2, 'bar');`)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Analysis/
H A DMustExecute.cpp413 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon6a226d580511::MustExecuteAnnotatedWriter
422 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
435 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
444 if (!MustExec.count(&V)) in printInfoComment()
447 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Analysis/
H A DMustExecute.cpp414 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon608252850511::MustExecuteAnnotatedWriter
423 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
436 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
445 if (!MustExec.count(&V)) in printInfoComment()
448 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Analysis/
H A DMustExecute.cpp414 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon012886db0511::MustExecuteAnnotatedWriter
423 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
436 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
445 if (!MustExec.count(&V)) in printInfoComment()
448 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Analysis/
H A DMustExecute.cpp413 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon8750f3370511::MustExecuteAnnotatedWriter
422 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
435 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
444 if (!MustExec.count(&V)) in printInfoComment()
447 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp414 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon6488bf7a0511::MustExecuteAnnotatedWriter
423 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
436 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
445 if (!MustExec.count(&V)) in printInfoComment()
448 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Analysis/
H A DMustExecute.cpp414 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anon03245b380511::MustExecuteAnnotatedWriter
423 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
436 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
445 if (!MustExec.count(&V)) in printInfoComment()
448 const auto &Loops = MustExec.lookup(&V); in printInfoComment()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/lib/Analysis/
H A DMustExecute.cpp414 DenseMap<const Value*, SmallVector<Loop*, 4> > MustExec; member in __anonfd92b54d0511::MustExecuteAnnotatedWriter
423 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
436 MustExec[&I].push_back(L); in MustExecuteAnnotatedWriter()
445 if (!MustExec.count(&V)) in printInfoComment()
448 const auto &Loops = MustExec.lookup(&V); in printInfoComment()

12