Home
last modified time | relevance | path

Searched refs:whereArgs (Results 1 – 21 of 21) sorted by relevance

/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/upper.io/db.v3/lib/sqlbuilder/
H A Ddelete.go16 whereArgs []interface{} member
22 where, whereArgs := b.t.toWhereWithArguments(terms)
25 dq.where, dq.whereArgs = &exql.Where{}, []interface{}{}
28 dq.whereArgs = append(dq.whereArgs, whereArgs...)
93 dq.where, dq.whereArgs = &exql.Where{}, []interface{}{}
119 return joinArguments(dq.whereArgs)
H A Dupdate.go20 whereArgs []interface{} member
26 where, whereArgs := b.t.toWhereWithArguments(terms)
29 uq.where, uq.whereArgs = &exql.Where{}, []interface{}{}
32 uq.whereArgs = append(uq.whereArgs, whereArgs...)
60 uq.whereArgs,
159 uq.where, uq.whereArgs = &exql.Where{}, []interface{}{}
H A Dselect.go22 whereArgs []interface{} member
43 where, whereArgs := b.t.toWhereWithArguments(terms)
46 sq.where, sq.whereArgs = &exql.Where{}, []interface{}{}
49 sq.whereArgs = append(sq.whereArgs, whereArgs...)
59 sq.whereArgs,
197 sq.where, sq.whereArgs = &exql.Where{}, []interface{}{}
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/db/
H A DDBUtils.java279 …ing table, ContentValues[] values, UpdateOperation[] ops, String whereClause, String[] whereArgs) { in updateArrays() argument
280 …return updateArraysWithOnConflict(db, table, values, ops, whereClause, whereArgs, CONFLICT_NONE, t… in updateArrays()
283 …ing table, ContentValues[] values, UpdateOperation[] ops, String whereClause, String[] whereArgs) { in updateArraysBlindly() argument
284 … updateArraysWithOnConflict(db, table, values, ops, whereClause, whereArgs, CONFLICT_NONE, false); in updateArraysBlindly()
324 String[] whereArgs, in updateArraysWithOnConflict() argument
350 int bindArgsSize = (whereArgs == null) ? setValuesSize : (setValuesSize + whereArgs.length); in updateArraysWithOnConflict()
392 if (whereArgs != null) { in updateArraysWithOnConflict()
394 bindArgs[arg] = whereArgs[arg - setValuesSize]; in updateArraysWithOnConflict()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/db/
H A DDBUtils.java279 …ing table, ContentValues[] values, UpdateOperation[] ops, String whereClause, String[] whereArgs) { in updateArrays() argument
280 …return updateArraysWithOnConflict(db, table, values, ops, whereClause, whereArgs, CONFLICT_NONE, t… in updateArrays()
283 …ing table, ContentValues[] values, UpdateOperation[] ops, String whereClause, String[] whereArgs) { in updateArraysBlindly() argument
284 … updateArraysWithOnConflict(db, table, values, ops, whereClause, whereArgs, CONFLICT_NONE, false); in updateArraysBlindly()
324 String[] whereArgs, in updateArraysWithOnConflict() argument
350 int bindArgsSize = (whereArgs == null) ? setValuesSize : (setValuesSize + whereArgs.length); in updateArraysWithOnConflict()
392 if (whereArgs != null) { in updateArraysWithOnConflict()
394 bindArgs[arg] = whereArgs[arg - setValuesSize]; in updateArraysWithOnConflict()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/browser_ui/photo_picker/android/java/src/org/chromium/components/browser_ui/photo_picker/
H A DFileEnumWorkerTask.java148 String[] whereArgs = new String[] { in doInBackground() local
161 createImageCursor(contentUri, selectColumns, whereClause, whereArgs, orderBy); in doInBackground()
170 + ", params: " + Arrays.toString(whereArgs)); in doInBackground()
223 String[] whereArgs, String orderBy) { in createImageCursor() argument
224 return mContentResolver.query(contentUri, selectColumns, whereClause, whereArgs, orderBy); in createImageCursor()
H A DFileEnumWorkerTaskTest.java71 String whereClause, String[] whereArgs, String orderBy) { in createImageCursor() argument
/dports/games/hyperrogue/hyperrogue-12.0f/hyperroid/app/src/main/java/com/roguetemple/hyperroid/
H A DHyperProvider.java48 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { in update() argument
53 public int delete(Uri uri, String where, String[] whereArgs) { in delete() argument
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/sqlite/
H A DSQLiteBridge.java83 public int delete(String table, String whereClause, String[] whereArgs) in delete() argument
91 execSQL(sb.toString(), whereArgs); in delete() local
181 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) in update() argument
214 valueNames.addAll(Arrays.asList(whereArgs)); in update()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/geckoview/src/main/java/org/mozilla/gecko/sqlite/
H A DSQLiteBridge.java83 public int delete(String table, String whereClause, String[] whereArgs) in delete() argument
91 execSQL(sb.toString(), whereArgs); in delete() local
181 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) in update() argument
214 valueNames.addAll(Arrays.asList(whereArgs)); in update()
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/quasilyte/go-ruleguard/ruleguard/
H A Dparser.go295 whereArgs *[]ast.Expr
312 if whereArgs != nil {
315 whereArgs = &call.Args
362 if whereArgs != nil {
363 if err := p.walkFilter(&proto.filter, (*whereArgs)[0], false); err != nil {
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/kunwardeep/paralleltest/tools/vendor/github.com/quasilyte/go-ruleguard/ruleguard/
H A Dparser.go291 whereArgs *[]ast.Expr
305 whereArgs = &call.Args
340 if whereArgs != nil {
341 if err := p.walkFilter(filters, (*whereArgs)[0], false); err != nil {
/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/nonembedded/java/src/org/chromium/android_webview/services/
H A DDeveloperModeContentProvider.java28 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { in update() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/nonembedded/java/src/org/chromium/android_webview/nonembedded/
H A DLicenseContentProvider.java74 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { in update() argument
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/quasilyte/go-ruleguard/ruleguard/
H A Dparser.go375 whereArgs *[]ast.Expr
403 if whereArgs != nil {
406 whereArgs = &call.Args
454 if whereArgs != nil {
455 proto.filter = p.parseFilter((*whereArgs)[0])
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/android/javatests/src/org/chromium/chrome/test/
H A DTestContentProvider.java133 String[] whereArgs) { in update() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/webapk/shell_apk/src/org/chromium/webapk/shell_apk/h2o/
H A DSplashContentProvider.java162 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { in update() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DTestContentProvider.java116 String[] whereArgs) { in update() argument
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/services/src/main/java/org/mozilla/gecko/sync/repositories/android/
H A DPasswordsRepositorySession.java560 final String[] whereArgs = new String[] { in findExistingRecord() local
569 …r.safeQuery(passwordsProvider, ".findRecord", getAllColumns(), WHERE_RECORD_DATA, whereArgs, null); in findExistingRecord()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/services/src/main/java/org/mozilla/gecko/sync/repositories/android/
H A DPasswordsRepositorySession.java612 final String[] whereArgs = new String[] { in findExistingRecord() local
621 …r.safeQuery(passwordsProvider, ".findRecord", getAllColumns(), WHERE_RECORD_DATA, whereArgs, null); in findExistingRecord()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/viewer/
H A DPropertyManager.java447 T[] whereArgs = null; in extractProperty() local
450 whereArgs = (T[]) ((Object[]) arg.value)[1]; in extractProperty()
486 if (whereArgs == null in extractProperty()
487 || vwr.checkSelect((Map<String, SV>) o, whereArgs)) in extractProperty()
492 if (whereArgs == null in extractProperty()
493 || vwr.checkSelect((Map<String, SV>) o, whereArgs)) in extractProperty()
503 } else if (whereArgs != null in extractProperty()
504 && !vwr.checkSelect((Map<String, SV>) property, whereArgs)) in extractProperty()