summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Fixing bitmap invalidation bug."Alex Sakhartchouk2011-07-221-2/+0
|\
| * Fixing bitmap invalidation bug.Alex Sakhartchouk2011-07-201-2/+0
| | | | | | | | Change-Id: I47776f2c1a567342f0826850237c15a5d6315f71
* | Merge "New log format, Manual log generation, plus logging of invalidates"Chris Craik2011-07-2110-102/+326
|\ \
| * | New log format, Manual log generation, plus logging of invalidatesChris Craik2011-07-2110-102/+326
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug:5062896 Added features to TileProfiler, updated jni interface to allow querying of arbitrary log data via strings. Depends on the following webkit change: https://android-git.corp.google.com/g/#change,122779 For new logging jni interface, and logging of invalidates. Change-Id: I80ba6702b87e86ec76e5b0eafde45f4ef3a80ad3
* | | Merge "Add looper profiling to adb shell am"Romain Guy2011-07-211-3/+0
|\ \ \
| * | | Add looper profiling to adb shell amRomain Guy2011-07-211-3/+0
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | To profile the looper, run the following command: adb shell am profile looper start <process> <file> adb shell am profile looper stop <process> Change-Id: I781f156e473d7bdbb6d13aaffeeaae88bc01a69f
* | | Adding accessibility support to the Status Bar.Svetoslav Ganov2011-07-211-4/+4
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Added content description to pretty much all animals in the zoo including buttons in the navigation bar, notifications and status icons for battery, signal, data, etc. 2. Rectored to avoid ovelaying views since they block touch exploratino. In general overlaying views cause trouble for touch exploration and accessibility in general. 3. Avoid sending accessibility events in case the user is touching outside of the StatauBAr panels to avoid confusion. 4. Added records to accessibility events in the places where this would help the presentation. So the event comes from a given "leaf" view and its predecessor is adding a record to the event for itself to provide more cotext. It is up to the accessiiblity service to choose how to present that. bug:4686943 Change-Id: I1c1bd123d828fb10911bca92130e9a05c1f020b3
* | Fix bug #4772392 Check what needs to be done for RTL specific new attributes ↵Fabrice Di Meglio2011-07-203-0/+9
|/ | | | | | | | | | that are in public.xml - cleanup public.xml - make BiDiTest makefile non visible to the build system - provide file for injecting the new attributes by hand Change-Id: I5037ec323066ebd254be51fff7070a5a0101dff7
* Merge "Added TileBenchmark"Chris Craik2011-07-1915-0/+1207
|\
| * Added TileBenchmarkChris Craik2011-07-1815-0/+1207
| | | | | | | | | | | | | | Adds TileBenchmark app, which loads pages in webview and scrolls through them automatically, measuring rendering and allocation information. Change-Id: Ieaf5bbcec604c99aaf16822915e58bfc495011ec
* | Merge "Test Gallery layout direction."Fabrice Di Meglio2011-07-1916-1/+201
|\ \
| * | Test Gallery layout direction.Doug Felt2011-07-1816-0/+200
| | | | | | | | | | | | Change-Id: If88f559e8cc46bb72ed45f33d7fc52802f1e1246
* | | Merge "Update TextureView.lockCanvas() test."Romain Guy2011-07-181-15/+58
|\ \ \
| * | | Update TextureView.lockCanvas() test.Romain Guy2011-07-181-15/+58
| | | | | | | | | | | | | | | | Change-Id: Ib0f613fcd6ba64a696936e4e2b386b96d76b828a
* | | | Fix bug #5037425 Canvas.drawText can't handle Right-to-Left text and text ↵Fabrice Di Meglio2011-07-183-50/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | composing - optimization for single run case was broken - pass isRTL boolean along the call stack instead of the dirFlags integer (which was only used as a "isRTL" in the shaper) - update unit tests Change-Id: I33110b76a433633a0b92fbd1db03785204e0c3e6
* | | | Merge "Add unit tests for bug #5037425 Canvas.drawText can't handle ↵Fabrice Di Meglio2011-07-187-4/+183
|\ \ \ \ | |/ / / |/| | | | | | | Right-to-Left text and text composing"
| * | | Add unit tests for bug #5037425 Canvas.drawText can't handle Right-to-Left ↵Fabrice Di Meglio2011-07-187-4/+183
| | | | | | | | | | | | | | | | | | | | | | | | text and text composing Change-Id: Ic71a563ad0f4ba6de5b7f030f04a3a9615b7617c
* | | | Merge "Derive GridLayout's 'gap' constants from new "default_gap" entry in ↵Philip Milne2011-07-181-3/+1
|\ \ \ \ | | | | | | | | | | | | | | | dimens.xml."
| * | | | Derive GridLayout's 'gap' constants from new "default_gap" entry in dimens.xml.Philip Milne2011-07-181-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also: . removed static import of R.styleable - this is non-standard . removed final modifier from DEBUG flag, this prevents the compiler from excluding the debugging code but allows debugging code to be enabled externally . added override to removeAllViews() as GridLayout needs to be notified whever hiearchy changes. Change-Id: I2409289bce7c6638eff320ffd48a6c0704e77fa8
* | | | | Add lock/unlockCanvas to TextureViewRomain Guy2011-07-182-0/+86
| |/ / / |/| | | | | | | | | | | | | | | | | | | With this change, TextureView has feature parity with SurfaceView. Change-Id: I4ef2da33420fc9590f868636ae72a5a6de61965b
* | | | Merge "Clean test APIs for Harfbuzz support"Fabrice Di Meglio2011-07-181-28/+4
|\ \ \ \
| * | | | Clean test APIs for Harfbuzz supportFabrice Di Meglio2011-07-151-28/+4
| |/ / / | | | | | | | | | | | | | | | | | | | | - also update unit tests Change-Id: I557f61e84c4c4b6165163b783d9c679a6b3b4106
* | | | Merge "Fix bug #4972141 Overlapping content in single-choice dialogs"Fabrice Di Meglio2011-07-153-3/+35
|\ \ \ \
| * | | | Fix bug #4972141 Overlapping content in single-choice dialogsFabrice Di Meglio2011-07-153-2/+34
| |/ / / | | | | | | | | | | | | | | | | | | | | - need to take care about padding resolution Change-Id: Ida9738ffada6c6455b7949f933fa61924c4f7961
* | | | Merge "Some code refactoring"Fabrice Di Meglio2011-07-151-1/+29
|\ \ \ \ | |_|/ / |/| | |
| * | | Some code refactoringFabrice Di Meglio2011-07-141-1/+29
| |/ / | | | | | | | | | | | | | | | | | | - make Layout.Alignment.ALIGN_LEFT as the default case - update unit tests for reproducing bug #5002512 Change-Id: Id7ec17abd115bcda7f3434e6d64dbbba6915f108
* | | Add new ViewDebug APIs to profile the event queue.Romain Guy2011-07-152-2/+19
| | | | | | | | | | | | Change-Id: I225bf288780b0244f459316e2765cfa29cd22c89
* | | Merge "Implement textDirection heuristic selection."Fabrice Di Meglio2011-07-153-169/+443
|\ \ \ | |/ / |/| |
| * | Implement textDirection heuristic selection.Doug Felt2011-07-143-169/+443
| | | | | | | | | | | | Change-Id: I2fcf18de573f2d66494fa5ed61e4273c3c6078c7
* | | Merge "Rationalize API after adding maximum size feature."Philip Milne2011-07-143-24/+18
|\ \ \ | |_|/ |/| |
| * | Rationalize API after adding maximum size feature.Philip Milne2011-07-133-24/+18
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . Change name of Group to Spec (with the addition of the fglexibility field, this class no longer represents a group) . Replace overloaded Group/Spec constructors with factory method . Bugfix for measure() when alignmentMode == ALIGN_BOUNDS . Bury as much Java API as possible, to minimize restrictions on future API enhancements - make all field access in Group package private - use factory methods in place of field assignment Change-Id: I46a5027a013bf7c3110b77108b8fd0427165cd18
* | Merge "Introduce TextView drawableStart and drawableEnd"Fabrice Di Meglio2011-07-125-0/+301
|\ \ | |/ |/|
| * Introduce TextView drawableStart and drawableEndFabrice Di Meglio2011-07-125-0/+301
| | | | | | | | | | | | - update also unit tests Change-Id: I20b82f5fea2cc48c93fd9e26eb03290ad730c08a
* | Merge "Remove the simulator target from all makefiles. Bug: 5010576"Jeff Brown2011-07-125-20/+0
|\ \
| * | Remove the simulator target from all makefiles.Jeff Brown2011-07-115-20/+0
| |/ | | | | | | | | | | Bug: 5010576 Change-Id: I04d722f258951a3078fe07899f5bbe8aac02a8e8
* | Add test for bug #4970944Romain Guy2011-07-1111-0/+146
|/ | | | Change-Id: I3e7287bc406ff497a49cf823cee53b1a943a74a9
* Merge "Cleanup"Romain Guy2011-07-071-4/+1
|\
| * CleanupRomain Guy2011-07-071-4/+1
| | | | | | | | Change-Id: I2a9dc34e907b4c6e60f8c2999150b22015012e74
* | Merge "Use NEAREST filtering mode for TextureView.getBitmap()."Romain Guy2011-07-072-4/+26
|\ \ | |/
| * Use NEAREST filtering mode for TextureView.getBitmap().Romain Guy2011-07-072-4/+26
| | | | | | | | Change-Id: I4649062bbdf18ebba7924bdf578f39ad8f6576ac
* | Merge "Use NEAREST filtering for layers whenever possible."Romain Guy2011-07-071-15/+6
|\ \ | |/
| * Use NEAREST filtering for layers whenever possible.Romain Guy2011-07-071-15/+6
| | | | | | | | Change-Id: Id5bee1bd4a322cf93e8000b08e18f1e1b058648e
* | Merge "Simplify and tidy the API for maximum value support."Philip Milne2011-07-072-4/+4
|\ \ | |/ |/|
| * Simplify and tidy the API for maximum value support.Philip Milne2011-07-072-4/+4
| | | | | | | | | | | | | | | | Also: . Remove CAN_SHRINK, FIXED from public view. These can be added later. Change-Id: I63a64ac4748605da60373c8e3c2109178b5260c2
* | Add an API to query maximum bitmap/texture size on Canvas.Romain Guy2011-07-072-0/+67
|/ | | | Change-Id: I2c576c9a4ecad9f33cc6636bcbc29786acdf052d
* Merge "Support for maximum values in layout GridLayout."Philip Milne2011-07-012-4/+4
|\
| * Support for maximum values in layout GridLayout.Philip Milne2011-07-012-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | A cell's ability to shrink or stretch is now integrated with the constraints system, which is now supplied with both upper and lower bounds. Also: . Remove package private access (pseudo) annotation . Remove rowWeight and columnWeight attributes and fields . Remove code to handle weights Change-Id: I9e2432101d15466c621f51ae362435051fab5764
* | Merge "Adding some debug modes to the rs benchmark app."Alex Sakhartchouk2011-07-0110-313/+632
|\ \ | |/ |/|
| * Adding some debug modes to the rs benchmark app.Alex Sakhartchouk2011-06-3010-313/+632
| | | | | | | | Change-Id: I6b957d93e0233ed268403dcdb14f4cf4cff29804
* | Add test case for driver issueRomain Guy2011-06-292-2/+58
| | | | | | | | Change-Id: I0411bf9c8e114ce388e619170fb4c2b1c6fd80f9