HomeSort by relevance Sort by last modified time
    Searched full:where (Results 676 - 700 of 21198) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
termios.h 40 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
termios.h 40 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
termios.h 40 /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_paren.py 1 """Fixer that addes parentheses where they are required
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_paren.py 1 """Fixer that addes parentheses where they are required
  /sdk/emulator/opengl/tests/ut_renderer/
Android.mk 19 # in the implementation where glTextureParameter(...,GL_TEXTURE_RECT,...)
  /external/chromium_org/third_party/sqlite/src/test/
autoindex1.test 69 SELECT b, (SELECT d FROM t2 WHERE c=a) FROM t1;
81 SELECT b, (SELECT d FROM t2 WHERE c=a) FROM t1;
148 WHERE t501.a IN (SELECT x FROM t502 WHERE y=?);
157 WHERE t501.a IN (SELECT x FROM t502 WHERE y=t501.b);
166 WHERE t501.a=123
167 AND t501.a IN (SELECT x FROM t502 WHERE y=t501.b);
234 WHERE NOT EXISTS
236 WHERE prev.flock_no = later.flock_n
    [all...]
misc3.test 145 SELECT * FROM t2 WHERE a>=-2147483648 ORDER BY a;
150 SELECT * FROM t2 WHERE a>-2147483648 ORDER BY a;
155 SELECT * FROM t2 WHERE a>-2147483649 ORDER BY a;
160 SELECT * FROM t2 WHERE a>=0 AND a<2147483649 ORDER BY a DESC;
165 SELECT * FROM t2 WHERE a>=0 AND a<=2147483648 ORDER BY a DESC;
170 SELECT * FROM t2 WHERE a>=0 AND a<2147483648 ORDER BY a DESC;
175 SELECT * FROM t2 WHERE a>=0 AND a<=2147483647 ORDER BY a DESC;
180 SELECT * FROM t2 WHERE a>=0 AND a<2147483647 ORDER BY a DESC;
205 SELECT count(a) FROM t3 WHERE b IN (SELECT b FROM t3);
210 SELECT count(a) FROM t3 WHERE b IN (SELECT b FROM t3 ORDER BY a+1)
    [all...]
speed4.test 124 set sql "SELECT * FROM t1, t2, t3 WHERE t1.oid = t2.oid AND t2.oid = t3.oid"
128 set sql "SELECT * FROM t1, t2, t3 WHERE t1.t = t2.t AND t2.t = t3.t"
134 append sql "SELECT * FROM v[expr {($ii%3)+1}] WHERE rowid = [expr {$ii*3}];"
145 append sql "SELECT t FROM t[expr {($ii%3)+1}] WHERE rowid = [expr {$ii*3}];"
154 SELECT (SELECT t FROM t1 WHERE rowid = [expr {$ii*3}]),
155 (SELECT t FROM t2 WHERE rowid = [expr {$ii*3}]),
156 (SELECT t FROM t3 WHERE rowid = [expr {$ii*3}])
187 UPDATE t4 SET i = $ii2, t = '[number_name $ii2]' WHERE rowid = $ii;
193 append sql "DELETE FROM t4 WHERE rowid = $ii;"
219 UPDATE t4 SET i = $ii2, t = '[number_name $ii2]' WHERE rowid = $ii
    [all...]
