124934 Commits

Author SHA1 Message Date
Narayan Kamath
8b1c5704cb Revert "Camera2: Update stream num tag specs"
This reverts commit 67c23833f81cb27671ee9f62a87ba810d0d49989.

Change-Id: I3aa2d0b245c998c57f3312e2d6f68aa72d80c338
2014-02-05 12:16:46 +00:00
Ashok Bhat
0e0c0885ae AArch64: Use long for pointers in RS Java/JNI code
Changes include
[x] Some JNI functions, with return type jlong, casts
    pointer to jint before returning it. This has been fixed.

[x] Minor JNI function prototype changes where
    formal paramter type has been changed to a JNI
    type (int to jint for example).

[x] long is used for ScriptC, Sampler, Font, ProgramStore
    handles as they can be 64-bit.

[x] A new hidden constructor ScriptC(long, RenderScript)
    has been added. This should eventually replace public
    API method ScriptC(int, RenderScript).

[x] Font and FileA3D use getNativeAsset instead of getAssetInt
    to get Asset Handles. The getAssetInt method will be
    deprecated in favor of getNativeAsset, as the former does
    not support 64-bit.

[x] rsnPathCreate method accepts loop as an int. This should
    be long as the underlying RS function assumes this to be
    a pointer.

Change-Id: I919d857e5933febe63966049da83de9f9adee6f5
Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
2014-02-05 11:26:38 +00:00
Jake Hamby
dbe576ebd1 Merge "Add new RIL commands to read/write NV items and reset NV config." 2014-02-05 03:56:03 +00:00
Adam Powell
e57ba3d142 am 11579e55: Merge "Import updated SearchView assets from UX"
* commit '11579e559593b8c271247fe548f6446af7f6e1ca':
  Import updated SearchView assets from UX
2014-02-04 18:30:18 -08:00
Adam Powell
11579e5595 Merge "Import updated SearchView assets from UX" 2014-02-05 02:28:14 +00:00
Adam Powell
03d165b1da Import updated SearchView assets from UX
Bug 12233992

Change-Id: I6624d0d7625121a8905efa697c6a183b4463a289
2014-02-04 18:20:56 -08:00
Maxim Siniavine
b15c0e512c Using large file for download manager test.
This should decrease the chance of the file being downloaded too quickly and
confusing the test.

Change-Id: I8f4debbb51798162493d6a8005e1aa142738dbd4
2014-02-04 18:19:08 -08:00
Stephen Hines
4dbe99f037 am 278a5619: am 34b84e69: am eadd6941: am bc80e40b: Merge "Add message to RS docs about application vs. library packaging."
* commit '278a5619256cd96763775cea6da7aadc894d962a':
  Add message to RS docs about application vs. library packaging.
2014-02-04 18:12:43 -08:00
Stephen Hines
278a561925 am 34b84e69: am eadd6941: am bc80e40b: Merge "Add message to RS docs about application vs. library packaging."
* commit '34b84e691c4d5bd853bc5b7c7ccb8040590359d6':
  Add message to RS docs about application vs. library packaging.
2014-02-05 02:09:21 +00:00
Zhijun He
b2eb575ee8 am 67c23833: Camera2: Update stream num tag specs
* commit '67c23833f81cb27671ee9f62a87ba810d0d49989':
  Camera2: Update stream num tag specs
2014-02-04 18:06:50 -08:00
Zhijun He
67c23833f8 Camera2: Update stream num tag specs
Change-Id: I69ae1a34828230408a27bf7c016eb514485097b1
2014-02-04 18:02:07 -08:00
Stephen Hines
34b84e691c am eadd6941: am bc80e40b: Merge "Add message to RS docs about application vs. library packaging."
* commit 'eadd69413a5cbdd32ae56967f48b6ab6f3efbe52':
  Add message to RS docs about application vs. library packaging.
2014-02-05 02:00:43 +00:00
Stephen Hines
eadd69413a am bc80e40b: Merge "Add message to RS docs about application vs. library packaging."
* commit 'bc80e40b160596c262fee0ee4df4b9f15cc14e89':
  Add message to RS docs about application vs. library packaging.
2014-02-04 17:57:11 -08:00
Stephen Hines
bc80e40b16 Merge "Add message to RS docs about application vs. library packaging." 2014-02-05 01:52:32 +00:00
Scott Main
555e1c9c00 add google cast feature page
edit other feature pages for consistent call to action paragraph
and remove 'preview' notice from Drive page

Change-Id: I75f1f24fbae51852246ae0624b355aa23b14e60a
2014-02-04 17:43:52 -08:00
Christopher Tate
679935df6f Improve idle-service bind permission description
Bug 12889390

Change-Id: I34dc22870f21a92895b8e214077885a80936d0d5
2014-02-04 17:16:30 -08:00
Adam Powell
46e38fd9ab Refactoring of fitSystemWindows to applyWindowInsets for views
Applying insets is now handled by:

