Loading graphics/java/android/graphics/RenderNode.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -765,12 +765,12 @@ public final class RenderNode { * Default value is false. See * Default value is false. See * {@link #setProjectBackwards(boolean)} for a description of what this entails. * {@link #setProjectBackwards(boolean)} for a description of what this entails. * * * @param shouldRecieve True if this RenderNode is a projection receiver, false otherwise. * @param shouldReceive True if this RenderNode is a projection receiver, false otherwise. * Default is false. * Default is false. * @return True if the value changed, false if the new value was the same as the previous value. * @return True if the value changed, false if the new value was the same as the previous value. */ */ public boolean setProjectionReceiver(boolean shouldRecieve) { public boolean setProjectionReceiver(boolean shouldReceive) { return nSetProjectionReceiver(mNativeRenderNode, shouldRecieve); return nSetProjectionReceiver(mNativeRenderNode, shouldReceive); } } /** /** Loading Loading @@ -1799,7 +1799,7 @@ public final class RenderNode { private static native boolean nSetProjectBackwards(long renderNode, boolean shouldProject); private static native boolean nSetProjectBackwards(long renderNode, boolean shouldProject); @CriticalNative @CriticalNative private static native boolean nSetProjectionReceiver(long renderNode, boolean shouldRecieve); private static native boolean nSetProjectionReceiver(long renderNode, boolean shouldReceive); @CriticalNative @CriticalNative private static native boolean nSetOutlineRoundRect(long renderNode, int left, int top, private static native boolean nSetOutlineRoundRect(long renderNode, int left, int top, Loading graphics/java/android/graphics/SurfaceTexture.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -318,7 +318,7 @@ public class SurfaceTexture { } } /** /** * Releases the the texture content. This is needed in single buffered mode to allow the image * Releases the texture content. This is needed in single buffered mode to allow the image * content producer to take ownership of the image buffer. * content producer to take ownership of the image buffer. * <p> * <p> * For more information see {@link #SurfaceTexture(int, boolean)}. * For more information see {@link #SurfaceTexture(int, boolean)}. Loading Loading @@ -431,7 +431,7 @@ public class SurfaceTexture { * error. * error. * <p> * <p> * Note that while calling this method causes all the buffers to be freed * Note that while calling this method causes all the buffers to be freed * from the perspective of the the SurfaceTexture, if there are additional * from the perspective of the SurfaceTexture, if there are additional * references on the buffers (e.g. if a buffer is referenced by a client or * references on the buffers (e.g. if a buffer is referenced by a client or * by OpenGL ES as a texture) then those buffer will remain allocated. * by OpenGL ES as a texture) then those buffer will remain allocated. * <p> * <p> Loading graphics/java/android/graphics/Typeface.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -600,7 +600,7 @@ public class Typeface { * {@link #setWeight} and {@link #setItalic}. * {@link #setWeight} and {@link #setItalic}. * * * If {@link #setWeight} is not called, the fallback family keeps the default weight. * If {@link #setWeight} is not called, the fallback family keeps the default weight. * Similary, if {@link #setItalic} is not called, the fallback family keeps the default * Similarly, if {@link #setItalic} is not called, the fallback family keeps the default * italic information. For example, calling {@code builder.setFallback("sans-serif-light")} * italic information. For example, calling {@code builder.setFallback("sans-serif-light")} * is equivalent to calling {@code builder.setFallback("sans-serif").setWeight(300)} in * is equivalent to calling {@code builder.setFallback("sans-serif").setWeight(300)} in * terms of fallback. The default weight and italic information are overridden by calling * terms of fallback. The default weight and italic information are overridden by calling Loading Loading @@ -794,7 +794,7 @@ public class Typeface { /** /** * Returns the maximum capacity of custom fallback families. * Returns the maximum capacity of custom fallback families. * * * This includes the the first font family passed to the constructor. * This includes the first font family passed to the constructor. * It is guaranteed that the value will be greater than or equal to 64. * It is guaranteed that the value will be greater than or equal to 64. * * * @return the maximum number of font families for the custom fallback * @return the maximum number of font families for the custom fallback Loading @@ -816,7 +816,7 @@ public class Typeface { /** /** * Sets a system fallback by name. * Sets a system fallback by name. * * * You can specify generic font familiy names or OEM specific family names. If the system * You can specify generic font family names or OEM specific family names. If the system * don't have a specified fallback, the default fallback is used instead. * don't have a specified fallback, the default fallback is used instead. * For more information about generic font families, see <a * For more information about generic font families, see <a * href="https://www.w3.org/TR/css-fonts-4/#generic-font-families">CSS specification</a> * href="https://www.w3.org/TR/css-fonts-4/#generic-font-families">CSS specification</a> Loading graphics/java/android/graphics/Xfermode.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -17,7 +17,7 @@ // This file was generated from the C++ include file: SkXfermode.h // This file was generated from the C++ include file: SkXfermode.h // Any changes made to this file will be discarded by the build. // Any changes made to this file will be discarded by the build. // To change this file, either edit the include, or device/tools/gluemaker/main.cpp, // To change this file, either edit the include, or device/tools/gluemaker/main.cpp, // or one of the auxilary file specifications in device/tools/gluemaker. // or one of the auxiliary file specifications in device/tools/gluemaker. package android.graphics; package android.graphics; Loading @@ -28,7 +28,7 @@ import android.os.Build; * Xfermode is the base class for objects that are called to implement custom * Xfermode is the base class for objects that are called to implement custom * "transfer-modes" in the drawing pipeline. The static function Create(Modes) * "transfer-modes" in the drawing pipeline. The static function Create(Modes) * can be called to return an instance of any of the predefined subclasses as * can be called to return an instance of any of the predefined subclasses as * specified in the Modes enum. When an Xfermode is assigned to an Paint, then * specified in the Modes enum. When an Xfermode is assigned to a Paint, then * objects drawn with that paint have the xfermode applied. * objects drawn with that paint have the xfermode applied. */ */ public class Xfermode { public class Xfermode { Loading graphics/java/android/graphics/YuvImage.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -63,7 +63,7 @@ public class YuvImage { private int mWidth; private int mWidth; /** /** * The height of the the image. * The height of the image. */ */ private int mHeight; private int mHeight; Loading Loading
graphics/java/android/graphics/RenderNode.java +4 −4 Original line number Original line Diff line number Diff line Loading @@ -765,12 +765,12 @@ public final class RenderNode { * Default value is false. See * Default value is false. See * {@link #setProjectBackwards(boolean)} for a description of what this entails. * {@link #setProjectBackwards(boolean)} for a description of what this entails. * * * @param shouldRecieve True if this RenderNode is a projection receiver, false otherwise. * @param shouldReceive True if this RenderNode is a projection receiver, false otherwise. * Default is false. * Default is false. * @return True if the value changed, false if the new value was the same as the previous value. * @return True if the value changed, false if the new value was the same as the previous value. */ */ public boolean setProjectionReceiver(boolean shouldRecieve) { public boolean setProjectionReceiver(boolean shouldReceive) { return nSetProjectionReceiver(mNativeRenderNode, shouldRecieve); return nSetProjectionReceiver(mNativeRenderNode, shouldReceive); } } /** /** Loading Loading @@ -1799,7 +1799,7 @@ public final class RenderNode { private static native boolean nSetProjectBackwards(long renderNode, boolean shouldProject); private static native boolean nSetProjectBackwards(long renderNode, boolean shouldProject); @CriticalNative @CriticalNative private static native boolean nSetProjectionReceiver(long renderNode, boolean shouldRecieve); private static native boolean nSetProjectionReceiver(long renderNode, boolean shouldReceive); @CriticalNative @CriticalNative private static native boolean nSetOutlineRoundRect(long renderNode, int left, int top, private static native boolean nSetOutlineRoundRect(long renderNode, int left, int top, Loading
graphics/java/android/graphics/SurfaceTexture.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -318,7 +318,7 @@ public class SurfaceTexture { } } /** /** * Releases the the texture content. This is needed in single buffered mode to allow the image * Releases the texture content. This is needed in single buffered mode to allow the image * content producer to take ownership of the image buffer. * content producer to take ownership of the image buffer. * <p> * <p> * For more information see {@link #SurfaceTexture(int, boolean)}. * For more information see {@link #SurfaceTexture(int, boolean)}. Loading Loading @@ -431,7 +431,7 @@ public class SurfaceTexture { * error. * error. * <p> * <p> * Note that while calling this method causes all the buffers to be freed * Note that while calling this method causes all the buffers to be freed * from the perspective of the the SurfaceTexture, if there are additional * from the perspective of the SurfaceTexture, if there are additional * references on the buffers (e.g. if a buffer is referenced by a client or * references on the buffers (e.g. if a buffer is referenced by a client or * by OpenGL ES as a texture) then those buffer will remain allocated. * by OpenGL ES as a texture) then those buffer will remain allocated. * <p> * <p> Loading
graphics/java/android/graphics/Typeface.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -600,7 +600,7 @@ public class Typeface { * {@link #setWeight} and {@link #setItalic}. * {@link #setWeight} and {@link #setItalic}. * * * If {@link #setWeight} is not called, the fallback family keeps the default weight. * If {@link #setWeight} is not called, the fallback family keeps the default weight. * Similary, if {@link #setItalic} is not called, the fallback family keeps the default * Similarly, if {@link #setItalic} is not called, the fallback family keeps the default * italic information. For example, calling {@code builder.setFallback("sans-serif-light")} * italic information. For example, calling {@code builder.setFallback("sans-serif-light")} * is equivalent to calling {@code builder.setFallback("sans-serif").setWeight(300)} in * is equivalent to calling {@code builder.setFallback("sans-serif").setWeight(300)} in * terms of fallback. The default weight and italic information are overridden by calling * terms of fallback. The default weight and italic information are overridden by calling Loading Loading @@ -794,7 +794,7 @@ public class Typeface { /** /** * Returns the maximum capacity of custom fallback families. * Returns the maximum capacity of custom fallback families. * * * This includes the the first font family passed to the constructor. * This includes the first font family passed to the constructor. * It is guaranteed that the value will be greater than or equal to 64. * It is guaranteed that the value will be greater than or equal to 64. * * * @return the maximum number of font families for the custom fallback * @return the maximum number of font families for the custom fallback Loading @@ -816,7 +816,7 @@ public class Typeface { /** /** * Sets a system fallback by name. * Sets a system fallback by name. * * * You can specify generic font familiy names or OEM specific family names. If the system * You can specify generic font family names or OEM specific family names. If the system * don't have a specified fallback, the default fallback is used instead. * don't have a specified fallback, the default fallback is used instead. * For more information about generic font families, see <a * For more information about generic font families, see <a * href="https://www.w3.org/TR/css-fonts-4/#generic-font-families">CSS specification</a> * href="https://www.w3.org/TR/css-fonts-4/#generic-font-families">CSS specification</a> Loading
graphics/java/android/graphics/Xfermode.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -17,7 +17,7 @@ // This file was generated from the C++ include file: SkXfermode.h // This file was generated from the C++ include file: SkXfermode.h // Any changes made to this file will be discarded by the build. // Any changes made to this file will be discarded by the build. // To change this file, either edit the include, or device/tools/gluemaker/main.cpp, // To change this file, either edit the include, or device/tools/gluemaker/main.cpp, // or one of the auxilary file specifications in device/tools/gluemaker. // or one of the auxiliary file specifications in device/tools/gluemaker. package android.graphics; package android.graphics; Loading @@ -28,7 +28,7 @@ import android.os.Build; * Xfermode is the base class for objects that are called to implement custom * Xfermode is the base class for objects that are called to implement custom * "transfer-modes" in the drawing pipeline. The static function Create(Modes) * "transfer-modes" in the drawing pipeline. The static function Create(Modes) * can be called to return an instance of any of the predefined subclasses as * can be called to return an instance of any of the predefined subclasses as * specified in the Modes enum. When an Xfermode is assigned to an Paint, then * specified in the Modes enum. When an Xfermode is assigned to a Paint, then * objects drawn with that paint have the xfermode applied. * objects drawn with that paint have the xfermode applied. */ */ public class Xfermode { public class Xfermode { Loading
graphics/java/android/graphics/YuvImage.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -63,7 +63,7 @@ public class YuvImage { private int mWidth; private int mWidth; /** /** * The height of the the image. * The height of the image. */ */ private int mHeight; private int mHeight; Loading