/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarReceiver.java | 40 cr.update(CalendarProvider2.SCHEDULE_ALARM_URI, null /* values */, null /* where */, 50 null /* values */, null /* where */, null /* selectionArgs */);
|
CalendarDatabaseHelper.java | 184 + " WHERE _sync_account is not NULL and _sync_account_type is not NULL;"); 238 "DELETE FROM Events WHERE calendar_id = old._id;" + 293 "(SELECT _sync_account FROM Calendars WHERE Calendars._id=new.calendar_id)," + 295 "(SELECT _sync_account_type FROM Calendars WHERE Calendars._id=new.calendar_id) " + 296 "WHERE Events._id=new._id;" + 396 "DELETE FROM Instances WHERE event_id = old._id;" + 397 "DELETE FROM EventsRawTimes WHERE event_id = old._id;" + 398 "DELETE FROM Attendees WHERE event_id = old._id;" + 399 "DELETE FROM Reminders WHERE event_id = old._id;" + 400 "DELETE FROM CalendarAlerts WHERE event_id = old._id;" [all...] |
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
UserDictionaryProvider.java | 196 public int delete(Uri uri, String where, String[] whereArgs) { 201 count = db.delete(USERDICT_TABLE_NAME, where, whereArgs); 207 + (!TextUtils.isEmpty(where) ? " AND (" + where + ')' : ""), whereArgs); 220 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { 225 count = db.update(USERDICT_TABLE_NAME, values, where, whereArgs); 231 + (!TextUtils.isEmpty(where) ? " AND (" + where + ')' : ""), whereArgs);
|
/build/tools/droiddoc/src/ |
SinceTagger.java | 67 * Applies the version information to {@code classDocs} where not already 101 * Applies version information to {@code doc} where not already present. 110 * Applies version information to {@code doc} where not already present. 119 * Applies version information from {@code spec} to {@code doc} where not 133 * Applies version information from {@code spec} to {@code doc} where not 147 * Applies version information from {@code spec} to {@code doc} where not
|
/dalvik/vm/ |
PointerSet.c | 184 int i, where; local 186 if (!dvmPointerSetHas(pSet, ptr, &where)) 189 if (where != pSet->count-1) { 191 memmove(&pSet->list[where], &pSet->list[where+1], 192 (pSet->count-1 - where) * sizeof(pSet->list[0]));
|
/external/grub/netboot/ |
pci.h | 185 extern int pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned char *value); 186 extern int pcibios_write_config_byte (unsigned int bus, unsigned int device_fn, unsigned int where, unsigned char value); 187 extern int pcibios_read_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned short *value); 188 extern int pcibios_write_config_word (unsigned int bus, unsigned int device_fn, unsigned int where, unsigned short value); 189 extern int pcibios_read_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned int *value); 190 extern int pcibios_write_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned int value);
|
/frameworks/base/opengl/java/android/opengl/ |
Visibility.java | 31 * @param wsOffset an index into the ws array where the data starts. 33 * @param positionsOffset the index in the positions array where the data 37 * @param indicesOffset the index in the indices array where the index data 83 * @param spheresOffset an offset into the sphere array where the sphere 88 * @param resultsOffset an offset into the results array where the results 114 * @param sphereOffset offset where the sphere data will be written
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsProvider.java | 79 public final String where; field in class:SettingsProvider.SqlArguments 83 SqlArguments(Uri url, String where, String[] args) { 86 this.where = where; 90 } else if (!TextUtils.isEmpty(where)) { 91 throw new UnsupportedOperationException("WHERE clause not supported: " + url); 95 this.where = Settings.NameValueTable.NAME + "=?"; 98 this.where = "_id=" + ContentUris.parseId(url); 104 /** Insert new rows (no where clause allowed). */ 108 this.where = null 376 String where = Settings.Secure.NAME + "=\\'" + Settings.Secure.LOCATION_PROVIDERS_ALLOWED + "\\'"; local [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 430 "DELETE FROM thumbnails WHERE image_id = old._id;" + 501 "COUNT(*) AS number_of_tracks FROM audio WHERE is_music=1 "+ 512 " WHERE is_music=1 GROUP BY audio.album_id;"); 526 "DELETE FROM audio_genres_map WHERE audio_id = old._id;" + 527 "DELETE FROM audio_playlists_map WHERE audio_id = old._id;" + 546 "DELETE FROM audio_genres_map WHERE genre_id = old._id;" + 569 "DELETE FROM audio_playlists_map WHERE playlist_id = old._id;" + 576 "DELETE FROM album_art WHERE album_id = old.album_id;" + 670 db.execSQL("UPDATE audio_meta SET date_modified=0 WHERE _id IN (" + 671 "SELECT _id FROM audio where mime_type='audio/mp4' AND " 1501 String where = ""; local 2020 public String where; field in class:MediaProvider.GetTableAndWhereOutParameter 2028 String where = null; local [all...] |
/external/icu4c/tools/icupkg/ |
icupkg.cpp | 56 FILE *where=isHelp ? stdout : stderr; local 58 fprintf(where, 65 fprintf(where, 74 fprintf(where, 81 fprintf(where, 89 fprintf(where, 95 fprintf(where, 104 fprintf(where, 112 fprintf(where, 116 fprintf(where, [all...] |
/packages/apps/Browser/src/com/android/browser/ |
BrowserDownloadPage.java | 126 String where = null; local 141 if (where == null) { 142 where = Downloads.Impl._ID + " = '" + id + "'"; 144 where += " OR " + Downloads.Impl._ID + " = '" + id 150 if (where != null) { 151 getContentResolver().delete(Downloads.Impl.CONTENT_URI, where, 437 StringBuilder where = new StringBuilder(); local 445 where.append(" OR "); 447 where.append("( "); 448 where.append(Downloads.Impl._ID) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/ |
SDL_macevents.c | 146 /* for some reason, event.where isn't set ? */ 147 GetGlobalMouse ( &event.where ); 151 if ( (event.where.h != last_where.h) || 152 (event.where.v != last_where.v) ) { 154 pt = last_where = event.where; 259 area = FindWindow(event.where, &win); 268 Mac_DoAppleMenu(this, MenuSelect(event.where)); 273 DragWindow(win, event.where, NULL); 275 DragWindow(win, event.where, &theQD->screenBits.bounds); 279 if ( TrackGoAway(win, event.where) ) { [all...] |
/external/apache-http/src/org/apache/commons/codec/binary/ |
BinaryCodec.java | 102 * Decodes a byte array where each byte represents an ascii '0' or '1'. 106 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument 128 * Decodes a byte array where each byte represents an ascii '0' or '1'. 132 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument 140 * Decodes a String where each char of the String represents an ascii '0' or '1'. 144 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument 160 * Decodes a byte array where each char represents an ascii '0' or '1'. 164 * @return the raw encoded binary where each bit corresponds to a char in the char array argument 187 * Decodes a byte array where each byte represents an ascii '0' or '1'. 191 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argumen [all...] |
/frameworks/base/awt/java/awt/ |
Dispatcher.java | 399 * @param source - the component where mouse press event occured 415 * @param source - the component where mouse press event occured 510 // * @param src - the pop-up box where mouse event has occured 511 // * @param where - the mouse pointer location 514 // PopupBox mousePressed(PopupBox src, Point where) { 517 // start.setLocation(where); 525 // * @param src - the pop-up box where mouse event has occured 526 // * @param where - the mouse pointer location 529 // PopupBox mouseReleased(PopupBox src, Point where) { 540 // Point b = new Point(where); [all...] |
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/ |
build.com | 6 $! where `compiler' is either "GNUC" or "DECC" or "VAXC" or empty 16 $ where = f$parse("_._;",f$environ("PROCEDURE")) - "_._;" 17 $ set default 'where' 18 $ brkt = f$extract(f$length(where)-1,1,where) 19 $ if f$locate(".MISC.VMS"+brkt,where).lt.f$length(where) then -
|
/frameworks/base/core/java/android/webkit/ |
WebIconDatabase.java | 151 String where = (String) map.get("where"); local 158 where, null, null); 196 * @param path The directory path where the icon database will be stored. 240 public void bulkRequestIconForPageUrl(ContentResolver cr, String where, 254 map.put("where", where);
|
/frameworks/base/include/utils/ |
VectorImpl.h | 73 ssize_t insertAt(size_t where, size_t numItems = 1); 74 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1); 117 void* _grow(size_t where, size_t amount); 118 void _shrink(size_t where, size_t amount); 150 //! finds where this item should be inserted 187 ssize_t insertAt(size_t where, size_t numItems = 1); 188 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
|
/packages/apps/Gallery3D/src/com/cooliris/picasa/ |
TableContentProvider.java | 91 // System.out.println("QUERY " + uri + " WHERE (" + selection + ")"); 196 StringBuilder where = new StringBuilder("_id="); local 197 where.append(id); 199 where.append(" AND ("); 200 where.append(selection); 201 where.append(')'); 203 return where.toString();
|
/external/kernel-headers/original/linux/ |
pci.h | 269 int (*read)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *val); 270 int (*write)(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val); 459 int pci_bus_read_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 *val); 460 int pci_bus_read_config_word (struct pci_bus *bus, unsigned int devfn, int where, u16 *val); 461 int pci_bus_read_config_dword (struct pci_bus *bus, unsigned int devfn, int where, u32 *val); 462 int pci_bus_write_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 val); 463 int pci_bus_write_config_word (struct pci_bus *bus, unsigned int devfn, int where, u16 val); 464 int pci_bus_write_config_dword (struct pci_bus *bus, unsigned int devfn, int where, u32 val); 466 static inline int pci_read_config_byte(struct pci_dev *dev, int where, u8 *val) 468 return pci_bus_read_config_byte (dev->bus, dev->devfn, where, val) [all...] |
/frameworks/base/core/java/android/util/ |
Log.java | 97 * the class or activity where the log call occurs. 107 * the class or activity where the log call occurs. 118 * the class or activity where the log call occurs. 128 * the class or activity where the log call occurs. 139 * the class or activity where the log call occurs. 149 * the class or activity where the log call occurs. 160 * the class or activity where the log call occurs. 170 * the class or activity where the log call occurs. 185 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS will 201 * the class or activity where the log call occurs [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/ |
ZoneInfoDB.java | 364 int where; local 367 for (where = 4; where < name.length(); where++) { 368 char c = name.charAt(where); 371 where++; 383 for (; where < name.length(); where++) { 384 char c = name.charAt(where);
|
/external/jdiff/src/jdiff/ |
JDiff.java | 44 // Open the file where the XML representing the API will be stored. 82 // Read the file where the XML representing the old API is stored 88 // Read the file where the XML representing the new API is stored 99 // Read the file where the XML for comments about the changes between 244 * The name of the file where the XML representing the old API is 250 * The name of the directory where the XML representing the old API is 256 * The name of the file where the XML representing the new API is 262 * The name of the directory where the XML representing the new API is 278 /** Details for where to find JDiff. */
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.8-2.js | 93 // case where separator is the empty string. 110 // case where the value of the separator is undefined. in this case. the value of the separator 128 // case where the value of the separator is null. in this case the value of the separator is "null". 144 // case where the value of the separator is a boolean. 160 // case where the value of the separator is a number 177 // case where the value of the separator is a number 193 // case where the separator is not in the string 207 // case where part but not all of separator is in the string. 220 // case where the separator is at the end of the string
|
/frameworks/base/core/java/android/text/ |
Selection.java | 22 * A cursor is a selection where the start and end are at the same offset. 337 int where = findEdge(text, layout, -1); local 338 extendSelection(text, where); 343 int where = findEdge(text, layout, 1); local 344 extendSelection(text, where); 349 int where = findEdge(text, layout, -1); local 350 setSelection(text, where); 355 int where = findEdge(text, layout, 1); local 356 setSelection(text, where);
|
/packages/apps/Music/src/com/android/music/ |
TrackBrowserActivity.java | 450 String where = MediaStore.Audio.Media.ALBUM_ID + "='" + mAlbumId + local 455 new String[] {MediaStore.Audio.Media.ALBUM}, where, null, null); [all...] |