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

1 2 3 4

  /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/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-prevents-rebase.js 8 debug("Search attribute, update document base URI without attribute having been set");
23 debug("Pathname attribute, update document base URI without attribute having been set");
38 debug("Hash attribute, update document base URI without attribute having been set");
57 debug("Host attribute, update document base URI without attribute having been set");
72 debug("Hostname attribute, update document base URI without attribute having been set");
87 debug("Protocol attribute, update document base URI without attribute having been set");
102 debug("Port attribute, update document base URI without attribute having been set");
  /external/v8/test/mjsunit/bugs/
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
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 135 String[] selectionArgs, String groupBy, String having, String sortOrder) {
163 having,
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeisequalnode28.js 80 Using isEqualNode check if 2 new Text nodes having null text are equal and two others
81 having different data are not equal.
nodeisequalnode29.js 80 Using isEqualNode check if 2 new Comment nodes having the same data are equal and two others
81 having different data are not equal.
nodeisequalnode31.js 80 Using isEqualNode check if 2 new CDATASection nodes having the same data are equal and two others
81 having different data are not equal.
nodeisequalnode32.js 80 Using isEqualNode check if 2 new ProcessingInstruction nodes having the same data are equal and two others
81 having different data are not equal.
nodeisequalnode08.js 82 Retreive an element node of this Document having nodeName as employeeId and
83 namespaceURI as http://www.nist.gov. Create a new Element node having the same attributes
nodeisequalnode02.js 78 Using isEqualNode check if 2 newly created Document nodes having the same namespaceURI
nodeisequalnode06.js 80 Using isEqualNode check if 2 Element nodes having the same nodeName and namespaceURI attribute
nodeisequalnode14.js 80 Using isEqualNode check if 2 Attr nodes having the same nodeName and a null namespaceURI
nodeisequalnode19.js 80 Using isEqualNode check if 2 Attr nodes having the same nodeName but different namespaceURIs
nodeisequalnode20.js 78 Using isEqualNode check if an Element and an Attr nodes having the same nodeName
nodeisequalnode27.js 80 Using isEqualNode check if 2 EntityNode having the same name of two DocumentType nodes
  /bionic/libdl/
Android.mk 31 # few symbols from libc. Using --no-undefined here results in having to link
  /external/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/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
  /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
acceptNode-filter.js 62 debug("<br>Testing with function having acceptNode function");
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutRepositoryImplLog.java 161 String having = null; local
171 false, TABLES, SHORTCUT_QUERY_COLUMNS, where, GROUP_BY, having, orderBy, null);
178 false, TABLES, SHORTCUT_QUERY_COLUMNS, where, GROUP_BY, having, orderBy, null);
192 final String having = null; local
196 false, tables, columns, where, groupBy, having, orderBy, limit);
    [all...]
  /cts/tests/SignatureTest/
Android.mk 56 # By only ever having one of these magic files in existance and making

Completed in 448 milliseconds

1 2 3 4