Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 531348c9 authored by Bill Yi's avatar Bill Yi
Browse files

Merge pi-platform-release to stage-aosp-master - DO NOT MERGE

Change-Id: I13571b072111900d0979f026670e648cdef9899b
parents e826aa52 cd9440cc
Loading
Loading
Loading
Loading
+141736 −0

File added.

Preview size limit exceeded, changes collapsed.

+74841 −0

File added.

Preview size limit exceeded, changes collapsed.

+348 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −1
Original line number Diff line number Diff line
@@ -1757,7 +1757,8 @@ public final class SQLiteDatabase extends SQLiteClosable {
        executeSql(sql, bindArgs);
    }

    private int executeSql(String sql, Object[] bindArgs) throws SQLException {
    /** {@hide} */
    public int executeSql(String sql, Object[] bindArgs) throws SQLException {
        acquireReference();
        try {
            final int statementType = DatabaseUtils.getSqlStatementType(sql);
+2 −1
Original line number Diff line number Diff line
@@ -1590,7 +1590,8 @@ public abstract class Layout {
        }

        float get(final int offset) {
            if (mHorizontals == null) {
            if (mHorizontals == null || offset < mLineStartOffset
                    || offset >= mLineStartOffset + mHorizontals.length) {
                return getHorizontal(offset, mPrimary);
            } else {
                return mHorizontals[offset - mLineStartOffset];
Loading