* WindowInsets class - Encapsulate system insets and local decor
  insets into a single object, written specifically so that new inset
  categories may be added later. Apps cannot construct their own
  WindowInsets, only clone with optional modifications. This is to
  prevent losing data in the event of new insets added in the future.

* onApplyWindowInsets - Actually perform the application of insets.

* OnApplyWindowInsetsListener - Allow an app to use a separate
  Listener object to apply insets to a View. This allows for things
  like support lib integration in custom views written for older
  versions where the verifier would otherwise complain about the use
  of the new WindowInsets class as a method parameter. It also allows
  for applying insets in a custom way without writing a custom view.

* dispatchApplyWindowInsets - Dispatch the call to self and children
  in turn, if applicable. An OnApplyWindowInsetsListener will override
  the behavior of the view's default onApplyWindowInsets method; a
  listener wishing to call down to the 'superclass' implementation as
  part of its own operation should call view.onApplyWindowInsets. App
  code should generally not override this method and instead override
  onApplyWindowInsets or provide a listener.

Compatibility support with the existing fitSystemWindows method has
been provided in both directions: for code that previously called
fitSystemWindows on arbitrary views and also for code that overrode
the fitSystemWindows method in custom views. A view that supports the
newer onApplyWindowInsets mechanism should not mix that behavior with
other calls to fitSystemWindows or vice versa. Support lib-style code
should take care to consistently use one mechanism or the other at
runtime.

Change-Id: Ie88b96e0382beb5d3c3f6cd013f7043acbc0a105
2014-02-04 16:52:22 -08:00
Andy McFadden
c1f28c7a5a am 7b24aee7: Merge "Pass a thread name to AttachCurrentThread"
* commit '7b24aee7071f085c2407313a609ba18e9c42ce5b':
  Pass a thread name to AttachCurrentThread
2014-02-04 16:39:44 -08:00
Andy McFadden
7b24aee707 Merge "Pass a thread name to AttachCurrentThread" 2014-02-05 00:37:32 +00:00
George Mount
7799eea7bf am 8adb491e: Merge "Cross-Activity Scene transition API."
* commit '8adb491e08b79657deedc13c427f785c889ee448':
  Cross-Activity Scene transition API.
2014-02-04 16:24:47 -08:00
George Mount
8adb491e08 Merge "Cross-Activity Scene transition API." 2014-02-05 00:23:03 +00:00
George Mount
0a778eda69 Cross-Activity Scene transition API.
First pass at API for cross-Activity Scene transitions.
Remaining work:
  Transition back
  Automatically capture hero element info
  Transfer of surface texture to synchronize between Activities
  Possibly use scene names to indicate preferred transition

Change-Id: I59d07de1fae694a46b92b1c82525daa301ec1377
2014-02-04 16:18:43 -08:00
Andy McFadden
9b311c900d Pass a thread name to AttachCurrentThread
Reduces logspam from ART.

Bug 12896873

Change-Id: I82ae8e2dbba3918071d9c28f5ae5c882f8dcab3a
2014-02-04 15:59:39 -08:00
Craig Mautner
406f7756dd am 9e4adfb3: resolved conflicts for merge of 32360147 to master
* commit '9e4adfb358ca3680288c07201efc8811472a579d':
  Add IIntentSender to ActivityContainer.startActivity
2014-02-04 15:59:18 -08:00
Craig Mautner
9e4adfb358 resolved conflicts for merge of 32360147 to master
Change-Id: I97cc95f66df50006469f8debd286966cc21edb60
2014-02-04 15:55:19 -08:00
Craig Mautner
323601475e am df88d730: Add IIntentSender to ActivityContainer.startActivity
* commit 'df88d73092c62a1a3cd2b2056ca63ae2e70cc238':
  Add IIntentSender to ActivityContainer.startActivity
2014-02-04 23:38:28 +00:00
Jean-Michel Trivi
eac8438a7d AudioTrack JNI function rename
The "native" prefix is used to identify methods with a native
  implementation on the Java side, and shouldn't therefore be used
  on some of the functions (and not others) here.

Change-Id: I9e88a1159c8f06260af6667e239dcdd39479b11f
2014-02-04 15:20:59 -08:00
Craig Mautner
df88d73092 Add IIntentSender to ActivityContainer.startActivity
PendingIntents and IntentSenders can now be launched. Still does not
work once the host activity has been paused and resumed.

Window manager TaskStacks now exist independently of Displays and app
windows persist after Displays are removed below them. Attaching the
stack to a new Display does not yet restore the windows to it.

Fixes bug 12747909.

Change-Id: I509007ee23fda400b353f483cf6ecce08177763b
2014-02-04 15:10:13 -08:00
John Spurlock
29786fc72d Make QS battery composite color match others.
Change-Id: I2a906cd997d2372f5740532a159f04ad857d393d
2014-02-04 17:55:47 -05:00
Andreas Huber
d2506a5063 FINAL ATTEMPT: HTTP services are now provided from JAVA and made available to media code
Change-Id: I7f6cdcfd2a28846d36d89dd5180ef20a22b03af8
2014-02-04 14:45:28 -08:00
Alan Viverette
2b5e863ed2 am 143b46d5: Check for null display list
* commit '143b46d50c0c01970c7d280228bd1e58c2afb32b':
  Check for null display list
2014-02-04 14:21:58 -08:00
Alan Viverette
143b46d50c Check for null display list
BUG: 12764584
Change-Id: I071aa0d9bc4f4ac353a5d0f534cf7c44964d4bf0
2014-02-04 14:19:06 -08:00
Alan Viverette
3a080e7ba3 am 9f244efb: Merge "Make background projection a property of View"
* commit '9f244efbfac8d592a0af0321f7985761ed17ec6c':
  Make background projection a property of View
2014-02-04 14:08:09 -08:00
Alan Viverette
9f244efbfa Merge "Make background projection a property of View" 2014-02-04 22:05:26 +00:00
Ruben Brunk
4ee60085c9 am 40675bdd: Merge "camera3: Update maxRegions tag."
* commit '40675bdd3857a9e29b2e61b5bc1660e9bb2e82a2':
  camera3: Update maxRegions tag.
2014-02-04 13:04:15 -08:00
Ruben Brunk
40675bdd38 Merge "camera3: Update maxRegions tag." 2014-02-04 21:01:19 +00:00
Marco Nelissen
93a5845d1a Cache media/nomedia paths
Instead of checking all the parents of every path for presence of
a .nomedia file every time a new entry is inserted, build a cache
of paths and use that when possible.

Change-Id: I5b912fd54473db8f96d3511cbc2715e0b69dd16b
2014-02-04 12:52:10 -08:00
Alan Viverette
be2c04201f am 07f00e74: Merge "Update APIs from RotateDrawable change"
* commit '07f00e74029cbe80cd4353955dbaae7e828b8e70':
  Update APIs from RotateDrawable change
2014-02-04 11:39:24 -08:00
Alan Viverette
07f00e7402 Merge "Update APIs from RotateDrawable change" 2014-02-04 19:37:41 +00:00
Alan Viverette
f14415a9bb Update APIs from RotateDrawable change
Change-Id: I89b1ef79360231912e16d60b20c2a52d4dc2c94e
2014-02-04 11:37:05 -08:00
Scott Main
95ffabbc5d am 45d1cc58: am 35a25455: am 70f908d7: am 3e80914d: am eea15edc: am 749120f3: dashbaord update for feb \'14
* commit '45d1cc587bec8770e3f56a194c27452b933cc058':
  dashbaord update for feb '14
2014-02-04 11:35:45 -08:00
Scott Main
45d1cc587b am 35a25455: am 70f908d7: am 3e80914d: am eea15edc: am 749120f3: dashbaord update for feb \'14
* commit '35a254554787196cf835536cc3bc28f9ee890af4':
  dashbaord update for feb '14
2014-02-04 19:33:26 +00:00
Scott Main
35a2545547 am 70f908d7: am 3e80914d: am eea15edc: am 749120f3: dashbaord update for feb \'14
* commit '70f908d7af916bf0e5b6af2913752dca431b837f':
  dashbaord update for feb '14
2014-02-04 19:25:04 +00:00
Alan Viverette
cad2096687 am b8771938: Merge "Clean up RotateDrawable, add getters and setters for XML properties"
* commit 'b8771938daf6a2e40fdbf97d60bfdb2b0fe8ccd9':
  Clean up RotateDrawable, add getters and setters for XML properties
2014-02-04 11:24:04 -08:00
Scott Main
70f908d7af am 3e80914d: am eea15edc: am 749120f3: dashbaord update for feb \'14
* commit '3e80914d1683d1641fd6a01f14f126452e17f5c7':
  dashbaord update for feb '14
2014-02-04 19:22:02 +00:00
Scott Main
3e80914d16 am eea15edc: am 749120f3: dashbaord update for feb \'14
* commit 'eea15edcd47e6830dd6cdecb2c0b1e26eba0e6e3':
  dashbaord update for feb '14
2014-02-04 19:19:38 +00:00
Alan Viverette
b8771938da Merge "Clean up RotateDrawable, add getters and setters for XML properties" 2014-02-04 19:19:21 +00:00
Alan Viverette
4085aac583 Make background projection a property of View
BUG: 12764584
Change-Id: Id80afd6d26c814d3fd551f6690d4a88c441b0b9f
2014-02-04 11:17:32 -08:00
Scott Main
eea15edcd4 am 749120f3: dashbaord update for feb \'14
* commit '749120f39bdac49a96771d06d25b7f9edf70be67':
  dashbaord update for feb '14
2014-02-04 19:15:36 +00:00
Glenn Kasten
e06f32a1c8 am c734de9c: am 9d2ad121: am 830d4ffc: am 74dc4bd0: am 983a9381: am 11263b24: Merge "Add adb over Wi-Fi" into klp-docs
* commit 'c734de9c2bcd17e5b07647002acb11afcf19aff6':
  Add adb over Wi-Fi
2014-02-04 11:07:05 -08:00