OSDN Git Service

android-x86/frameworks-base.git
6 years ago[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932 am: a72cb4...
Android Build Merger (Role) [Tue, 5 Jun 2018 13:49:40 +0000 (13:49 +0000)]
[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932 am: a72cb45f89 am: f5d69aa775 skipped: 94bc67f03c

Change-Id: Ieefc1b15d0d1905d16b85df9117e4ce208c342d2

6 years ago[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932 am: a72cb4...
Android Build Merger (Role) [Thu, 31 May 2018 16:46:41 +0000 (16:46 +0000)]
[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932 am: a72cb45f89 am: f5d69aa775

Change-Id: Ic2d4d3ead4926ff0f8021725e28aee4ebfc369f3
Merged-In: Ib66ef392c19c937718e7101f6d48fac3abe51ad0

6 years agoMerge "Optimise the hit test algorithm" into oc-dev
TreeHugger Robot [Tue, 5 Jun 2018 11:28:42 +0000 (11:28 +0000)]
Merge "Optimise the hit test algorithm" into oc-dev

6 years agoMerge "WM: Prevent secondary display focus while keyguard is up" into oc-dev
TreeHugger Robot [Mon, 4 Jun 2018 11:44:21 +0000 (11:44 +0000)]
Merge "WM: Prevent secondary display focus while keyguard is up" into oc-dev

6 years ago[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932 am: a72cb45f89
Android Build Merger (Role) [Thu, 31 May 2018 16:46:34 +0000 (16:46 +0000)]
[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932 am: a72cb45f89

Change-Id: I9fa897b6bd6b5291d2956a38a3740b4f6d783ab2

6 years ago[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932
Android Build Merger (Role) [Thu, 31 May 2018 16:46:27 +0000 (16:46 +0000)]
[automerger] Optimise the hit test algorithm am: 71ecf5bd5c am: 42eaa8f932

Change-Id: I2ac44759ff615b32724f5235d3e5e8dc8c9b4ced

6 years ago[automerger] Optimise the hit test algorithm am: 71ecf5bd5c
Android Build Merger (Role) [Thu, 31 May 2018 16:46:17 +0000 (16:46 +0000)]
[automerger] Optimise the hit test algorithm am: 71ecf5bd5c

Change-Id: If1c91f3bc1e785434f153c5bc0d14befbc75e6cb

6 years agoOptimise the hit test algorithm
Mihai Popa [Wed, 9 May 2018 16:31:48 +0000 (17:31 +0100)]
Optimise the hit test algorithm

Layout#getOffsetForHorizontal was running in O(n^2) time, where n is the
length of the current line. The method is used when a touch event
happens on a text line, to compute the cursor offset (and the character)
where it happened. Although this is not an issue in common usecases,
where the number of characters on a line is relatively small, this can
be very inefficient as a consequence of Unicode containing 0-width
(invisible) characters. Specifically, there are characters defining the
text direction (LTR or RTL), which cause our algorithm to touch the
worst case quadratic runtime. For example, a person is able to send a
message containing a few visible characters, and also a lot of these
direction changing invisible ones. When the receiver touches the message
(causing the Layout#getOffsetForHorizontal method to be called), the
receiver's application would become not responsive.

This CL optimizes the method to run in O(n) worst case. This is achieved
by computing the measurements of all line prefixes at first, which can
be done in a single pass. Then, all the prefix measurement queries will
be answered in O(1), rather than O(n) as it was happening before.

Bug: 79215201
Test: manual testing
Change-Id: Ib66ef392c19c937718e7101f6d48fac3abe51ad0
Merged-In: Ib66ef392c19c937718e7101f6d48fac3abe51ad0

6 years agoOptimise the hit test algorithm
Mihai Popa [Wed, 9 May 2018 16:31:48 +0000 (17:31 +0100)]
Optimise the hit test algorithm

Layout#getOffsetForHorizontal was running in O(n^2) time, where n is the
length of the current line. The method is used when a touch event
happens on a text line, to compute the cursor offset (and the character)
where it happened. Although this is not an issue in common usecases,
where the number of characters on a line is relatively small, this can
be very inefficient as a consequence of Unicode containing 0-width
(invisible) characters. Specifically, there are characters defining the
text direction (LTR or RTL), which cause our algorithm to touch the
worst case quadratic runtime. For example, a person is able to send a
message containing a few visible characters, and also a lot of these
direction changing invisible ones. When the receiver touches the message
(causing the Layout#getOffsetForHorizontal method to be called), the
receiver's application would become not responsive.

This CL optimizes the method to run in O(n) worst case. This is achieved
by computing the measurements of all line prefixes at first, which can
be done in a single pass. Then, all the prefix measurement queries will
be answered in O(1), rather than O(n) as it was happening before.

Bug: 79215201
Test: manual testing
Change-Id: Ib66ef392c19c937718e7101f6d48fac3abe51ad0
Merged-In: Ib66ef392c19c937718e7101f6d48fac3abe51ad0

6 years agoFix bad type for txPower in PeriodicAdvertisingReport serialization
Jakub Pawlowski [Fri, 8 Dec 2017 06:56:03 +0000 (22:56 -0800)]
Fix bad type for txPower in PeriodicAdvertisingReport serialization

Bug: 69634768
Test: compilation
Change-Id: Icedfbaf1ba933637e935ada0fd98aea42c73f2b2
Merged-In: Icedfbaf1ba933637e935ada0fd98aea42c73f2b2

6 years agoWM: Prevent secondary display focus while keyguard is up
Adrian Roos [Tue, 22 May 2018 14:56:35 +0000 (16:56 +0200)]
WM: Prevent secondary display focus while keyguard is up

Fixes an issue where input intended for the keyguard could end up going
to a different display.

To prevent this, make sure that only the default display can get focused
when the keyguard is showing.

Change-Id: I6463c44aedca06930d2c9bda7c45ffd93141308c
Merged-In: I6463c44aedca06930d2c9bda7c45ffd93141308c
Fixes: 71786287
Test: atest DisplayContentTests

6 years agoMerge changes from topic "am-d326b840-2575-4e69-8ec2-5cfa14046328" into nyc-mr2-dev
TreeHugger Robot [Mon, 21 May 2018 17:03:49 +0000 (17:03 +0000)]
Merge changes from topic "am-d326b840-2575-4e69-8ec2-5cfa14046328" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Mon, 21 May 2018 17:03:49 +0000 (17:03 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-d326b840-2575-4e69-8ec2-5cfa14046328" into oc-dev
TreeHugger Robot [Mon, 21 May 2018 17:03:49 +0000 (17:03 +0000)]
Merge changes from topic "am-d326b840-2575-4e69-8ec2-5cfa14046328" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb skipped: ea0127f477
  [automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-99e79364-ab71-4d96-8a34-000c07c66d3e" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:23:10 +0000 (23:23 +0000)]
Merge changes from topic "am-99e79364-ab71-4d96-8a34-000c07c66d3e" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:23:10 +0000 (23:23 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-99e79364-ab71-4d96-8a34-000c07c66d3e" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:23:10 +0000 (23:23 +0000)]
Merge changes from topic "am-99e79364-ab71-4d96-8a34-000c07c66d3e" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927 skipped: 43bd9fa8b2
  [automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-e925dddc-33b5-48cc-bddb-e978735e99b7" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:22:37 +0000 (23:22 +0000)]
Merge changes from topic "am-e925dddc-33b5-48cc-bddb-e978735e99b7" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:22:37 +0000 (23:22 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-e925dddc-33b5-48cc-bddb-e978735e99b7" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:22:37 +0000 (23:22 +0000)]
Merge changes from topic "am-e925dddc-33b5-48cc-bddb-e978735e99b7" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0 skipped: ead9437423
  [automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-3142fca9-100b-4dd4-8848-117761166ffe" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:21:49 +0000 (23:21 +0000)]
Merge changes from topic "am-3142fca9-100b-4dd4-8848-117761166ffe" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:21:49 +0000 (23:21 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-3142fca9-100b-4dd4-8848-117761166ffe" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:21:49 +0000 (23:21 +0000)]
Merge changes from topic "am-3142fca9-100b-4dd4-8848-117761166ffe" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96 skipped: 913239f688
  [automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-4a0c0e3d-b1ad-44cf-9088-b37a160bc2ac" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:20:31 +0000 (23:20 +0000)]
Merge changes from topic "am-4a0c0e3d-b1ad-44cf-9088-b37a160bc2ac" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:20:31 +0000 (23:20 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-4a0c0e3d-b1ad-44cf-9088-b37a160bc2ac" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:20:31 +0000 (23:20 +0000)]
Merge changes from topic "am-4a0c0e3d-b1ad-44cf-9088-b37a160bc2ac" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2 skipped: a492d4d55b
  [automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-d375c8a9-01d8-44da-9ef2-2e866e457b89" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:17:54 +0000 (23:17 +0000)]
Merge changes from topic "am-d375c8a9-01d8-44da-9ef2-2e866e457b89" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:17:54 +0000 (23:17 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-d375c8a9-01d8-44da-9ef2-2e866e457b89" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:17:54 +0000 (23:17 +0000)]
Merge changes from topic "am-d375c8a9-01d8-44da-9ef2-2e866e457b89" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc skipped: a98b588532
  [automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-646cf556-d36a-48f1-a414-3797586a8a96" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:17:28 +0000 (23:17 +0000)]
Merge changes from topic "am-646cf556-d36a-48f1-a414-3797586a8a96" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:17:28 +0000 (23:17 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-646cf556-d36a-48f1-a414-3797586a8a96" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:17:28 +0000 (23:17 +0000)]
Merge changes from topic "am-646cf556-d36a-48f1-a414-3797586a8a96" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d skipped: e7c60be83f
  [automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-76a20f08-9212-4001-a52b-dd38a93faa9b" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:16:59 +0000 (23:16 +0000)]
Merge changes from topic "am-76a20f08-9212-4001-a52b-dd38a93faa9b" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:16:59 +0000 (23:16 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-76a20f08-9212-4001-a52b-dd38a93faa9b" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:16:59 +0000 (23:16 +0000)]
Merge changes from topic "am-76a20f08-9212-4001-a52b-dd38a93faa9b" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862 skipped: a7875e6a7d
  [automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-d1fbdf53-dccb-4215-99ff-b24698b6bec8" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:11:49 +0000 (23:11 +0000)]
Merge changes from topic "am-d1fbdf53-dccb-4215-99ff-b24698b6bec8" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:11:49 +0000 (23:11 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-d1fbdf53-dccb-4215-99ff-b24698b6bec8" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:11:49 +0000 (23:11 +0000)]
Merge changes from topic "am-d1fbdf53-dccb-4215-99ff-b24698b6bec8" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2 skipped: 20306f6ce0
  [automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2
  Import translations. DO NOT MERGE

6 years agoMerge changes from topic "am-93ef86f6-d908-4917-b503-5ba7fcefcad8" into nyc-mr2-dev
TreeHugger Robot [Thu, 17 May 2018 23:08:40 +0000 (23:08 +0000)]
Merge changes from topic "am-93ef86f6-d908-4917-b503-5ba7fcefcad8" into nyc-mr2-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e
  Import translations. DO NOT MERGE

6 years agoMerge "Import translations. DO NOT MERGE" into cw-f-dev
TreeHugger Robot [Thu, 17 May 2018 23:08:40 +0000 (23:08 +0000)]
Merge "Import translations. DO NOT MERGE" into cw-f-dev

6 years agoMerge changes from topic "am-93ef86f6-d908-4917-b503-5ba7fcefcad8" into oc-dev
TreeHugger Robot [Thu, 17 May 2018 23:08:40 +0000 (23:08 +0000)]
Merge changes from topic "am-93ef86f6-d908-4917-b503-5ba7fcefcad8" into oc-dev

* changes:
  [automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e skipped: 8b2ac4fffa
  [automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e
  Import translations. DO NOT MERGE

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0 skipped...
Android Build Merger (Role) [Thu, 17 May 2018 20:23:20 +0000 (20:23 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0 skipped: ead9437423

Change-Id: Ib205a2905687b5d141c6865096055ce1e2fc5695

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0
Android Build Merger (Role) [Thu, 17 May 2018 20:23:15 +0000 (20:23 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 2f53cb7cc0

Change-Id: Ica203d86f848c960f78cbfc52f2a79235775b5ad

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 20:22:57 +0000 (13:22 -0700)]
Import translations. DO NOT MERGE

Change-Id: Ib520bacf1c72ef41ba41049a652c914aee6404a5
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e skipped...
Android Build Merger (Role) [Thu, 17 May 2018 20:16:51 +0000 (20:16 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e skipped: 8b2ac4fffa

Change-Id: If1028ada1c941503fb6019248df34e3746fcde2f

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e
Android Build Merger (Role) [Thu, 17 May 2018 20:16:44 +0000 (20:16 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: fc4347f98e

Change-Id: I1f62a7df5e9abe4a14bb1f8dd746518935ad3799

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 20:16:22 +0000 (13:16 -0700)]
Import translations. DO NOT MERGE

Change-Id: Iccdcf6f4eb7734618d1ac104ba2605c2b8eaed78
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc skipped...
Android Build Merger (Role) [Thu, 17 May 2018 19:24:20 +0000 (19:24 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc skipped: a98b588532

Change-Id: I72a76903d5f9206012fcd057330c697b87a2edd4

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc
Android Build Merger (Role) [Thu, 17 May 2018 19:24:14 +0000 (19:24 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 439fdb13fc

Change-Id: I2175abb2fc2242262851b262cbfab21be2aea9f6

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 19:23:50 +0000 (12:23 -0700)]
Import translations. DO NOT MERGE

Change-Id: I5f852d1e333ffb20b1ac78f84791fa7b4f9091f9
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862 skipped...
Android Build Merger (Role) [Thu, 17 May 2018 19:15:58 +0000 (19:15 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862 skipped: a7875e6a7d

Change-Id: I5c0b5c4beead842ea771083b8bb3a87d846b949f

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862
Android Build Merger (Role) [Thu, 17 May 2018 19:15:52 +0000 (19:15 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 053b375862

Change-Id: Id48d35e7d3e303142ce734b6fe8d120bc7a63900

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 19:15:29 +0000 (12:15 -0700)]
Import translations. DO NOT MERGE

Change-Id: I8cd1fe0903685b95ef950bb675755fa3f9c0c61f
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d skipped...
Android Build Merger (Role) [Thu, 17 May 2018 19:03:57 +0000 (19:03 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d skipped: e7c60be83f

Change-Id: I0ed0c7b8695b336bfea20432f5795a15ba8afc63

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d
Android Build Merger (Role) [Thu, 17 May 2018 19:03:51 +0000 (19:03 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: a574713e4d

Change-Id: I0bc12ca3b01898ae0bd149dedd037105af6ba09f

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 19:03:25 +0000 (12:03 -0700)]
Import translations. DO NOT MERGE

Change-Id: I774c309761ed8d810d3eb5c7de2a6128e1b4e9c4
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96 skipped...
Android Build Merger (Role) [Thu, 17 May 2018 18:52:35 +0000 (18:52 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96 skipped: 913239f688

Change-Id: Ibbf4043cec321c85857285d48f353698582b5459

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96
Android Build Merger (Role) [Thu, 17 May 2018 18:52:30 +0000 (18:52 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 7b2e87bd96

Change-Id: I8fd53dd1550fedb867e6be3d0f425effcb35088b

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 18:52:07 +0000 (11:52 -0700)]
Import translations. DO NOT MERGE

Change-Id: Ia1520cd471548773369f3762ede13c07d12a7ed5
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2 skipped...
Android Build Merger (Role) [Thu, 17 May 2018 18:44:45 +0000 (18:44 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2 skipped: 20306f6ce0

Change-Id: I21ab563abd9c30724436723f6dfd5a3c5debba5f

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2
Android Build Merger (Role) [Thu, 17 May 2018 18:44:38 +0000 (18:44 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 379dacd8c2

Change-Id: I3e8c7aca201fda9fcaaba88e196b49af85a50c9a

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 18:44:11 +0000 (11:44 -0700)]
Import translations. DO NOT MERGE

Change-Id: I84a155dad80243362cd12cf62074aaebfe4df759
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927 skipped...
Android Build Merger (Role) [Thu, 17 May 2018 18:31:08 +0000 (18:31 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927 skipped: 43bd9fa8b2

Change-Id: I180fdd83de2e38d6bed8b71665cc7e05c5770473

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927
Android Build Merger (Role) [Thu, 17 May 2018 18:31:02 +0000 (18:31 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: c2a85c8927

Change-Id: Ib33139944063e2c0767efc8eaa97d12c2c12efa0

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 18:30:30 +0000 (11:30 -0700)]
Import translations. DO NOT MERGE

Change-Id: Ibae57a609be5646f0051a175eb9e51894d36e4ec
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2 skipped...
Android Build Merger (Role) [Thu, 17 May 2018 18:10:57 +0000 (18:10 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2 skipped: a492d4d55b

Change-Id: I39ac9fd76292a6989b1651de6e7de591fe6541b3

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2
Android Build Merger (Role) [Thu, 17 May 2018 18:10:50 +0000 (18:10 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: 63cef597e2

Change-Id: Ic51dccbd5c072e301a29a8c343d1d46d96f2dcfc

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 18:10:27 +0000 (11:10 -0700)]
Import translations. DO NOT MERGE

Change-Id: Iede073582e79433f57a9df283536e33787b5d89f
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb skipped...
Android Build Merger (Role) [Thu, 17 May 2018 18:04:20 +0000 (18:04 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb skipped: ea0127f477

Change-Id: Ibe7908b3e64dbe88c089010da4b2d03f0c14dde0

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb
Android Build Merger (Role) [Thu, 17 May 2018 18:04:15 +0000 (18:04 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: f72be588eb

Change-Id: I9d5c9958fe7c4bc4a8ef28f471e7a9bb4ce30ffd

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 18:03:51 +0000 (11:03 -0700)]
Import translations. DO NOT MERGE

Change-Id: Icd56351eb1ed607c64b62c6e0ada553078b6393d
Auto-generated-cl: translation import

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: a52a0f49cc skipped...
Android Build Merger (Role) [Thu, 17 May 2018 17:57:50 +0000 (17:57 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: a52a0f49cc skipped: a5619cc4e3

Change-Id: I56ff76335c44571f3df4c63f95970b97555cd9b4

6 years ago[automerger skipped] Import translations. DO NOT MERGE skipped: a52a0f49cc
Android Build Merger (Role) [Thu, 17 May 2018 17:57:40 +0000 (17:57 +0000)]
[automerger skipped] Import translations. DO NOT MERGE skipped: a52a0f49cc

Change-Id: I7b718beb5044ad046eed73fc54950f724ee70a78

6 years agoImport translations. DO NOT MERGE
Bill Yi [Thu, 17 May 2018 17:57:03 +0000 (10:57 -0700)]
Import translations. DO NOT MERGE

Change-Id: Ic6a4271d7a7e37cf847a3f8e920b9937885564fa
Auto-generated-cl: translation import

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:41:07 +0000 (17:41 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360 am: 6a42ea18b3 am: 42ded39df8 am: fb67a0f5f3 am: 2cb239cf3c am: 8914d11b15 am: 675ad12059

Change-Id: I9435814e67948c466a6bebc7acdcb2e68b30d4be

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:41:03 +0000 (17:41 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360 am: 6a42ea18b3 am: 42ded39df8 am: fb67a0f5f3 am: 2cb239cf3c am: 8914d11b15

Change-Id: I72861a0685af1981b9a50ebbb8eb315d150f5f63

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:40:57 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360 am: 6a42ea18b3 am: 42ded39df8 am: fb67a0f5f3 am: 2cb239cf3c

Change-Id: I8f405684aae1cdb6aac377861d3387622a20f661

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:40:52 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360 am: 6a42ea18b3 am: 42ded39df8 am: fb67a0f5f3

Change-Id: I756b595747e3d97ddb14dc45ed1b6001ec6ebed8

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:40:46 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360 am: 6a42ea18b3 am: 42ded39df8

Change-Id: I315da9ccb85d9e69edf18dd85b7bdf183bd6f738

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:40:32 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360 am: 6a42ea18b3

Change-Id: If82fd8b2c76bedf089bec4501169417427854b1d

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:40:27 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510 am: 884d2c7360

Change-Id: I0e5ba8adaed2d6247137319262278fac98f467e1

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e...
Android Build Merger (Role) [Thu, 10 May 2018 17:40:22 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373 am: b1f2848510

Change-Id: I689d44b6617f0ed949e3f72367980158ea06ad0d

6 years ago[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373
Android Build Merger (Role) [Thu, 10 May 2018 17:40:16 +0000 (17:40 +0000)]
[automerger] clearCallingIdentity before calling into getPackageUidAsUser am: 857326e373

Change-Id: I2166c2f9ca0a6654e1a88b1d183062eb1564c24d

6 years agoclearCallingIdentity before calling into getPackageUidAsUser
Tony Mak [Thu, 14 Dec 2017 12:40:07 +0000 (12:40 +0000)]
clearCallingIdentity before calling into getPackageUidAsUser

Fix: 70585244
Bug: 69981755

Test: Enable any accessibility service -> inflate work profile
      -> Tap on any work app -> no longer crash

Test: cts-tradefed run cts-dev --module DevicePolicyManager --test com.android.cts.devicepolicy.CrossProfileAppsHostSideTest.testPrimaryUserToManagedProfile
Change-Id: I80d18f4e2ab76a228cb0aa2c8312c323a9b5c84d

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f5...
Android Build Merger (Role) [Wed, 9 May 2018 17:20:01 +0000 (17:20 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f am: 6b95503960 am: 9e291fe8c2 am: 97f7498c18 am: 232f42c7b8 am: 76a04ff670 am: 2bd91daa06

Change-Id: I88ccfc06e5639ce48c5e8a4659d2cbb7c47b5825

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f5...
Android Build Merger (Role) [Wed, 9 May 2018 17:19:53 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f am: 6b95503960 am: 9e291fe8c2 am: 97f7498c18 am: 232f42c7b8 am: 76a04ff670

Change-Id: Id013258bbcfb2664c03df15a082bc04ea053663e

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f5...
Android Build Merger (Role) [Wed, 9 May 2018 17:19:45 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f am: 6b95503960 am: 9e291fe8c2 am: 97f7498c18 am: 232f42c7b8

Change-Id: I42da7843ef9ecdbc1411a25feb95701150664490

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f5...
Android Build Merger (Role) [Wed, 9 May 2018 17:19:38 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f am: 6b95503960 am: 9e291fe8c2 am: 97f7498c18

Change-Id: I4f4b15c92832c0806fcf3e67f6fd5c9b13eebc1f

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f5...
Android Build Merger (Role) [Wed, 9 May 2018 17:19:32 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f am: 6b95503960 am: 9e291fe8c2

Change-Id: Ia6ba75b4938ab6d9ec0ffe1bc39b6ce6995a808e

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f5...
Android Build Merger (Role) [Wed, 9 May 2018 17:19:18 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f am: 6b95503960

Change-Id: Ia3658c17dc890ca2de951da5c701e953ce8c969b

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f
Android Build Merger (Role) [Wed, 9 May 2018 17:19:12 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a am: a99414f51f

Change-Id: I7aaceff0646a5e738ed862c34645e548aabf62f1

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a
Android Build Merger (Role) [Wed, 9 May 2018 17:19:07 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288 am: 743abb939a

Change-Id: Ia89ea1adb47be3b70f5db292677c4c19194a04db

6 years ago[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288
Android Build Merger (Role) [Wed, 9 May 2018 17:19:02 +0000 (17:19 +0000)]
[automerger] Nullcheck to fix Autofill CTS am: 6c68a69288

Change-Id: I379d54d926e01da53b637bba6b3b1ee8577cbdbb

6 years agoNullcheck to fix Autofill CTS
Eugene Susla [Mon, 11 Dec 2017 18:07:03 +0000 (10:07 -0800)]
Nullcheck to fix Autofill CTS

Test: presubmit
Fixes: 70506475
Bug: 69981755
Change-Id: I187bed4889a4901a7137a2995178ea651ed09186

6 years agoMerge "Osu: fixed Mismatch between createFromParcel and writeToParcel" into oc-dev
Ecco Park [Fri, 4 May 2018 20:21:53 +0000 (20:21 +0000)]
Merge "Osu: fixed Mismatch between createFromParcel and writeToParcel" into oc-dev

6 years agoOsu: fixed Mismatch between createFromParcel and writeToParcel
Ecco Park [Thu, 3 May 2018 21:49:40 +0000 (14:49 -0700)]
Osu: fixed Mismatch between createFromParcel and writeToParcel

Bug: 77600924
Change-Id: I46d765892e8e6839ed5140a3b0d6bb1815ccf9bc
Signed-off-by: Ecco Park <eccopark@google.com>
6 years agoMerge "DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name"...
android-build-team Robot [Fri, 4 May 2018 00:47:48 +0000 (00:47 +0000)]
Merge "DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name" into oc-dev

6 years agoMerge changes from topic "am-01dfab30-af7a-4b8d-97d8-55bde12588f9-nyc-dev" into nyc...
android-build-team Robot [Thu, 3 May 2018 23:10:52 +0000 (23:10 +0000)]
Merge changes from topic "am-01dfab30-af7a-4b8d-97d8-55bde12588f9-nyc-dev" into nyc-mr2-dev

* changes:
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1 am: b906043c81 am: 9822117184 am: 2b41ff76b0
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1 am: b906043c81 am: 9822117184
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1 am: b906043c81
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1
  DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name

6 years agoMerge changes from topic "am-01dfab30-af7a-4b8d-97d8-55bde12588f9-nyc-dev" into cw...
android-build-team Robot [Thu, 3 May 2018 23:10:52 +0000 (23:10 +0000)]
Merge changes from topic "am-01dfab30-af7a-4b8d-97d8-55bde12588f9-nyc-dev" into cw-f-dev

* changes:
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1 am: b906043c81 am: 9822117184
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1 am: b906043c81
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1
  DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name

6 years agoMerge changes from topic "am-01dfab30-af7a-4b8d-97d8-55bde12588f9-nyc-dev" into nyc...
android-build-team Robot [Thu, 3 May 2018 23:10:52 +0000 (23:10 +0000)]
Merge changes from topic "am-01dfab30-af7a-4b8d-97d8-55bde12588f9-nyc-dev" into nyc-mr1-dev

* changes:
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1 am: b906043c81
  [automerger] DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name am: b6cde9ecc1
  DO NOT MERGE Truncate newline and tab characters in BluetoothDevice name