HomeSort by relevance Sort by last modified time
    Searched refs:having (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 189 * @param having A filter declare which row groups to include in the cursor,
190 * if row grouping is being used, formatted as an SQL HAVING
191 * clause (excluding the HAVING itself). Passing null will cause
203 String groupBy, String having, String orderBy, String limit) {
204 if (TextUtils.isEmpty(groupBy) && !TextUtils.isEmpty(having)) {
206 "HAVING clauses are only permitted when using a groupBy clause");
227 appendClause(query, " HAVING ", having);
279 * @param having A filter declare which row groups to include in
281 * SQL HAVING clause (excluding the HAVING itself). Passin
    [all...]
SQLiteDatabase.java 563 * The name of this method comes from a time when having an active connection
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteQueryBuilder.java 16 String[] columns, String where, String groupBy, String having,
36 conditionallyAppend(sb, " HAVING ", having);
ShadowSQLiteDatabase.java 116 String having, String orderBy, String limit) {
124 columns, where, groupBy, having, orderBy, limit);
141 String[] selectionArgs, String groupBy, String having,
143 return query(false, table, columns, selection, selectionArgs, groupBy, having, orderBy, null);
148 String[] selectionArgs, String groupBy, String having,
150 return query(false, table, columns, selection, selectionArgs, groupBy, having, orderBy, limit);
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 107 String having, String orderBy, String limit) {
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
  /external/chromium_org/v8/test/mjsunit/regress/
regress-618.js 36 // Add setter somewhere on the prototype chain after having constructed the
51 // Add setter somewhere on the prototype chain after having constructed the
66 // Add setter somewhere on the prototype chain after having constructed the
81 // Add setter somewhere on the prototype chain after having constructed the
regress-2717.js 29 // having double representation.
39 // map that tracks it as having double representation.
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 310 * @param having A filter declare which row groups to include in the cursor, if row grouping is
311 * being used, formatted as an SQL HAVING clause (excluding the HAVING itself).
323 String having, String orderBy, String limit) {
327 return db.query(mTable, columns, getSelection(), getSelectionArgs(), groupBy, having,
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 310 * @param having A filter declare which row groups to include in the cursor, if row grouping is
311 * being used, formatted as an SQL HAVING clause (excluding the HAVING itself).
323 String having, String orderBy, String limit) {
327 return db.query(mTable, columns, getSelection(), getSelectionArgs(), groupBy, having,
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 135 String[] selectionArgs, String groupBy, String having, String sortOrder) {
163 having,
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 310 * @param having A filter declare which row groups to include in the cursor, if row grouping is
311 * being used, formatted as an SQL HAVING clause (excluding the HAVING itself).
323 String having, String orderBy, String limit) {
327 return db.query(mTable, columns, getSelection(), getSelectionArgs(), groupBy, having,
  /bionic/libdl/
Android.mk 31 # few symbols from libc. Using --no-undefined here results in having to link
  /external/chromium_org/v8/test/webkit/
dfg-dead-redundant-get-array-length.js 25 "Tests that having a dead, and redundant, use of array.length doesn't cause compiler crashes."
property-getters-and-setters.js 43 debug("Setting a value without having a setter");
47 debug("Getting a value without having a getter");
eval-var-decl.js 49 // Check that the correct this value is passed to a function called having been caught from a throw, where the catch block contains an eval (bug#).
function-prototype-descriptor.js 41 // Test prototype's attributes are correct, if assigned without first having being accessed.
  /hardware/intel/common/utils/ituxd/
Android.mk 20 # are responsible for having their own logic, for fine-grained control.
  /hardware/intel/common/utils/ituxd/jni/
Android.mk 20 # are responsible for having their own logic, for fine-grained control.
  /external/chromium_org/v8/tools/
splaytree.js 125 * Returns the node having the specified key or null if the tree doesn't contain
129 * @return {SplayTree.Node} Node having the specified key.
141 * @return {SplayTree.Node} Node having the minimum key value.
156 * @return {SplayTree.Node} Node having the maximum key value.
171 * @return {SplayTree.Node} Node having the maximum key value that
  /external/chromium_org/v8/benchmarks/spinning-balls/
splay-tree.js 123 * Returns the node having the specified key or null if the tree doesn't contain
127 * @return {SplayTree.Node} Node having the specified key.
139 * @return {SplayTree.Node} Node having the maximum key value.
154 * @return {SplayTree.Node} Node having the maximum key value that
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 218 * Returns the node having the specified key or null if the tree doesn't contain
222 * @return {SplayTree.Node} Node having the specified key.
234 * @return {SplayTree.Node} Node having the maximum key value.
249 * @return {SplayTree.Node} Node having the maximum key value that
  /cts/tests/signature/
Android.mk 51 # By only ever having one of these magic files in existence and making
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 213 * Returns the node having the specified key or null if the tree doesn't contain
217 * @return {SplayTree.Node} Node having the specified key.
229 * @return {SplayTree.Node} Node having the maximum key value.
244 * @return {SplayTree.Node} Node having the maximum key value that
  /external/chromium_org/ui/file_manager/file_manager/common/js/
progress_center_common.js 170 * @return {ProgressCenterItem} New item having the same properties with this.
  /external/chromium_org/v8/benchmarks/
splay.js 218 * Returns the node having the specified key or null if the tree doesn't contain
222 * @return {SplayTree.Node} Node having the specified key.
234 * @return {SplayTree.Node} Node having the maximum key value.
249 * @return {SplayTree.Node} Node having the maximum key value that

Completed in 933 milliseconds

1 2 3 4 5