/external/llvm/projects/sample/tools/sample/ |
Makefile | 4 # Indicate where we are relative to the top of the source tree.
|
/external/llvm/test/YAMLParser/ |
construct-seq.data | 11 - Uranus # Where the sun hardly shines.
|
/external/lzma/C/ |
Bcj2.h | 16 where FullOutputSize is full size of output stream of x86_2 filter.
|
/external/mockito/src/org/mockito/invocation/ |
DescribedInvocation.java | 24 * The place in the code where the invocation happened.
|
/external/pixman/pixman/ |
config.h | 4 /* Define to the address where bug reports for this package should be sent. */
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowContentResolver.java | 106 public int update(Uri uri, ContentValues values, String where, String[] selectionArgs) { 109 return provider.update(uri, values, where, selectionArgs); 111 UpdateStatement updateStatement = new UpdateStatement(uri, new ContentValues(values), where, selectionArgs); 136 public final int delete(Uri url, String where, String[] selectionArgs) { 139 return provider.delete(url, where, selectionArgs); 141 DeleteStatement deleteStatement = new DeleteStatement(url, where, selectionArgs); 365 private final String where; 368 public UpdateStatement(Uri uri, ContentValues values, String where, String[] selectionArgs) { 371 this.where = where; [all...] |
/external/sonivox/jet_tools/JetCreator_content/ |
README.txt | 5 1. Open a command prompt and go to the directory where the JetCreator tool is located.
|
/external/valgrind/main/VEX/orig_amd64/ |
SortedToOrig.hs | 2 module Main where
|
/frameworks/base/core/java/android/database/sqlite/ |
SqliteWrapper.java | 77 ContentValues values, String where, String[] selectionArgs) { 79 return resolver.update(uri, values, where, selectionArgs); 88 String where, String[] selectionArgs) { 90 return resolver.delete(uri, where, selectionArgs);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
spbp.cpp | 5 /* This was a bug on x86-darwin, where the register numbering for SP
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
spbp.cpp | 5 /* This was a bug on x86-darwin, where the register numbering for SP
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
DropTarget.java | 36 /** X offset from the upper-left corner of the cell to where we touched. */ 39 /** Y offset from the upper-left corner of the cell to where we touched. */ 54 /** Where the drag originated */ 117 * @param source DragSource where the drag started 120 * @param xOffset Horizontal offset with the object being dragged where the original 122 * @param yOffset Vertical offset with the object being dragged where the original 147 * @param source DragSource where the drag started 150 * @param xOffset Horizontal offset with the object being dragged where the 152 * @param yOffset Vertical offset with the object being dragged where the
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
EmptyConversationListView.java | 23 // where swipe to refresh detecting happens.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
bgenlocations.py | 3 # Edit this file to reflect where things should be on your system. 15 # Where bgen is. For unix-Python bgen isn't installed, so you have to refer to 20 # Where to find the Universal Header include files. If you have CodeWarrior 28 # Where to put the python definitions files. Note that, on unix-Python,
|
/sdk/files/proguard/bin/ |
proguard.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
proguardgui.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
retrace.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
/external/chromium_org/third_party/sqlite/src/test/ |
descidx1.test | 70 SELECT b FROM t1 WHERE a>3 AND a<7; 75 SELECT a FROM t1 WHERE b>3 AND b<7; 80 SELECT b FROM t1 WHERE a>=3 AND a<7; 85 SELECT b FROM t1 WHERE a>3 AND a<=7; 90 SELECT b FROM t1 WHERE a>=3 AND a<=7; 95 SELECT a FROM t1 WHERE b>=3 AND b<=7; 154 cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a} 157 cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a ASC} 160 cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a DESC} 163 cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a [all...] |
fts3matchinfo.test | 33 SELECT name FROM sqlite_master WHERE type = 'table'; 41 SELECT mit(matchinfo(t1)) FROM t1 WHERE t1 MATCH 'I'; 49 SELECT mit(matchinfo(t2)) FROM t2 WHERE t2 MATCH 'I'; 71 SELECT * FROM xx WHERE xx MATCH 'abc'; 72 SELECT * FROM xx WHERE xx MATCH 'a b c'; 84 # full text of a WHERE/MATCH expression to query the table for 89 # SELECT matchinfo($tbl, '$key') FROM $tbl WHERE $expr 151 set sql "SELECT mit(matchinfo($tbl, '$fmt')) FROM $tbl WHERE $expr" 167 set sql "SELECT [join $exprlist ,] FROM $tbl WHERE $expr" 258 WHERE length(block)>10000 [all...] |
select1.test | 147 execsql {SELECT count(*),count(a),count(b) FROM t4 WHERE b=5} 253 # WHERE clause expressions 256 set v [catch {execsql {SELECT f1 FROM test1 WHERE f1<11}} msg] 260 set v [catch {execsql {SELECT f1 FROM test1 WHERE f1<=11}} msg] 264 set v [catch {execsql {SELECT f1 FROM test1 WHERE f1=11}} msg] 268 set v [catch {execsql {SELECT f1 FROM test1 WHERE f1>=11}} msg] 272 set v [catch {execsql {SELECT f1 FROM test1 WHERE f1>11}} msg] 276 set v [catch {execsql {SELECT f1 FROM test1 WHERE f1!=11}} msg] 280 set v [catch {execsql {SELECT f1 FROM test1 WHERE min(f1,f2)!=11}} msg] 284 set v [catch {execsql {SELECT f1 FROM test1 WHERE max(f1,f2)!=11}} msg [all...] |
laststmtchanges.test | 50 update t0 set x=3 where x=1; 61 sqlite3_exec_printf db {update t0 set x=4 where x=3; select 1;} {} 67 execsql {update t0 set x=3 where x=4} 69 update t0 set x=x+changes() where x=3; 70 select count() from t0 where x=8; 74 # changes() set properly after update on table where no rows changed 77 update t0 set x=77 where x=88; 85 delete from t0 where x=2; 153 delete from t0 where oid=1 or oid=2; 233 update t0 set x=x*10 where x=1 [all...] |
selectB.test | 85 WHERE a>10 ORDER BY 1 87 SELECT a FROM t1 WHERE a>10 UNION ALL SELECT d FROM t2 WHERE d>10 ORDER BY 1 93 WHERE a>10 ORDER BY a 95 SELECT a FROM t1 WHERE a>10 97 SELECT d FROM t2 WHERE d>10 103 (SELECT a FROM t1 UNION ALL SELECT d FROM t2 WHERE d > 12) 104 WHERE a>10 ORDER BY a 106 SELECT a FROM t1 WHERE a>10 108 SELECT d FROM t2 WHERE d>12 AND d>1 [all...] |
attach3.test | 60 SELECT * FROM sqlite_master WHERE name = 't3'; 65 SELECT * FROM aux.sqlite_master WHERE name = 't3'; 83 SELECT * FROM sqlite_master WHERE name = 'i1'; 88 SELECT * FROM aux.sqlite_master WHERE name = 'i1'; 96 SELECT * FROM aux.sqlite_master WHERE name = 'i1'; 102 SELECT * FROM aux.sqlite_master WHERE name = 'i1'; 108 SELECT * FROM aux.sqlite_master WHERE name = 'i1'; 142 SELECT * FROM aux.sqlite_master WHERE name = 'v1'; 160 SELECT * FROM aux.sqlite_master WHERE name = 'v1'; 183 SELECT * FROM aux.sqlite_master WHERE name = 'tr1' [all...] |
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 46 * the where clause).</br> 48 * --where "name=\'new_setting\'" 52 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'" 55 * # Query \"name\" and \"value\" columns from secure settings where \"name\" is equal to" 58 * --where "name=\'new_setting\'" --sort \"name ASC\" 72 + " <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where:\n" 81 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n" 82 + " <WHERE> is a SQL style where clause in quotes (You have to escape single quotes 196 String where = null; local 218 String where = null; local 281 String where = null; local [all...] |
/external/oprofile/events/arm/armv7-ca9/ |
events | 12 event:0x60 counters:1,2,3,4,5,6 um:zero minimum:500 name:IC_DEP_STALL : Number of cycles where CPU is ready to accept new instructions but does not receive any because of the instruction side not being able to provide any and the instruction cache is currently performing at least one linefill 13 event:0x61 counters:1,2,3,4,5,6 um:zero minimum:500 name:DC_DEP_STALL : Number of cycles where CPU has some instructions that it cannot issue to any pipeline and the LSU has at least one pending linefill request but no pending TLB requests 17 event:0x66 counters:1,2,3,4,5,6 um:zero minimum:500 name:ISS_NO_DISP : Number of cycles where the issue stage does not dispatch any instruction 18 event:0x67 counters:1,2,3,4,5,6 um:zero minimum:500 name:ISS_EMPTY : Number of cycles where the issue stage is empty 29 event:0x80 counters:1,2,3,4,5,6 um:zero minimum:500 name:STALL_PLD : Number of cycles where CPU is stalled because PLD slots are all full 30 event:0x81 counters:1,2,3,4,5,6 um:zero minimum:500 name:STALL_WRITE : Number of cycles where CPU is stalled because data side is full and executing writes to external memory 31 event:0x82 counters:1,2,3,4,5,6 um:zero minimum:500 name:STALL_INS_TLB : Number of cycles where CPU is stalled because of main TLB misses on requests issued by the instruction side 32 event:0x83 counters:1,2,3,4,5,6 um:zero minimum:500 name:STALL_DATA_TLB : Number of cycles where CPU is stalled because of main TLB misses on requests issued by the data side 33 event:0x84 counters:1,2,3,4,5,6 um:zero minimum:500 name:STALL_INS_UTLB : Number of cycles where CPU is stalled because of micro TLB misses on the instruction side 34 event:0x85 counters:1,2,3,4,5,6 um:zero minimum:500 name:STALL_DATA_ULTB : Number of cycles where CPU is stalled because of micro TLB misses on the data sid [all...] |