summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Add two sanity checks.Gloria Wang2011-06-224-22/+19
| | | | | | | - Remove one unnecessary line. - Clear the extendedData vector in DecryptHandle. Change-Id: I2610c6d68f12d48cb69323a5eb2ae4b3b3e44dff
* Revert "Create TextServiceManager and SpellCheckerService"satok2011-06-2215-988/+3
| | | | This reverts commit eaddb894865a804279659b4aad6364a34ab50beb.
* Merge "Create TextServiceManager and SpellCheckerService"satok2011-06-2215-3/+988
|\
| * Create TextServiceManager and SpellCheckerServicesatok2011-06-2015-3/+988
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 4176026 Spec of TextServiceManager - Chooses the most applicable TextService(e.g. SpellCheckerService, WordBreakIteratorService..) for each locale Spec of SpellCheckerService - Returns whether the given string is a correct word or not - Returns Suggestions for the given string Change-Id: Ia25e7b4f308778891929e31b8cbd741f6848cce4
* | Merge "Add an ongoing notification to switch IME"satok2011-06-216-0/+92
|\ \
| * | Add an ongoing notification to switch IMEsatok2011-06-226-0/+92
| |/ | | | | | | | | Bug: 4671417 Change-Id: I2b9e955003c1f6703978824c947d5f322a039714
* | Send hover to all children under pointer.Jeff Brown2011-06-212-82/+199
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously we only sent hover to the topmost child, but this doesn't handle cases where multiple children are overlapped to achieve certain special effects. Now we send hover to all children until one of them handles it. Also moved the call to send the accessibility event into the main dispatch function so that we can send the accessibility event for all innermost hovered views even when setHovered() might not be called. Change-Id: I6fb8b974db44b594c441deafc012b8415afdfac7
* | Merge "Only handle onHoverEvent in actionable views."Jeff Brown2011-06-213-108/+290
|\ \
| * | Only handle onHoverEvent in actionable views.Jeff Brown2011-06-213-108/+290
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modified onHoverEvent so that a view only has its state changed to hovered when the view is clickable. The intent is to prevent labels from taking hover focus away from their containing view group despite not being actionable in any way. The child will still receive a hover event but, if it does not handle the event (returns false), the hover event will bubble up to its parent and ancestors allowing them a chance to handle the event instead. The new onHoverEvent semantics are better because now they closely mirror those of onTouchEvent. This makes it straightforward to implement views that respond to hover by changing their visual appearance (such as by making buttons glow when hovered). Added onInterceptHoverEvent to enable ViewGroups to explicitly intercept hover events within their bounds. Exposed the new hover event API for real. Change-Id: I63195c8f5c74b859f6047487f9a0f703e8f40ffe
* | | Merge "Fix taint and nesting bugs."Jeff Brown2011-06-211-37/+40
|\ \ \ | |/ /
| * | Fix taint and nesting bugs.Jeff Brown2011-06-211-37/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tainted events should still be processed, even if we don't bother the developer with the details. The check for nested calls to the event verifier must incorporate the event type because different event types might be overridden in different subclasses so the nesting depths may vary. Change-Id: If2fb213e07db783a0bd1da97bb12aad93126d712
* | | Merge "Fix bug 4818050 - Need a way to get notified when a PopupMenu gets ↵Adam Powell2011-06-213-2/+50
|\ \ \ | | | | | | | | | | | | dismissed/canceled"
| * | | Fix bug 4818050 - Need a way to get notified when a PopupMenu getsAdam Powell2011-06-213-2/+50
| |/ / | | | | | | | | | | | | | | | | | | | | | dismissed/canceled Add an OnDismissListener to PopupMenu. Change-Id: I7abe1b9c9bea5e758a9c32631185e50cd7eb1ed0
* | | Merge "Fix bug #4796027 left/right padding regression after recent View ↵Fabrice Di Meglio2011-06-211-7/+12
|\ \ \ | |/ / |/| | | | | change (part 2)"
| * | Fix bug #4796027 left/right padding regression after recent View change (part 2)Fabrice Di Meglio2011-06-211-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | - revert previous fix (transforming >=0 to >0) - initialize mUserPaddingStart and mUserPaddingEnd to -1 in the specific View(Context context) constructor - cache mUserPaddingStart and mUserPaddingEnd a bit earlier in View(Context context, AttributeSet attrs, int defStyle) constructor - cache also mUserPaddingStart and mUserPaddingEnd in setPaddingRelative() Change-Id: Ibe398da7af35f77655d7006444fa49c9c5387f62
* | | Merge "Searching for AccessibilityNodeInfo by text not case insensitive."Svetoslav Ganov2011-06-211-2/+7
|\ \ \
| * | | Searching for AccessibilityNodeInfo by text not case insensitive.Svetoslav Ganov2011-06-211-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. The query string was not converted to lower case during search for infos with text. bug:4818098 Change-Id: Ie4ba8ac2632072bdd71070ec8fd24ca255560ac0
* | | | Merge "Fix bug #4796027 left/right padding regression after recent View change"Fabrice Di Meglio2011-06-211-2/+2
|\ \ \ \
| * | | | Fix bug #4796027 left/right padding regression after recent View changeFabrice Di Meglio2011-06-211-2/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | - mUserPaddingStart and mUserPaddingEnd had be be greater than 0 for overriding Change-Id: I588a9971bf73aa9461716cfd5a006373a14408f8
* | | | Merge "Touch exploration hover events don't map coordinates correctly on ↵Svetoslav Ganov2011-06-211-2/+2
|\ \ \ \ | | |/ / | |/| | | | | | scrollable WebViews."
| * | | Touch exploration hover events don't map coordinates correctly on scrollable ↵Svetoslav Ganov2011-06-211-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WebViews. 1. While mapping Android hover to WebKit mouse events I was not taking into account the horizontal and vertical scroll. bug:4807087 Change-Id: Ie24a8a30ce6a20d27b627ae7c7fbff1b74d140c8
* | | | Merge "AccessiblityNodeInfo#findAccessibilityNodesByText returns null if non ↵Svetoslav Ganov2011-06-211-2/+3
|\ \ \ \ | | | | | | | | | | | | | | | found."
| * | | | AccessiblityNodeInfo#findAccessibilityNodesByText returns null if non found.Svetoslav Ganov2011-06-211-2/+3
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Updated the code to return empty list instead. 2. Updated the doc to explain that the search is done in the sub-tree rooted at the info whose method is called. Change-Id: I560d2563ed4772305bf2d7919560ef19baa30a1d
* | | | Merge "Fix bugs in AllocationAdapter."Jason Sams2011-06-211-12/+68
|\ \ \ \
| * | | | Fix bugs in AllocationAdapter.Jason Sams2011-06-211-12/+68
| | | | | | | | | | | | | | | | | | | | Change-Id: Ib530fc719de3587f44eed88bd1d16e22dd5af64a
* | | | | Merge "Timestamp adjustment will not work well if we ask video encoder to ↵James Dong2011-06-211-197/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | produce B frames"
| * | | | | Timestamp adjustment will not work well if we ask video encoder to produce B ↵James Dong2011-06-211-197/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | frames Change-Id: Ic6a2235fefb6f15081091e1f2c1b12ee92fba5e0
* | | | | | Merge "First cut of atomics for renderscript."Jason Sams2011-06-212-0/+325
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | First cut of atomics for renderscript.Jason Sams2011-06-212-0/+325
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iefc0228d802e6f5348ae787553c9252fb90ba110 update atomic patch. Change-Id: Idd0596439c092f570b6b226e9a9c7102ddffe88e
* | | | | | Merge "Support missing RS vector types."Stephen Hines2011-06-215-1/+575
|\ \ \ \ \ \
| * | | | | | Support missing RS vector types.Stephen Hines2011-06-215-1/+575
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I87eae3cc79c3963d5a8edf16cc26eee6d93d81d7
* | | | | | | Merge "Port EventRecurrence.parse() from native"Andy McFadden2011-06-213-46/+1359
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | |
| * | | | | | Port EventRecurrence.parse() from nativeAndy McFadden2011-06-213-46/+1359
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a Java-language implementation of EventRecurrence.parse(), to make it easier to relocate it for the benefit of unbundled Calendar. Differences from the native version: - enforces that FREQ appears first - allows (but ignores) X-* parts - improved validation on various values - error messages are more specific - enforces that only one of UNTIL and COUNT may be present [disabled] - allows lower-case property and enumeration values [disabled] As part of the transition process, both versions of the parser are called on every request, and the results are compared. If the results are different a warning message is logged. An unnecessary constructor was removed. This also this moves some EventRecurrence tests out of CalendarProvider, into coretests, and adds a simple parse test with the examples from the RFC. Bug 4575374 Change-Id: If737ed1272fda65c93363d87b2da12b85e644f5b
* | | | | | am b2dba991: am d1a19b10: am c7c1ba50: Merge "cherrypick from hc-mr1 ↵Robert Ly2011-06-211-6/+16
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I23143ecaa0eeab68d55d007b8594a51bf90fbab7" into honeycomb-mr2 * commit 'b2dba9910b6bcd26d4d5318b9ee63668ecf39e66': cherrypick from hc-mr1 Change-Id: I23143ecaa0eeab68d55d007b8594a51bf90fbab7
| * \ \ \ \ \ am d1a19b10: am c7c1ba50: Merge "cherrypick from hc-mr1 Change-Id: ↵Robert Ly2011-06-201-6/+16
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I23143ecaa0eeab68d55d007b8594a51bf90fbab7" into honeycomb-mr2 * commit 'd1a19b10ef0bb0369fa7ed9a16fb8f8d6320e05f': cherrypick from hc-mr1 Change-Id: I23143ecaa0eeab68d55d007b8594a51bf90fbab7
| | * \ \ \ \ \ am c7c1ba50: Merge "cherrypick from hc-mr1 Change-Id: ↵Robert Ly2011-06-201-6/+16
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I23143ecaa0eeab68d55d007b8594a51bf90fbab7" into honeycomb-mr2 * commit 'c7c1ba5071456a813abbdadfdbe94287b06877e7': cherrypick from hc-mr1 Change-Id: I23143ecaa0eeab68d55d007b8594a51bf90fbab7
| | | * \ \ \ \ \ Merge "cherrypick from hc-mr1 Change-Id: ↵Robert Ly2011-06-201-6/+16
| | | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I23143ecaa0eeab68d55d007b8594a51bf90fbab7" into honeycomb-mr2
| | | | * | | | | | cherrypick from hc-mr1 Change-Id: I23143ecaa0eeab68d55d007b8594a51bf90fbab7Robert Ly2011-06-161-6/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ica88f38229a66bfad60cbaf5db4bf94cd99c1d19
* | | | | | | | | | am 5520ec6f: am 152e5f56: am 329e0b90: Merge "cherrypick from hc-mr1 ↵Robert Ly2011-06-211-1/+2
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I507c9b98289b873cb5c40e0e34be433e4eb0d4cb" into honeycomb-mr2 * commit '5520ec6f8958d9030a4c9b606b25be6190c75a08': cherrypick from hc-mr1 Change-Id: I507c9b98289b873cb5c40e0e34be433e4eb0d4cb
| * | | | | | | | | am 152e5f56: am 329e0b90: Merge "cherrypick from hc-mr1 Change-Id: ↵Robert Ly2011-06-201-1/+2
| |\ \ \ \ \ \ \ \ \ | | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I507c9b98289b873cb5c40e0e34be433e4eb0d4cb" into honeycomb-mr2 * commit '152e5f56762c9db80d2b65fda8b13e3914f05d86': cherrypick from hc-mr1 Change-Id: I507c9b98289b873cb5c40e0e34be433e4eb0d4cb
| | * | | | | | | | am 329e0b90: Merge "cherrypick from hc-mr1 Change-Id: ↵Robert Ly2011-06-201-1/+2
| | |\ \ \ \ \ \ \ \ | | | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I507c9b98289b873cb5c40e0e34be433e4eb0d4cb" into honeycomb-mr2 * commit '329e0b9020f3b8cd1265c265cdf00b438960cbe1': cherrypick from hc-mr1 Change-Id: I507c9b98289b873cb5c40e0e34be433e4eb0d4cb
| | | * | | | | | | Merge "cherrypick from hc-mr1 Change-Id: ↵Robert Ly2011-06-201-1/+2
| | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I507c9b98289b873cb5c40e0e34be433e4eb0d4cb" into honeycomb-mr2
| | | | * | | | | | | cherrypick from hc-mr1 Change-Id: I507c9b98289b873cb5c40e0e34be433e4eb0d4cbRobert Ly2011-06-161-1/+2
| | | | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ic18859f171d03f8562ad91761da40a55b59f47ea
* | | | | | | | | | am 49b73385: am ff3ead50: (-s ours) am e3b05d09: Merge "Tweaks for ↵Jean-Baptiste Queru2011-06-210-0/+0
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | forward-compatibility" * commit '49b73385146cb566e242c63abc3c3781750bec43': Tweaks for forward-compatibility
| * | | | | | | | | am ff3ead50: (-s ours) am e3b05d09: Merge "Tweaks for forward-compatibility"Jean-Baptiste Queru2011-06-200-0/+0
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'ff3ead5072721bfb24202ff9b041cc4291f34e21': Tweaks for forward-compatibility
| | * \ \ \ \ \ \ \ \ am e3b05d09: Merge "Tweaks for forward-compatibility"Jean-Baptiste Queru2011-06-204-0/+17
| | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'e3b05d09163257b888c86f2a560e10c48f4cf029': Tweaks for forward-compatibility
| | | * \ \ \ \ \ \ \ \ Merge "Tweaks for forward-compatibility"Jean-Baptiste Queru2011-06-184-0/+17
| | | |\ \ \ \ \ \ \ \ \
| | | | * | | | | | | | | Tweaks for forward-compatibilityJean-Baptiste Queru2011-06-184-0/+17
| | | |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iec525edc186e78d5d865f82dd5b1f56263c22e86
* | | | | | | | | | | | Merge "Fix bug 4725323 - 'More' shows the icons which are already available ↵Adam Powell2011-06-211-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in settings"
| * | | | | | | | | | | | Fix bug 4725323 - 'More' shows the icons which are already availableAdam Powell2011-06-211-2/+2
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in settings Change-Id: I161787710fbadaa19b93de3e69f3c60db2be73a6