summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Text disappears when selecting text in text editor."Romain Guy2010-05-191-0/+4
|\
| * Text disappears when selecting text in text editor.Viktor Yakovel2010-04-211-0/+4
| | | | | | | | | | | | | | | | The problem appears when the user selects, copies and paste text and then selects text again. The second time text is selected, the copied text becomes visible in the text field. Change-Id: Iae19d1659f58ad2e1c6f1a98bdef8bbedabd447f
* | Merge "Removed Calls to deprecated APIs"Romain Guy2010-05-194-12/+5
|\ \
| * | Removed Calls to deprecated APIsChristian Mehlmauer2010-05-174-12/+5
| | | | | | | | | | | | Change-Id: I3f9b6a8d3c8a050156a6cc7ea0eb9de33b82f79a
* | | Merge "Improved error handling when font loading fails."Romain Guy2010-05-181-0/+3
|\ \ \
| * | | Improved error handling when font loading fails.Peter Eliasson2010-04-261-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this patch, an application could trigger a platform crash by calling: Typeface typeface = Typeface.createFromFile(""); boolean isbold = typeface.isBold(); The crash occurs since the Skia error that occurs when font loading fails is not propagated. With this patch, the Typeface constructor throws an IllegalStateException when Skia fails to load the font (i.e. when the native instance is null). Change-Id: I1002b37b7b32840cb7eeef6819d2982cb18c9003
* | | | fix buildJean-Baptiste Queru2010-05-181-2/+3
| | | | | | | | | | | | | | | | Change-Id: I86ee569ec81e6c690f7697237be7d94307014142
* | | | Merge "Fix some typos and other cosmetic cleanups in telephony framework."Jean-Baptiste Queru2010-05-1820-121/+115
|\ \ \ \
| * | | | Fix some typos and other cosmetic cleanups in telephony framework.Jake Hamby2010-05-1320-121/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix typos in Javadoc and comments. - Fix Javadoc @link references to other classes/methods. - Rename MISSING_UKNOWN_APN to MISSING_UNKNOWN_APN in DataConnection. - Remove unused (and misspelled) RETRYIES_* consts in RetryManager. Change-Id: I3b44ac8320d6c1e4c350be600c7ef266aaf735e4
* | | | | Fix updating and deleting FDN entries with an empty alpha identifier.Jake Hamby2010-05-183-37/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix AdnRecord.buildAdnString() to generate the correct record when alpha identifier is empty. This allows the user to update an FDN entry to remove the alpha identifier. Previously the entire entry would be deleted because an empty record was generated here when the alpha identifier was empty, rather than a record containing the phone number with an empty alpha tag. Also, return null if the number or alpha tag are too long. - Fix bug in IccProvider.delete() where efType was compared against local FDN constant rather than IccConstants.EF_FDN. This would always return false. Comparing with IccConstants.EF_FDN gives the intended behavior. Change-Id: I0ea75d7e107c7318c9a48ae6e0a15845a718f4c0
* | | | | Merge "Abort FDN delete when number is empty (instead of name)"Jean-Baptiste Queru2010-05-181-1/+1
|\ \ \ \ \
| * | | | | Abort FDN delete when number is empty (instead of name)Mikael Danielsson2010-05-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed FDN delete to abort when number is empty rather than when name is empty 3GPP TS 31.102 (USIM application) v9.1.0 states in chapter 4.2.24 EFFDN (Fixed Dialling Number) that the Dialling Number field is mandatory whereas the Alpha Identifier is optional. The current implementation of the user interface for editing the fixed dialling list blocks creation and deletion list entries without a name (corresponding to the Alpha Identifier) but instead permits entries without a number. This is incompatible with the USIM specification and implementation. This contribution corrects the implementation in line with the USIM specification. Change-Id: I7e2ca06e20401b517d705fc45c8b873b5c21cc4c
* | | | | | Removed Calls to deprecated APIs and unused ImportsChristian Mehlmauer2010-05-174-11/+4
| |_|_|/ / |/| | | | | | | | | | | | | | Change-Id: Ib26783ca1d6c345cc91aa3ab5b9654f5316c78a0
* | | | | Merge "Updated RGB LED test cases"Jean-Baptiste Queru2010-05-171-2/+20
|\ \ \ \ \
| * | | | | Updated RGB LED test casesMattias Östergren2010-03-051-2/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test cases for turning on the RGB LED with persistent light was corrected. The color for blinking was updated to blue. And finally an option for turning off the lights was added.
* | | | | | Merge "Fixing indeterminate progress bar animation state."Romain Guy2010-05-151-0/+16
|\ \ \ \ \ \
| * | | | | | Fixing indeterminate progress bar animation state.David Sobreira Marques2010-05-151-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When showing a progress bar instance more than once it will not animate after the first time. Change-Id: I5104c551d561755005e533f2ab5257454567bf71 Signed-off-by: David Sobreira Marques <dpsmarques@gmail.com>
* | | | | | | Merge "Modified libdrm to support SuperH platform"Jeff Hamilton2010-05-142-1/+5
|\ \ \ \ \ \ \
| * | | | | | | Modified libdrm to support SuperH platformShin-ichiro KAWASAKI2009-07-032-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added USTL_ANDROID_SH defination while build on SuperH platform
* | | | | | | | Merge "Only hold a weak pointer on SurfaceComposerClients"Jean-Baptiste Queru2010-05-141-4/+4
|\ \ \ \ \ \ \ \
| * | | | | | | | Only hold a weak pointer on SurfaceComposerClientsMatt Fischer2010-04-071-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Each process maintains an array of active SurfaceComposerClient objects, so that they can be reused as new surfaces are parceled across. When a SurfaceComposerClient is disposed, it will remove itself from this list. However, because the list maintains a strong reference on the object, a reference cycle is created, and the client is never deleted. This patch changes the list to maintain weak pointers on the clients instead. Change-Id: I93dc8155fe28b4e350366a3400cdf22a8c77cdd3
* | | | | | | | | Merge "SetLocaleByCarrier, only if its not an unknown carrier."Jean-Baptiste Queru2010-05-141-1/+1
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | SetLocaleByCarrier, only if its not an unknown carrier.Jey2010-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ia218b3622a23cc0fc1bb2c1606c832ecc561d5bf
* | | | | | | | | | Merge "Accept media files by file extension in case insensitive manner."Jean-Baptiste Queru2010-05-141-1/+1
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / |/| | | | | | | | |
| * | | | | | | | | Accept media files by file extension in case insensitive manner.Atsushi Eno2010-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I8e246010c96802ae87960797607fc8f8f2ab6031
* | | | | | | | | | Merge "Put the wifi status icon in the right place."Joe Onorato2010-05-131-1/+1
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Put the wifi status icon in the right place.Steve Kondik2010-03-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the inconsistency where all network-related icons appear on the right side of the volume/vibrate icon except for the wifi icon, which appears on the left. Thanks to Kevin Purdy @ Lifehacker for kicking my OCD in :)
* | | | | | | | | | | Merge "Corrected debug message in WindowManager"Dianne Hackborn2010-05-131-1/+1
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Corrected debug message in WindowManagerJohan Alfven2010-05-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When WindowManager reports "Key dispatching timed out" it prints out information about the window state that was present at the time the key was sent to that window. There is a minor error in the class representing the recorded window state so that the currently focused window is printed instead of the recorded focused window. Change-Id: I29a5471ef725e30f812ffd57fd4597ce81c0c7f2
* | | | | | | | | | | | Use integer for loop counter instead of floatKenny Root2010-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iafaccbb3a3a7cbe0d67ed6827906d713c37ce89b
* | | | | | | | | | | | Merge "New test in FrameworkTest for the VelocityTracker class"Jean-Baptiste Queru2010-05-131-0/+285
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | New test in FrameworkTest for the VelocityTracker classMarc Capdevielle2010-05-121-0/+285
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge "Preserve '+' in phone numbers imported from SIM."Jean-Baptiste Queru2010-05-132-1/+12
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Preserve '+' in phone numbers imported from SIM.Samuel Holmberg2010-05-112-1/+12
| | |/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Contacts with phonenumbers beginning with '+' lose the '+' in the phonebook when imported from SIM. This was only noticable on ADN-records with unknown NPI-values which isn't very usual. Change-Id: I181249759ae3d4181dd3cf627c7a588394b80419
* | | | | | | | | | | | | Add some documentation about the thread safety of Cursor and some of the ↵Jeff Hamilton2010-05-126-8/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SQLite* classes. Change-Id: Icae51052d1c942d7d60bb958d3703411da001079
* | | | | | | | | | | | | Change license for the UUS Information file.Naveen Kalla2010-05-121-23/+11
|/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Idd77e9078354a46605142c2eb704823aaa7d560d
* | | | | | | | | | | | Remove ProximityAlerts Receiver when last ProximityAlert expires.Sean Foy2010-05-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the ProximityAlerts update Receiver when the last ProximityAlert expires. Fixes issue 6900. Change-Id: Ida1970c084e71df47b204c64986a065cb75d0c13
* | | | | | | | | | | | Merge "Corrected repeat count for key repeat in input device."Dianne Hackborn2010-05-111-9/+26
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Corrected repeat count for key repeat in input device.Kristian Dreher2010-05-101-9/+26
| | |_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the key event repeat count was always zero when the repeated key down events was generated by the input device in the Linux kernel. Change-Id: I86b7fd2a75880bc54d052ef404c3654b7ed14c52
* | | | | | | | | | | | Add support for EVDO Rev BNaveen Kalla2010-05-117-3/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I8588e8b342c51f4b79bced8ef8fe60d57f07aefa
* | | | | | | | | | | | Support for User to User Signaling (UUS)Naveen Kalla2010-05-1113-8/+241
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enabling passing UUS information during MO and MT calls. Change-Id: I31621c0a9d3c0607d99d18c49bb6c593cadd0327
* | | | | | | | | | | | Merge "Support to display message when operation is blocked due to FDN being ↵Jean-Baptiste Queru2010-05-116-6/+52
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | enabled"
| * | | | | | | | | | | | Support to display message when operation is blocked due to FDN being enabledNaveen Kalla2010-05-116-6/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The terminal disallows USSD, SMS, Voice Call and Supplementary services operations for numbers not in the Fixed Dialing Number (FDN) list when the FDN service is enabled. FDN_CHECK_FAILURE error is sent from the RIL and the message needs to be displayed to indicate the failure. Change-Id: I49bd63f69a3f0201125b17cd16db2e8fcf93ddc3
* | | | | | | | | | | | | Merge "Notify user regarding invalid number during MO call."Jean-Baptiste Queru2010-05-113-0/+7
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Notify user regarding invalid number during MO call.Naveen Kalla2010-04-233-0/+7
| | |_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When user dials an invalid number, network returns an error indicating "unobtainable number" (See the Table 10.5.123/3GPP TS 24.008 for the possible failure causes). Changes done to display message to indicate user that an invalid number has been dialed. Change-Id: I477d64bc3b59cc205396f911ff9630c640f619f3
* | | | | | | | | | | | Merge "Build software AGL library with correct get_tls() macro for ARMv7 ↵Mathias Agopian2010-05-101-0/+4
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | based platforms"
| * | | | | | | | | | | | Build software AGL library with correct get_tls() macro for ARMv7 based ↵Magnus Landqvist2010-02-191-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | platforms This prevents crashes on snapdragon processors.
* | | | | | | | | | | | | Merge "Fix glReadPixels() to verify that both x and y are non-negative."Mathias Agopian2010-05-101-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Fix glReadPixels() to verify that both x and y are non-negative.Mike Playle2010-01-291-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge "Include the API level 4 fields in the Parcel."Jean-Baptiste Queru2010-05-101-0/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \