summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* am 892771ab: Rename WRITE_SDCARD to WRITE_EXTERNAL_STORAGE in browser test appGuang Zhu2009-06-011-0/+1
|\ | | | | | | | | | | | | Merge commit '892771ab81f79a6b0cf9735701760c5a12d6ab85' * commit '892771ab81f79a6b0cf9735701760c5a12d6ab85': Rename WRITE_SDCARD to WRITE_EXTERNAL_STORAGE in browser test app
| * Rename WRITE_SDCARD to WRITE_EXTERNAL_STORAGE in browser test appGuang Zhu2009-06-011-0/+1
| |
* | am 40d87ee4: Removing @Override to fix the buildGuang Zhu2009-06-011-1/+0
|\ \ | |/ | | | | | | | | | | Merge commit '40d87ee4867baa25fd7a824f324ea7040bf5bc23' * commit '40d87ee4867baa25fd7a824f324ea7040bf5bc23': Removing @Override to fix the build
| * Removing @Override to fix the buildGuang Zhu2009-06-011-1/+0
| |
* | am 50566b35: Merge change 2816 into donutAndroid (Google) Code Review2009-06-015-269/+449
|\ \ | |/ | | | | | | | | | | Merge commit '50566b3554f440d6b84a696875147d8d21682b10' * commit '50566b3554f440d6b84a696875147d8d21682b10': Update reliability test code. Use a separate activity with simpler calback mechanism.
| * Update reliability test code. Use a separate activity with simpler calback ↵Guang Zhu2009-06-015-269/+449
| | | | | | | | mechanism.
* | am 162c9d0e: Merge change 2805 into donutAndroid (Google) Code Review2009-06-012-2/+2
|\ \ | |/ | | | | | | | | | | Merge commit '162c9d0e90eaa71adc8c7d1456d1a9a95e638c47' * commit '162c9d0e90eaa71adc8c7d1456d1a9a95e638c47': base: Rename WRITE_SDCARD -> WRITE_EXTERNAL_STORAGE
| * base: Rename WRITE_SDCARD -> WRITE_EXTERNAL_STORAGESan Mehat2009-06-012-2/+2
| | | | | | | | Signed-off-by: San Mehat <san@google.com>
* | am 181fafaf: Retool the backup process to use a new \'BackupAgent\' classChristopher Tate2009-05-312-9/+4
|\ \ | |/ | | | | | | | | | | Merge commit '181fafaf48208978b8ba2022683ffa78aaeddde1' * commit '181fafaf48208978b8ba2022683ffa78aaeddde1': Retool the backup process to use a new 'BackupAgent' class
| * Retool the backup process to use a new 'BackupAgent' classChristopher Tate2009-05-312-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Backups will be handled by launching the application in a special mode under which no activities or services will be started, only the BackupAgent subclass named in the app's android:backupAgent manifest property. This takes the place of the BackupService class used earlier during development. In the cases of *full* backup or restore, an application that does not supply its own BackupAgent will be launched in a restricted manner; in particular, it will be using the default Application class rather than any manifest-declared one. This ensures that the app is not running any code that may try to manipulate its data while the backup system reads/writes its data set.
* | am 6190fe6e: Merge change 2758 into donutAndroid (Google) Code Review2009-05-291-1/+1
|\ \ | |/ | | | | | | | | | | Merge commit '6190fe6e7d7c8a917472637f5ab2fb21fc8a6eea' * commit '6190fe6e7d7c8a917472637f5ab2fb21fc8a6eea': Fix concat SMS for GSM.
| * Fix concat SMS for GSM.jsh2009-05-291-1/+1
| | | | | | | | | | | | Bug 1883998: We only support sending 8-bit references for now. Bug 1885080: Also fix the GsmAlphabetTest, which started failing when SmsHeader was re-worked.
* | am a5f50b8f: Merge change 2746 into donutAndroid (Google) Code Review2009-05-293-28/+31
|\ \ | |/ | | | | | | | | | | Merge commit 'a5f50b8f49cc9b34b1de462e11498d92c692b978' * commit 'a5f50b8f49cc9b34b1de462e11498d92c692b978': Modify the base gestures API to use streams instead of files. Adds new wrappers to easily load/save gestures from files, resources, etc. Do the same for the letters recognizer.
| * Modify the base gestures API to use streams instead of files. Adds new ↵Romain Guy2009-05-293-28/+31
| | | | | | | | wrappers to easily load/save gestures from files, resources, etc. Do the same for the letters recognizer.
* | am 761e0918: Unmap memory in MemoryFile.close().Bjorn Bringert2009-05-291-4/+73
|\ \ | |/ | | | | | | | | | | Merge commit '761e0918d30b6a3f292625b44b86dffd1538bc78' * commit '761e0918d30b6a3f292625b44b86dffd1538bc78': Unmap memory in MemoryFile.close().
| * Unmap memory in MemoryFile.close().Bjorn Bringert2009-05-291-4/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As reported in http://b/issue?id=1398215 MemoryFile did not munmap(2) the ashmem region after closing it. This causes the process to leak virtual address space. This change fixes the problem by calling munmap(2) in close(). The unmapping is done by a helper method deactivate(). The change also replaces the use of an int for the file descriptor with a FileDescriptor object to make sure that we keep track of when the file descriptor has been closed. I chose to implement it this way because I will need decativate() and a FileDescriptor object in an upcoming change that allows sending MemoryFile file descriptors between processes. The change also adds a number of tests for the behavior of close(). The testCloseRead() and testCloseWrite() fail with the old MemoryFile implementation, and testCloseLeak() causes a segfault. They all pass now.
* | Merge change 2503Android (Google) Code Review2009-05-271-0/+5
|\ \ | | | | | | | | | | | | * changes: Stop the NANP number formatter from putting dashes in shortcodes.
| * | Stop the NANP number formatter from putting dashes in shortcodes.Ficus Kirkpatrick2009-05-261-0/+5
| | | | | | | | | | | | | | | This changes the result of PhoneNumberUtils.formatNumber("46645") from "466-45" to "46645".
* | | am 511a0134: Merge change 2302 into donutAndroid (Google) Code Review2009-05-261-0/+37
|\ \ \ | |/ / |/| / | |/ | | | | | | Merge commit '511a0134e1bfe90a23960eea72eca565e52aa816' * commit '511a0134e1bfe90a23960eea72eca565e52aa816': added SmsMessage ConcatRef parsing validation
| * Merge change 2302 into donutAndroid (Google) Code Review2009-05-251-0/+37
| |\ | | | | | | | | | | | | * changes: added SmsMessage ConcatRef parsing validation
| | * added SmsMessage ConcatRef parsing validationTammo Spalink2009-05-221-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | addresses bugs: http://b/issue?id=1870607 http://b/issue?id=1688238 and prior perforce commit: http://s9/?change_num=136189
* | | am 82392e84: Merge change 2402 into donutAndroid (Google) Code Review2009-05-246-48/+42
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit '82392e84b9bcf618d1c41730ec14fb8dab841990' * commit '82392e84b9bcf618d1c41730ec14fb8dab841990': Cleanup Gestures API and make it easier to use in 3rd party apps. Also fix the events processing in the gestures overlay mechanism. Give better control of the various properties of the overlay through XML attributes.
| * | Cleanup Gestures API and make it easier to use in 3rd party apps. Also fix ↵Romain Guy2009-05-246-48/+42
| | | | | | | | | | | | the events processing in the gestures overlay mechanism. Give better control of the various properties of the overlay through XML attributes.
* | | add ipc support to batchingFred Quintana2009-05-222-211/+508
| | |
* | | am 380cd96e: Fix the buildRomain Guy2009-05-221-0/+3
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit '380cd96e5d7018cbf43295c9f2f2a33897affd63' * commit '380cd96e5d7018cbf43295c9f2f2a33897affd63': Fix the build
| * | Fix the buildRomain Guy2009-05-221-0/+3
| | |
* | | merge f41c640d8424fbd90cb1751173ede1c9f5e848b4 w/minor conflictThe Android Open Source Project2009-05-225-15/+27
|\ \ \ | |/ /
| * | Add a new API to ListView: setGestures(int). This allows developers to ↵Romain Guy2009-05-225-15/+27
| |/ | | | | | | enable gestures to jump inside the list or filter it. This change also introduces a new XML attribute to control this API. It also adds the ability to theme the GestureOverlayView from the gestures library. Finally, this adds a new VERSION header to the binary format used to store the letters for the recognizer.
* | am cfcc0df2: Merge change 2285 into donutAndroid (Google) Code Review2009-05-2121-2705/+35
|\ \ | |/ | | | | | | | | | | Merge commit 'cfcc0df2658d0ce7dc753511bb44ab8ae7a636f7' * commit 'cfcc0df2658d0ce7dc753511bb44ab8ae7a636f7': Move the Gestures API to the framework in android.gesture.
| * Move the Gestures API to the framework in android.gesture.Romain Guy2009-05-2121-2705/+35
| |
* | am ac6a4b8e: Renamed setGestureType in GestureLibraryYang Li2009-05-212-3/+9
|\ \ | |/ | | | | | | | | | | Merge commit 'ac6a4b8eab8311a02e1988c1dbd1c85f867b6bc4' * commit 'ac6a4b8eab8311a02e1988c1dbd1c85f867b6bc4': Renamed setGestureType in GestureLibrary
| * Renamed setGestureType in GestureLibraryYang Li2009-05-212-3/+9
| |
* | am b6d99b7d: Modify how GestureLibrary stores its data. The XML format is ↵Romain Guy2009-05-2110-278/+288
|\ \ | |/ | | | | | | | | | | | | | | now replaced by a more efficient binary format which should speed up saving/loading. The format is very similar to the one used by the letters recognizer. The format is documented in GestureLibrary.java. Merge commit 'b6d99b7d17fd1bb1326a70744bd01be5d1586487' * commit 'b6d99b7d17fd1bb1326a70744bd01be5d1586487': Modify how GestureLibrary stores its data. The XML format is now replaced by a more efficient binary format which should speed up saving/loading. The format is very similar to the one used by the letters recognizer. The format is documented in GestureLibrary.java.
| * Modify how GestureLibrary stores its data. The XML format is now replaced by ↵Romain Guy2009-05-2110-278/+288
| | | | | | | | a more efficient binary format which should speed up saving/loading. The format is very similar to the one used by the letters recognizer. The format is documented in GestureLibrary.java.
* | am aeed1816: Merge change 2219 into donutAndroid (Google) Code Review2009-05-217-47/+109
|\ \ | |/ | | | | | | | | | | Merge commit 'aeed1816b7bbf8948c1daed48db6fe7567f338af' * commit 'aeed1816b7bbf8948c1daed48db6fe7567f338af': Updated LetterRecognizer & related gesture recognition code
| * Merge change 2219 into donutAndroid (Google) Code Review2009-05-217-47/+109
| |\ | | | | | | | | | | | | * changes: Updated LetterRecognizer & related gesture recognition code - added personalization for letter recognizer
| | * Updated LetterRecognizer & related gesture recognition codeYang Li2009-05-217-47/+109
| | | | | | | | | | | | - added personalization for letter recognizer
| * | Fixed SD card access permission issue in manifestGuang Zhu2009-05-211-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | On branch b1869634_sdcard_perm Changes to be committed: (use "git reset HEAD <file>..." to unstage) modified: tests/DumpRenderTree/AndroidManifest.xml
* | | Fixed SD card access permission issue in manifestGuang Zhu2009-05-211-1/+2
| | |
* | | am 7269d9ac: Tweak the Gestures Overlay demo. This shortens the fade ↵Romain Guy2009-05-203-13/+24
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | duration to make it more usable and also adds a longer pause before the fade. This change also introduce a new compile-time setting to decide whether or not the overlay should steal the events from the underlying ListView. It is now off by default, per discussion with hackbod. It feel a little bit better but it may vary from user to user so studies will be necessary. Merge commit '7269d9ac10d4c6ed5086b9f5677821e8d4382390' * commit '7269d9ac10d4c6ed5086b9f5677821e8d4382390': Tweak the Gestures Overlay demo. This shortens the fade duration to make it more usable and also adds a longer pause before the fade. This change also introduce a new compile-time setting to decide whether or not the overlay should steal the events from the underlying ListView. It is now off by default, per discussion with hackbod. It feel a little bit better but it may vary from user to user so studies will be necessary.
| * | Tweak the Gestures Overlay demo. This shortens the fade duration to make it ↵Romain Guy2009-05-203-13/+24
| |/ | | | | | | more usable and also adds a longer pause before the fade. This change also introduce a new compile-time setting to decide whether or not the overlay should steal the events from the underlying ListView. It is now off by default, per discussion with hackbod. It feel a little bit better but it may vary from user to user so studies will be necessary.
* | am b204d4f1: Merge change 2136 into donutAndroid (Google) Code Review2009-05-2016-296/+539
|\ \ | |/ | | | | | | | | | | Merge commit 'b204d4f12773ec67c7f0ded41cb111018f154476' * commit 'b204d4f12773ec67c7f0ded41cb111018f154476': First pass at cleaning up the gestures code.
| * First pass at cleaning up the gestures code.Romain Guy2009-05-2016-296/+539
| |
* | am e2914615: Merge change 2099 into donutAndroid (Google) Code Review2009-05-201-2/+2
|\ \ | |/ | | | | | | | | | | Merge commit 'e29146158b6048936671decc060d398a68333fc0' * commit 'e29146158b6048936671decc060d398a68333fc0': Hook up the backup data writer, and add a utility to read the backup data files.
| * Hook up the backup data writer, and add a utility to read the backup data files.Joe Onorato2009-05-201-2/+2
| |
* | am 5bc21aa0: Merge change 1127 into donutAndroid (Google) Code Review2009-05-204-30/+125
|\ \ | |/ | | | | | | | | | | Merge commit '5bc21aa0671d83e406b46e0431816dea8d9ca5cb' * commit '5bc21aa0671d83e406b46e0431816dea8d9ca5cb': SmsHeader rewrite, in preparation for migration to public API.
| * Merge change 1127 into donutAndroid (Google) Code Review2009-05-194-30/+125
| |\ | | | | | | | | | | | | * changes: SmsHeader rewrite, in preparation for migration to public API.
| | * SmsHeader rewrite, in preparation for migration to public API.Tammo Spalink2009-05-204-30/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See http://b/issue?id=1751571 Changes the semantics of SmsHeader from containing only opaque data to exposing occurs-once frequently-used fields together with a list of opaque fields. Also changes the coding to and from byte array to be symmetrical, whereas previous encoding had an extra length field. Cdma SmsMessage -- cleanup of code paths along with adjustments to match the new header semantics, which should address at least some of the issues with concatenated messages. See http://b/issue?id=1809759
* | | am 12bb9471: Merge change 1936 into donutAndroid (Google) Code Review2009-05-1934-1732/+3016
|\ \ \ | |/ / | | | | | | | | | | | | | | | Merge commit '12bb9471cb9ce2eb48d8e9817841f43e7220566f' * commit '12bb9471cb9ce2eb48d8e9817841f43e7220566f': Recovered the code of the gesture library
| * | Merge change 1936 into donutAndroid (Google) Code Review2009-05-1934-1732/+3016
| |\ \ | | | | | | | | | | | | | | | | * changes: Recovered the code of the gesture library