OSDN Git Service

android-x86/frameworks-base.git
11 years agoMerge ""[+>" more icon was never shown in PhoneStatusBar"
Daniel Sandler [Tue, 12 Mar 2013 19:51:32 +0000 (19:51 +0000)]
Merge ""[+>" more icon was never shown in PhoneStatusBar"

11 years ago"[+>" more icon was never shown in PhoneStatusBar
Mats H Carlsson [Wed, 10 Oct 2012 11:37:38 +0000 (13:37 +0200)]
"[+>" more icon was never shown in PhoneStatusBar

"[+>" more icon was never show in status bar because
the member variable for this icon was not initialized
from resources. This fix enables "[+>" icon to appear
in status bar when the number of indications in status
bar becomes large.

Bug: 8368569
Change-Id: Ieb3412eed831052d69c0cf63c9b4230c38171e4a

11 years agoMerge "Fix DateFormat k and h, and implement K and H for the first time."
Elliott Hughes [Mon, 11 Mar 2013 22:03:18 +0000 (22:03 +0000)]
Merge "Fix DateFormat k and h, and implement K and H for the first time."

11 years agoFix DateFormat k and h, and implement K and H for the first time.
Elliott Hughes [Mon, 11 Mar 2013 21:49:44 +0000 (14:49 -0700)]
Fix DateFormat k and h, and implement K and H for the first time.

Bug: 8359981
Change-Id: I52ef937a77e9e28f2719c2ee6f59e4b74514f0b2

11 years agoMerge "use Calendar in DateUtils format method"
Elliott Hughes [Mon, 11 Mar 2013 20:11:20 +0000 (20:11 +0000)]
Merge "use Calendar in DateUtils format method"

11 years agouse Calendar in DateUtils format method
Sungmin Choi [Thu, 28 Feb 2013 11:17:15 +0000 (20:17 +0900)]
use Calendar in DateUtils format method

The DatePickerDialog is using DateUtils to format the dialog's title
and the DateUtils class does not work with dates outside to the
specified range.
For example, if user selects 2038-03-07, DatePickerDialog shows
1902-01-30 on Title.
The reason for the DateUtils class not being able to format dates
outside the range of 1902 and 2036 is because internally it is using
the Time class which does not support such dates.
To fix it, use Calendar class in DataUilts format method.

Steps to reproduce:
1. Settings -> Date & time
2. uncheck Automatic date & time
3. Set Date
4. choose any date before 1902 or after 2037
5. update wrong date on Title

Bug: https://code.google.com/p/android/issues/detail?id=13050
Change-Id: I003266765751b5c340426af84daef271f39f771e

11 years agoMerge "update preloaded-classes"
Elliott Hughes [Mon, 11 Mar 2013 16:59:49 +0000 (16:59 +0000)]
Merge "update preloaded-classes"

11 years agoupdate preloaded-classes
Sungmin Choi [Sat, 9 Mar 2013 06:19:47 +0000 (15:19 +0900)]
update preloaded-classes

Remove some preloaded-classes and fix typo for deleting log messages
as the followings during booting.

W/Zygote  (  163): Class not found for preloading: android.bluetooth.
BluetoothAudioGateway
W/Zygote  (  163): Class not found for preloading: android.bluetooth.
HeadsetBase
W/Zygote  (  163): Class not found for preloading: undroid.content.Ab
stractThreadedSyncAdapter$SyncThread

Change-Id: Id02e0cccaeb150f48e12d67b2d691df828842e4c

11 years agoMerge "Improve DateFormat.format."
Elliott Hughes [Fri, 8 Mar 2013 23:50:02 +0000 (23:50 +0000)]
Merge "Improve DateFormat.format."

11 years agoImprove DateFormat.format.
Elliott Hughes [Fri, 8 Mar 2013 23:06:14 +0000 (15:06 -0800)]
Improve DateFormat.format.

Add support for the 'c' format character, required in many non-English locales.
Reimplement 'c' and 'E', and 'L' and 'M', so they correctly interpret 5-count
pattern characters.

Replace the old incorrect class documentation with a pointer to the
well-maintained libcore equivalent and the Unicode UTS to which these two
implementations are supposed to conform.

Deprecate the useless constants for pattern characters. No one sane is going
to write MONTH + MONTH + MONTH + MONTH instead of "MMMM".

Correct the documentation for getLongDateFormat and getMediumDateFormat.

Also fix DateUtils.getStandaloneMonthString for LENGTH_SHORTEST.

Tests are in https://android-review.googlesource.com/53291.

Change-Id: I4dda8b18070f05ccdc11c1f0a9381a9d233db4e8

11 years agoMerge "Improve the Resource.getQuantityString/getQuantityText documentation."
Elliott Hughes [Fri, 8 Mar 2013 21:18:34 +0000 (21:18 +0000)]
Merge "Improve the Resource.getQuantityString/getQuantityText documentation."

11 years agoImprove the Resource.getQuantityString/getQuantityText documentation.
Elliott Hughes [Fri, 8 Mar 2013 19:26:57 +0000 (11:26 -0800)]
Improve the Resource.getQuantityString/getQuantityText documentation.

Natural languages differ so much and in such odd ways that you can't
use getQuantityString as an "if" statement. It's really just for grammaticality.
This is explained well in
http://developer.android.com/guide/topics/resources/string-resource.html#Plurals
but we need to make more of an effort to motivate people to read that, and to
at least get the most important point across if they don't read it.

Change-Id: I549b9f3563462c45f2dea34c558185e0714127cd

11 years agoMerge "Use getRelativeDayString in getRelativeTimeSpanString."
Elliott Hughes [Fri, 8 Mar 2013 18:39:47 +0000 (18:39 +0000)]
Merge "Use getRelativeDayString in getRelativeTimeSpanString."

11 years agoUse getRelativeDayString in getRelativeTimeSpanString.
Elliott Hughes [Fri, 8 Mar 2013 00:46:55 +0000 (16:46 -0800)]
Use getRelativeDayString in getRelativeTimeSpanString.

The bug we're fixing here is that languages that don't
distinguish the "one" case grammatically (such as Japanese)
would say the equivalent of "In 1 day" rather than "Tomorrow"
because of the misuse of getQuantityString.

This has the side-effect of switching us over to the CLDR
strings for relative day names, which have consistent capitalization;
the Android donottranslate-cldr.xml strings varied even within
a language, so although this is a change, it seems like a step
in the right direction.

In a future change, we should actually push all relative
day formatting down into icu4c.

Bug: 7098707
Change-Id: Ia2f9af3d18c441d6093dd5da7956a3d0130e5b06

11 years agoMerge "Explain why the frameworks/base DateUtilsTest isn't merged with CTS' DateUtils...
Elliott Hughes [Thu, 7 Mar 2013 23:24:40 +0000 (23:24 +0000)]
Merge "Explain why the frameworks/base DateUtilsTest isn't merged with CTS' DateUtilsTest."

11 years agoExplain why the frameworks/base DateUtilsTest isn't merged with CTS' DateUtilsTest.
Elliott Hughes [Thu, 7 Mar 2013 22:30:17 +0000 (14:30 -0800)]
Explain why the frameworks/base DateUtilsTest isn't merged with CTS' DateUtilsTest.

Change-Id: Icbdb4e9133a9ae1c1b37f822367e1ac86e9e36cb

11 years agoMerge "frameworks/base: stop find before issuing wps pbc."
Irfan Sheriff [Wed, 6 Mar 2013 15:58:41 +0000 (15:58 +0000)]
Merge "frameworks/base: stop find before issuing wps pbc."

11 years agoframeworks/base: stop find before issuing wps pbc.
Deepthi Gowri [Fri, 22 Feb 2013 18:32:00 +0000 (00:02 +0530)]
frameworks/base: stop find before issuing wps pbc.

Stop p2p find before issuing a PBC to avoid GO switching to other
channel leading connection failure.

Change-Id: I88906f944de1c85b143f96cb7b35724af19cd151
Signed-off-by: Deepthi Gowri <deepthi@codeaurora.org>
11 years agoMerge "FIX Null Pointer Exception on dialog cancel"
Victoria Lease [Tue, 5 Mar 2013 23:25:15 +0000 (23:25 +0000)]
Merge "FIX Null Pointer Exception on dialog cancel"

11 years agoMerge "Audio continue to played even if paused manually"
Victoria Lease [Tue, 5 Mar 2013 23:20:45 +0000 (23:20 +0000)]
Merge "Audio continue to played even if paused manually"

11 years agoMerge "jni: remove obsolete flag from makefile"
Elliott Hughes [Tue, 5 Mar 2013 22:30:58 +0000 (22:30 +0000)]
Merge "jni: remove obsolete flag from makefile"

11 years agojni: remove obsolete flag from makefile
Bruce Beare [Thu, 24 May 2012 18:20:04 +0000 (11:20 -0700)]
jni: remove obsolete flag from makefile

Change-Id: Ia7e67694a736745333e9d36396b8cb6194fd26ec
Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
11 years agoAudio continue to played even if paused manually
Roger Chen [Mon, 21 Jan 2013 08:04:58 +0000 (16:04 +0800)]
Audio continue to played even if paused manually

Currently, audio will resume playing after a phone call
or notification even if the user had manually paused playback.

This patch addresses that by introducing a new player state
to distinguish the user pausing playback and the browser
losing audio focus for some other reason. Audio will only
 resume if the browser temporarily lost audio focus and
not when the user has manually paused playback.

Change-Id: I9e8beaedb0fcc5afe920068297ed9c387eab2ac8
Signed-off-by: Roger Chen <cxr514033970@gmail.com>
11 years agoMerge "Performance increase in thumbnail handling"
Marco Nelissen [Tue, 5 Mar 2013 00:06:33 +0000 (00:06 +0000)]
Merge "Performance increase in thumbnail handling"

11 years agoMerge "Tracking libcore change to use longs instead of ints to store pointers in...
Brian Carlstrom [Mon, 4 Mar 2013 17:50:14 +0000 (17:50 +0000)]
Merge "Tracking libcore change to use longs instead of ints to store pointers in OpenSSL binding"

11 years agoTracking libcore change to use longs instead of ints to store pointers in OpenSSL...
Brian Carlstrom [Thu, 28 Feb 2013 01:58:09 +0000 (17:58 -0800)]
Tracking libcore change to use longs instead of ints to store pointers in OpenSSL binding

Change-Id: Ieba5705f4faa7cea619cf509db3ef081fda570d5

11 years agoMerge "installd: use correct header file."
Nick Kralevich [Fri, 1 Mar 2013 16:40:13 +0000 (16:40 +0000)]
Merge "installd: use correct header file."

11 years agoMerge "ZygoteInit: use correct header files."
Nick Kralevich [Fri, 1 Mar 2013 16:39:37 +0000 (16:39 +0000)]
Merge "ZygoteInit: use correct header files."

11 years agoZygoteInit: use correct header files.
Nick Kralevich [Fri, 1 Mar 2013 00:49:43 +0000 (16:49 -0800)]
ZygoteInit: use correct header files.

Don't define capget / capset when we already have definitions
of it in our header files.

Change-Id: Ia2d7e408879bd09019f99aef52acb63a7a243d48

11 years agoinstalld: use correct header file.
Nick Kralevich [Fri, 1 Mar 2013 00:43:23 +0000 (16:43 -0800)]
installd: use correct header file.

Change-Id: I035524b857a04f8400e96468310d88abf247e582

11 years agoMerge "Fix starting window memory leak"
Dianne Hackborn [Wed, 27 Feb 2013 19:57:08 +0000 (19:57 +0000)]
Merge "Fix starting window memory leak"

11 years agoMerge "Track stack memory in MemoryInfo."
Ian Rogers [Wed, 27 Feb 2013 19:47:15 +0000 (19:47 +0000)]
Merge "Track stack memory in MemoryInfo."

11 years agoTrack stack memory in MemoryInfo.
Ian Rogers [Wed, 27 Feb 2013 18:57:13 +0000 (10:57 -0800)]
Track stack memory in MemoryInfo.

In /proc/pid/maps the main stack is identified as "[stack]". In Linux 3.4
thread stacks are identified as "[stack:<tid>]" where <tid> is the thread ID of
the thread using that stack. Add support in MemInfo's otherStats to track
memory being used by the stack.

Add sanity check on the length of the otherStats array.
Add detail messages to two null pointer exceptions.

Bug: 8265251

Change-Id: I2b228b147da9bdc5c7a4d825dfc628fcc7923927

11 years agoMerge "Deprecate and document memory allocation counting."
Ian Rogers [Wed, 27 Feb 2013 16:45:39 +0000 (16:45 +0000)]
Merge "Deprecate and document memory allocation counting."

11 years agoMerge "Check and fail early if requested wallpaper size exceeds maximum texture size."
Romain Guy [Wed, 27 Feb 2013 06:07:30 +0000 (06:07 +0000)]
Merge "Check and fail early if requested wallpaper size exceeds maximum texture size."

11 years agoDeprecate and document memory allocation counting.
Ian Rogers [Sat, 23 Feb 2013 03:59:23 +0000 (19:59 -0800)]
Deprecate and document memory allocation counting.

Bug: 8241521
Change-Id: I174c4024600c5b78e74030ecc99e784a98295f09

11 years agoMerge "Fix incorrect FloatMath documentation."
Elliott Hughes [Tue, 26 Feb 2013 17:37:58 +0000 (17:37 +0000)]
Merge "Fix incorrect FloatMath documentation."

11 years agoMerge "Fix spelling error s/SORT_OREDER/SORT_ORDER/ in "content --help""
Kenny Root [Tue, 26 Feb 2013 17:35:13 +0000 (17:35 +0000)]
Merge "Fix spelling error s/SORT_OREDER/SORT_ORDER/ in "content --help""

11 years agoFix incorrect FloatMath documentation.
Elliott Hughes [Tue, 26 Feb 2013 17:28:17 +0000 (09:28 -0800)]
Fix incorrect FloatMath documentation.

Change-Id: I30bbe500e634b73f3456ccc797106ad261fd0ce7

11 years agoFix spelling error s/SORT_OREDER/SORT_ORDER/ in "content --help"
Martin Olsson [Tue, 26 Feb 2013 16:54:39 +0000 (17:54 +0100)]
Fix spelling error s/SORT_OREDER/SORT_ORDER/ in "content --help"

Change-Id: I8f869c9d2243ae8ff414399b7d6835c7ca74d500
Signed-off-by: Martin Olsson <martin@minimum.se>
11 years agoMerge "Remove obsolete traceview file format documentation."
Elliott Hughes [Mon, 25 Feb 2013 22:50:51 +0000 (22:50 +0000)]
Merge "Remove obsolete traceview file format documentation."

11 years agoMerge "Recognize odex files in memory accounting."
Ian Rogers [Mon, 25 Feb 2013 17:13:23 +0000 (17:13 +0000)]
Merge "Recognize odex files in memory accounting."

11 years agoFIX Null Pointer Exception on dialog cancel
Amit Kumar [Sun, 24 Feb 2013 13:22:45 +0000 (13:22 +0000)]
FIX Null Pointer Exception on dialog cancel

Null Pointer Exception occurs because mWebViewCore instance
is made to null while calling destroyJava(). When
1.webview hosting activity goest to background, without calling webview onPause().
2. If app is launched again (having launchmode:singletask ) and another activity (not  webview hosting) comes on top top.
3. It destorys the previous activity holding webview which internally tries to cancel the dialog, but webviewcore instance is null.
Null pointer exception is raised.

Change-Id: Idbcd30d0b0d4a35819444bbaa5c73cced8bb35a3
Signed-off-by: Amit Kumar <amitkecian@gmail.com>
11 years agoRemove obsolete traceview file format documentation.
Elliott Hughes [Sat, 23 Feb 2013 05:21:03 +0000 (21:21 -0800)]
Remove obsolete traceview file format documentation.

Bug: http://code.google.com/p/android/issues/detail?id=51286
Change-Id: I9f2093c81b194526e79ea098ae073b60c63e9442

11 years agoRecognize odex files in memory accounting.
Ian Rogers [Sat, 23 Feb 2013 04:35:06 +0000 (20:35 -0800)]
Recognize odex files in memory accounting.

Give odex files the same heap category as dex files.

Change-Id: I82539e20ac20a2b80c63c0cfceb266d9c59e22b7

11 years agoMerge "Fix ListView is not scrolled properly with arrows"
Adam Powell [Fri, 22 Feb 2013 21:29:44 +0000 (21:29 +0000)]
Merge "Fix ListView is not scrolled properly with arrows"

11 years agoMerge "Account malloc mmaped pages as native heap."
Ian Rogers [Fri, 22 Feb 2013 18:02:40 +0000 (18:02 +0000)]
Merge "Account malloc mmaped pages as native heap."

11 years agoAccount malloc mmaped pages as native heap.
Ian Rogers [Fri, 22 Feb 2013 17:40:58 +0000 (09:40 -0800)]
Account malloc mmaped pages as native heap.

Currently when malloc uses a page rather than brk the heap gets accounted as
ashmem memory. Previously the memory would be accounted as unknown but since
[1] it gets accounted as ashmem. This change makes the accounting see this
memory as being native, ie the same kind of memory we associate with brk.

[1] https://android-review.googlesource.com/#/c/49583/3

Change-Id: I6f496cfeb590268d41d8e047b12cd5c90359e2b0

11 years agoMerge "StreamingZipInflater: fix mmap'd end of read"
Kenny Root [Fri, 22 Feb 2013 00:05:36 +0000 (00:05 +0000)]
Merge "StreamingZipInflater: fix mmap'd end of read"

11 years agoMerge "Allow three digit phone numbers"
Wink Saville [Wed, 20 Feb 2013 23:04:31 +0000 (23:04 +0000)]
Merge "Allow three digit phone numbers"

11 years agoMerge "Applying ChannelScrolling to remove calculateDragAngle"
Victoria Lease [Tue, 19 Feb 2013 17:40:08 +0000 (17:40 +0000)]
Merge "Applying ChannelScrolling to remove calculateDragAngle"

11 years agoApplying ChannelScrolling to remove calculateDragAngle
kiwon [Thu, 7 Feb 2013 11:02:39 +0000 (20:02 +0900)]
Applying ChannelScrolling to remove calculateDragAngle

To avoid angle calculation changed the logic to use virtual areas.
When try to drag or pan, check where the current touch point locates
and determine how to drag a page.

Change-Id: Id9bd08a69c4ac93ff385c8088e6c16bed5dc5f88
Signed-off-by: kiwon <kiwon98.lee@samsung.com>
11 years agoMerge changes I8c5649c9,I79b43bf7,I83a01690,If5687eac,Ib9fd57c6,I7104250e
Irfan Sheriff [Fri, 15 Feb 2013 23:42:28 +0000 (23:42 +0000)]
Merge changes I8c5649c9,I79b43bf7,I83a01690,If5687eac,Ib9fd57c6,I7104250e

* changes:
  Fix broken test.
  Track keys per config and allow cert push from apps
  eix enterprise config storage bugs
  Fix connectivitymanagertest
  Fix build
  Refactor enterprise config

11 years agoFix broken test.
Wink Saville [Wed, 13 Feb 2013 01:07:21 +0000 (17:07 -0800)]
Fix broken test.

Change-Id: I8c5649c9b3d917cf13b94d49da44eaf510643df6

11 years agoTrack keys per config and allow cert push from apps
Irfan Sheriff [Tue, 5 Feb 2013 17:44:12 +0000 (09:44 -0800)]
Track keys per config and allow cert push from apps

Allow configuring keys for a configuration and update/delete
from wificonfigstore.

Change-Id: I79b43bf7ca58f7efc95f7dcc125fc84d7aa8c795

11 years agoeix enterprise config storage bugs
Irfan Sheriff [Thu, 17 Jan 2013 16:58:14 +0000 (08:58 -0800)]
eix enterprise config storage bugs

Reading empty and not updating was resulting in retaining old values
in a config. Also, fix matching phase2 entries.

Additionally, allow configuring subset of enterprise fields. Necessary
since password cannot be read back from supplicant.

Change-Id: I83a01690a0cf7cad1457a674f50f1e3a1a0441b5

11 years agoFix connectivitymanagertest
Irfan Sheriff [Tue, 15 Jan 2013 18:35:02 +0000 (10:35 -0800)]
Fix connectivitymanagertest

Change-Id: If5687eacec0f502c39b102eb5cf7d9383f0ec056

11 years agoFix build
Irfan Sheriff [Tue, 15 Jan 2013 18:02:31 +0000 (10:02 -0800)]
Fix build

Change-Id: Ib9fd57c641e3bd2001c7c802f35d97e0cb849b8a

11 years agoRefactor enterprise config
Irfan Sheriff [Fri, 11 Jan 2013 22:03:55 +0000 (14:03 -0800)]
Refactor enterprise config

Change-Id: I7104250e80317fce6164385701a7caffbcd14813

11 years agoStreamingZipInflater: fix mmap'd end of read
Kenny Root [Fri, 15 Feb 2013 17:37:11 +0000 (09:37 -0800)]
StreamingZipInflater: fix mmap'd end of read

When reaching the end of a mmap'd segment, it was erroneously trying to
read more data. This is because we were reading data one character at a
time, so we never reached the Z_STREAM_END result without going through
the loop once more.

Bug: https://code.google.com/p/android/issues/detail?id=39041
Change-Id: I6c53b8187384a42217c32112d6a0c2857f471109

11 years agoAllow three digit phone numbers
Bin Zhu [Wed, 19 Sep 2012 13:00:49 +0000 (15:00 +0200)]
Allow three digit phone numbers

The comment for the PHONE pattern says:

"<digit><digit|sdd>+<digit>"

But the actual pattern requires that the string contains
more than that. A phone number should be allowed to be
three digits.

Change-Id: I86d2f3d634cd0c1654dad9814906f151055dc23a

11 years agoMerge "KeyStore: stop using state()"
Kenny Root [Thu, 14 Feb 2013 20:18:09 +0000 (20:18 +0000)]
Merge "KeyStore: stop using state()"

11 years agoKeyStore: stop using state()
Kenny Root [Thu, 14 Feb 2013 18:18:38 +0000 (10:18 -0800)]
KeyStore: stop using state()

Change-Id: I721974fd95f8d1ab06a3fd1bbb4c9b4d9d1d7752

11 years agoCheck and fail early if requested wallpaper size exceeds maximum texture size.
Wim Vander Schelden [Thu, 7 Feb 2013 15:51:51 +0000 (15:51 +0000)]
Check and fail early if requested wallpaper size exceeds maximum texture size.

This fixes an issue where OpenGL initialization succeeds but buffer allocation fails because the requested wallpaper size
is too large (or otherwise unsupported) by the graphics hardware. This fixes an issue where SystemUI crashes constantly
on the PandaBoard when connected to a full HD display. Tested only on PandaBoard, no access to alternative hardware.
Signed-off-by: Wim Vander Schelden <wim.vander.schelden@philips.com>
Change-Id: I8d2e1ae9fd9772977c4e365f23f2f58bbca3787c

11 years agoMerge "VpnDialogs: filter obscured touches"
Kenny Root [Thu, 14 Feb 2013 00:49:20 +0000 (00:49 +0000)]
Merge "VpnDialogs: filter obscured touches"

11 years agoVpnDialogs: filter obscured touches
Kenny Root [Thu, 14 Feb 2013 00:32:36 +0000 (16:32 -0800)]
VpnDialogs: filter obscured touches

Change-Id: Ifcc919c36006c88e36363f5160f9334df0cf7e5b

11 years agoMerge "Track keystore binder changes"
Kenny Root [Wed, 13 Feb 2013 23:43:57 +0000 (23:43 +0000)]
Merge "Track keystore binder changes"

11 years agoMerge "KeyChain: return null instead of throw"
Kenny Root [Wed, 13 Feb 2013 23:39:04 +0000 (23:39 +0000)]
Merge "KeyChain: return null instead of throw"

11 years agoKeyChain: return null instead of throw
Kenny Root [Wed, 13 Feb 2013 23:22:50 +0000 (15:22 -0800)]
KeyChain: return null instead of throw

The API documentation says it will return null if the key isn't found.
We get null back from the keystore daemon when it can't retrieve the
data, so just return null back to the API caller.

Change-Id: I42248bd50cbc5f76864bd762aae3faab1c50529d

11 years agoTrack keystore binder changes
Kenny Root [Wed, 13 Feb 2013 23:22:25 +0000 (15:22 -0800)]
Track keystore binder changes

Change-Id: Id6133be059a8a0901d16355a9152e40e4a255454

11 years agoFix starting window memory leak
Mathias Jeppsson [Fri, 24 Aug 2012 13:25:32 +0000 (15:25 +0200)]
Fix starting window memory leak

If starting window is added to arrays like mViews in
WindowManagerImpl.java, but not accepted by WindowManagerService,
we leak starting windows. To avoid leaking, remove the view
from WindowManager.

Change-Id: I4d98b883e9dfaf5e71bdece385643ba1b59b2633

11 years agoMerge "Revert "makefile changes for gcm javadocs""
Jean-Baptiste Queru [Tue, 12 Feb 2013 22:32:30 +0000 (22:32 +0000)]
Merge "Revert "makefile changes for gcm javadocs""

11 years agoRevert "makefile changes for gcm javadocs"
Robert Ly [Tue, 12 Feb 2013 21:39:28 +0000 (21:39 +0000)]
Revert "makefile changes for gcm javadocs"

This reverts commit 5f9922d7c3bce158e4c7a58929d4075e7c91e32e

Change-Id: I310f27b231c6d64d6d407ae451b189a6ecf6b34f

11 years agoMerge "Revert "use utf8_length() instead of local function, isValidUtf8()""
Marco Nelissen [Tue, 12 Feb 2013 18:46:21 +0000 (18:46 +0000)]
Merge "Revert "use utf8_length() instead of local function, isValidUtf8()""

11 years agoRevert "use utf8_length() instead of local function, isValidUtf8()"
Marco Nelissen [Tue, 12 Feb 2013 18:33:41 +0000 (18:33 +0000)]
Revert "use utf8_length() instead of local function, isValidUtf8()"

This reverts commit 1a8b6c29aaa5a1591097daca0876808cc029cbda

Reason for revert: utf8_length handles a slightly different range than the checkjni code, so it's possible for a given string to pass the utf8_length check, but then fail the jni  check.

Change-Id: I81e15c95edd8f89782d8ad9025e68502b9340f22

11 years agoFix build break due to merge.
Jeff Brown [Sat, 9 Feb 2013 01:16:31 +0000 (17:16 -0800)]
Fix build break due to merge.

Change-Id: I08c39690ee9de825ff51afc7d102ee622af6ba13

11 years agoam 5262a108: Merge "Complete documentation of whereArgs (Issue #43061)"
Jeff Brown [Sat, 9 Feb 2013 00:58:14 +0000 (16:58 -0800)]
am 5262a108: Merge "Complete documentation of whereArgs (Issue #43061)"

# By Tim Roes
# Via Gerrit Code Review (1) and Tim Roes (1)
* commit '5262a1082663610a888d1145fd9676f7db41d397':
  Complete documentation of whereArgs (Issue #43061)

11 years agoam fa49a6b1: Merge "frameworks/base: Added English UK keyboard layout for physical...
Jeff Brown [Sat, 9 Feb 2013 00:58:09 +0000 (16:58 -0800)]
am fa49a6b1: Merge "frameworks/base: Added English UK keyboard layout for physical keyboards"

# By HeyRatFans
# Via Gerrit Code Review (1) and Matt Beale (1)
* commit 'fa49a6b13ebf496ea01d5981f69084596d06d464':
  frameworks/base: Added English UK keyboard layout for physical keyboards

11 years agoMerge "Complete documentation of whereArgs (Issue #43061)"
Jeff Brown [Fri, 8 Feb 2013 23:49:51 +0000 (23:49 +0000)]
Merge "Complete documentation of whereArgs (Issue #43061)"

11 years agoam fe1f3a1b: Merge "Fix ViewRootImpl to find missing focus using D-pad."
Jeff Brown [Fri, 8 Feb 2013 23:49:46 +0000 (15:49 -0800)]
am fe1f3a1b: Merge "Fix ViewRootImpl to find missing focus using D-pad."

# By Ki-Hwan Lee
# Via Gerrit Code Review (1) and Ki-Hwan Lee (1)
* commit 'fe1f3a1beff9f73f6a04bcc35239038a21bc38ff':
  Fix ViewRootImpl to find missing focus using D-pad.

11 years agoMerge "frameworks/base: Added English UK keyboard layout for physical keyboards"
Jeff Brown [Fri, 8 Feb 2013 23:49:10 +0000 (23:49 +0000)]
Merge "frameworks/base: Added English UK keyboard layout for physical keyboards"

11 years agoReconcile with jb-mr1.1-release - do not merge
The Android Open Source Project [Fri, 8 Feb 2013 23:40:41 +0000 (15:40 -0800)]
Reconcile with jb-mr1.1-release - do not merge

Change-Id: I728b304c185d7f0406b6d45334c10263bd38d769

11 years agoMerge "Fix ViewRootImpl to find missing focus using D-pad."
Jeff Brown [Fri, 8 Feb 2013 23:29:11 +0000 (23:29 +0000)]
Merge "Fix ViewRootImpl to find missing focus using D-pad."

11 years agomerge in jb-mr1.1-release history after reset to jb-mr1.1-dev
The Android Automerger [Fri, 8 Feb 2013 21:51:07 +0000 (13:51 -0800)]
merge in jb-mr1.1-release history after reset to jb-mr1.1-dev

11 years agoam 2e65e20c: am 9b8b4ae5: am f2d89ef9: am 64ab8fdc: Merge "Doc change: remove protoco...
Dirk Dougherty [Fri, 8 Feb 2013 19:21:03 +0000 (11:21 -0800)]
am 2e65e20c: am 9b8b4ae5: am f2d89ef9: am 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning." into jb-mr1-dev

# Via Android Git Automerger (3) and others
* commit '2e65e20c761f0fdee98eeefe9a8ee13c95a8b1ff':
  Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning.

11 years agoam 9b8b4ae5: am f2d89ef9: am 64ab8fdc: Merge "Doc change: remove protocol scheme...
Dirk Dougherty [Fri, 8 Feb 2013 19:17:50 +0000 (11:17 -0800)]
am 9b8b4ae5: am f2d89ef9: am 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning." into jb-mr1-dev

# Via Android Git Automerger (2) and others
* commit '9b8b4ae5d7a4f5fbe242f5a2da145fd0fa88ce87':
  Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning.

11 years agoam f2d89ef9: am 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard...
Dirk Dougherty [Fri, 8 Feb 2013 19:16:11 +0000 (11:16 -0800)]
am f2d89ef9: am 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning." into jb-mr1-dev

# Via Android (Google) Code Review (1) and others
* commit 'f2d89ef9d57b096962b802608a88d3483a51d08a':
  Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning.

11 years agoam 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard src url to avoid...
Dirk Dougherty [Fri, 8 Feb 2013 19:14:23 +0000 (11:14 -0800)]
am 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning." into jb-mr1-dev

# Via Android (Google) Code Review (1) and Dirk Dougherty (1)
* commit '64ab8fdcb0a3015d3e6c4db0a1d66443085fd673':
  Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning.

11 years agoMerge "Doc change: remove protocol scheme on dashboard src url to avoid mixed content...
Dirk Dougherty [Fri, 8 Feb 2013 19:09:53 +0000 (19:09 +0000)]
Merge "Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning." into jb-mr1-dev

11 years agoFix ListView is not scrolled properly with arrows
Jaewan Kim [Sun, 3 Feb 2013 16:12:28 +0000 (01:12 +0900)]
Fix ListView is not scrolled properly with arrows

According to ListView's layoutChildren logic, it detaches all children
and rebuilds its children based on visible area which might omit
invisible elements in the adapter.

In this case, arrowScroll methods only tries to find next scroll
candidates from its children so user is unable to scroll more with
D-pad.

This fixes the issue by look forward next child among the adapter as
well as children.

Bug: 7346868
Change-Id: I01ab19ad899b5bcb5ab420ddf08c9ffd136933d1

11 years agoam b683f354: am 69abccc3: Merge "MediaStore.Audio.Media.getContentUriForPath() return...
Marco Nelissen [Fri, 8 Feb 2013 16:44:36 +0000 (08:44 -0800)]
am b683f354: am 69abccc3: Merge "MediaStore.Audio.Media.getContentUriForPath() returns unexpected content"

# By Jan Bjernler
# Via Gerrit Code Review (2) and Android Git Automerger (1)
* commit 'b683f3542a123a07823b51643b1973507bfb57e2':
  MediaStore.Audio.Media.getContentUriForPath() returns unexpected content

11 years agoam 69abccc3: Merge "MediaStore.Audio.Media.getContentUriForPath() returns unexpected...
Marco Nelissen [Fri, 8 Feb 2013 16:41:20 +0000 (08:41 -0800)]
am 69abccc3: Merge "MediaStore.Audio.Media.getContentUriForPath() returns unexpected content"

# By Jan Bjernler
# Via Gerrit Code Review
* commit '69abccc3cdacee354dec8867865a0577a4e14e63':
  MediaStore.Audio.Media.getContentUriForPath() returns unexpected content

11 years agoMerge "MediaStore.Audio.Media.getContentUriForPath() returns unexpected content"
Marco Nelissen [Fri, 8 Feb 2013 16:22:09 +0000 (16:22 +0000)]
Merge "MediaStore.Audio.Media.getContentUriForPath() returns unexpected content"

11 years agoMediaStore.Audio.Media.getContentUriForPath() returns unexpected content
Jan Bjernler [Mon, 30 Apr 2012 07:16:52 +0000 (09:16 +0200)]
MediaStore.Audio.Media.getContentUriForPath() returns unexpected content

MediaStore.Audio.getContentUriForPath() returns an uri to
internal storage if anything but /mnt/sdcard/ is sent in.
This fix checks if there is an additional sdcard
(normally called ext_card) or usb mass storage attached to
the device and then returns an uri to the external db.
The extra sdcard name and the usb mass storage name info is read from
the system environment variable SECONDARY_STORAGE so if a customer
chooses to change the name this will work as expected.

Change-Id: Ib78bca929fe382d4770df895149a0132f0e56994

11 years agoam c2edfa2b: am 7c292062: Merge "Process all display events in order"
Jesse Hall [Fri, 8 Feb 2013 04:26:27 +0000 (20:26 -0800)]
am c2edfa2b: am 7c292062: Merge "Process all display events in order"

# Via Gerrit Code Review (2) and Android Git Automerger (1)
* commit 'c2edfa2b9649f67c142b181c54580c015badfca3':
  Process all display events in order

11 years agoam bc18fe85: am fd1c028e: Merge "Handle hotplug events as described instead of rescan...
Jesse Hall [Fri, 8 Feb 2013 04:26:23 +0000 (20:26 -0800)]
am bc18fe85: am fd1c028e: Merge "Handle hotplug events as described instead of rescanning"

# Via Gerrit Code Review (2) and Android Git Automerger (1)
* commit 'bc18fe851c98dbe6be4eb2655efb1ef95902d961':
  Handle hotplug events as described instead of rescanning

11 years agoam ddc0a7bd: am 11fa4460: am 9da9a7cd: am e60b6023: Merge "makefile changes for gcm...
Robert Ly [Fri, 8 Feb 2013 02:01:17 +0000 (18:01 -0800)]
am ddc0a7bd: am 11fa4460: am 9da9a7cd: am e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-dev

# Via Android Git Automerger (3) and others
* commit 'ddc0a7bdf94f4ba84dd4b89b693eb148ff32b5d3':
  makefile changes for gcm javadocs

11 years agoam 11fa4460: am 9da9a7cd: am e60b6023: Merge "makefile changes for gcm javadocs"...
Robert Ly [Fri, 8 Feb 2013 01:57:57 +0000 (17:57 -0800)]
am 11fa4460: am 9da9a7cd: am e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-dev

# Via Android Git Automerger (2) and others
* commit '11fa446033a8600b681efeb857507388e8113d72':
  makefile changes for gcm javadocs

11 years agoam 9da9a7cd: am e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-dev
Robert Ly [Fri, 8 Feb 2013 01:55:20 +0000 (17:55 -0800)]
am 9da9a7cd: am e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-dev

# Via Android (Google) Code Review (1) and others
* commit '9da9a7cda27a9b9a3a08e64e81d0ca10ac4c4ec1':
  makefile changes for gcm javadocs

11 years agoam e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-dev
Robert Ly [Fri, 8 Feb 2013 01:53:29 +0000 (17:53 -0800)]
am e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-dev

# Via Android (Google) Code Review (1) and Robert Ly (1)
* commit 'e60b6023ae4fdea932d0effc553dddc38117d235':
  makefile changes for gcm javadocs