selectA.test 319 SELECT a,b,c FROM t1 EXCEPT SELECT a,b,c FROM t1 WHERE b>='d'
325 SELECT a,b,c FROM t1 INTERSECT SELECT a,b,c FROM t1 WHERE b>='d'
331 SELECT a,b,c FROM t1 WHERE b>='d' INTERSECT SELECT a,b,c FROM t1
337 SELECT a,b,c FROM t1 EXCEPT SELECT a,b,c FROM t1 WHERE b<'d'
343 SELECT a,b,c FROM t1 INTERSECT SELECT a,b,c FROM t1 WHERE b<'d'
349 SELECT a,b,c FROM t1 WHERE b<'d' INTERSECT SELECT a,b,c FROM t1
355 SELECT a,b,c FROM t1 EXCEPT SELECT a,b,c FROM t1 WHERE b>='d'
361 SELECT a,b,c FROM t1 INTERSECT SELECT a,b,c FROM t1 WHERE b>='d'
367 SELECT a,b,c FROM t1 WHERE b>='d' INTERSECT SELECT a,b,c FROM t1
373 SELECT a,b,c FROM t1 EXCEPT SELECT a,b,c FROM t1 WHERE b<'d
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 101 builder.where(FeedContract.Entry._ID + "=?", id);
105 .where(selection, selectionArgs);
156 .where(selection, selectionArgs)
162 .where(FeedContract.Entry._ID + "=?", id)
163 .where(selection, selectionArgs)
188 .where(selection, selectionArgs)
194 .where(FeedContract.Entry._ID + "=?", id)
195 .where(selection, selectionArgs)
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 101 builder.where(FeedContract.Entry._ID + "=?", id);
105 .where(selection, selectionArgs);
156 .where(selection, selectionArgs)
162 .where(FeedContract.Entry._ID + "=?", id)
163 .where(selection, selectionArgs)
188 .where(selection, selectionArgs)
194 .where(FeedContract.Entry._ID + "=?", id)
195 .where(selection, selectionArgs)
  /development/samples/NotePad/src/com/example/android/notepad/
TitleEditor.java 88 null, // No selection criteria are used, so no where columns are needed.
89 null, // No where columns are used, so no where values are needed.
123 * For Activity objects that edit information, onPause() may be the one place where changes are
127 * Activity in a state where Android can destroy it if necessary.
157 null, // No selection criteria is used, so no "where" columns are needed.
158 null // No "where" columns are used, so no "where" values are needed.
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 101 builder.where(FeedContract.Entry._ID + "=?", id);
105 .where(selection, selectionArgs);
156 .where(selection, selectionArgs)
162 .where(FeedContract.Entry._ID + "=?", id)
163 .where(selection, selectionArgs)
188 .where(selection, selectionArgs)
194 .where(FeedContract.Entry._ID + "=?", id)
195 .where(selection, selectionArgs)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteCardinalityException.as 30 * This signifies a case where the cardinality of two or more elements
31 * in a subrule are different: (ID INT)+ where |ID|!=|INT|
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeFactory.cs 36 where TToken : IToken
37 where TTree : ITree
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteCardinalityException.java 31 * This signifies a case where the cardinality of two or more elements
32 * in a subrule are different: (ID INT)+ where |ID|!=|INT|
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java 45 * Get the stylesheet node from where this error originated.
46 * @return The stylesheet node from where this error originated, or null.
54 * Set the stylesheet node from where this error originated.
55 * @param styleNode The stylesheet node from where this error originated, or null.
171 * Print the the trace of methods from where the error
174 * @param s The stream where the dump will be sent to.
250 * Print the the trace of methods from where the error
253 * @param s The writer where the dump will be sent to.
  /external/chromium/base/allocator/
prep_libc.sh 11 # VCInstallDir is the path where VC is installed, typically:
14 # OutputFile is the directory where the modified libcmt file should be stored.
  /external/chromium/chrome/browser/webdata/
logins_table_win.cc 37 "DELETE FROM ie7_logins WHERE url_hash = ?"));
56 "WHERE url_hash == ? "));
  /external/chromium_org/ash/drag_drop/
drag_drop_tracker.h 22 // window where drag is started. This internally sets up a capture window for
23 // tracking drag events outside the root window where drag is initiated.
  /external/chromium_org/chrome/browser/ui/cocoa/
info_bubble_view.h 20 // Constants that define where the bubble will have rounded corners.
48 // This is where nonrectangular drawing happens.
  /external/chromium_org/chrome/browser/webdata/
logins_table_win.cc 29 "DELETE FROM ie7_logins WHERE url_hash = ?"));
40 "WHERE url_hash == ? "));
  /external/chromium_org/content/public/browser/
download_save_info.h 17 // name, |offset| is set to the point where we left off, and |hash_state| will
18 // hold the state of the hash algorithm where we left off.
  /external/chromium_org/content/public/common/
content_constants.h 17 // The name of the directory under BrowserContext::GetPath where the AppCache is
20 // The name of the directory under BrowserContext::GetPath where Pepper plugin

Completed in 1275 milliseconds

<<21222324252627282930>>