Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8240499: Enforce whitespace checking for additional source files
Reviewed-by: jvos, arapte
- Loading branch information
Showing
with
132 additions
and 148 deletions.
- +2 −2 .jcheck/conf
- +3 −3 build.gradle
- +1 −1 buildSrc/android.gradle
- +2 −2 buildSrc/win.gradle
- +1 −1 modules/javafx.graphics/src/jslc/antlr/com/sun/scenario/effect/compiler/JSL.g4
- +1 −1 ...s/javafx.graphics/src/jslc/resources/com/sun/scenario/effect/compiler/backend/prism/PrismGlue.stg
- +1 −1 ...s/javafx.graphics/src/jslc/resources/com/sun/scenario/effect/compiler/backend/sw/java/JSWGlue.stg
- +1 −1 .../javafx.graphics/src/jslc/resources/com/sun/scenario/effect/compiler/backend/sw/me/MEJavaGlue.stg
- +1 −1 ...avafx.graphics/src/jslc/resources/com/sun/scenario/effect/compiler/backend/sw/sse/SSEJavaGlue.stg
- +2 −2 modules/javafx.graphics/src/main/native-glass/mac/GlassViewDelegate.m
- +1 −1 modules/javafx.graphics/src/main/resources/com/sun/prism/es2/glsl/diffuse_texture.frag
- +8 −8 modules/javafx.graphics/src/main/resources/com/sun/prism/es2/glsl/main.vert
- +1 −1 modules/javafx.web/src/main/native/Source/JavaScriptCore/runtime/BundlePath.mm
- +1 −1 modules/javafx.web/src/main/native/Source/WTF/wtf/BlockObjCExceptions.mm
- +5 −5 modules/javafx.web/src/main/native/Source/WTF/wtf/cocoa/FileSystemCocoa.mm
- +3 −3 modules/javafx.web/src/main/native/Source/WTF/wtf/cocoa/MainThreadCocoa.mm
- +1 −1 modules/javafx.web/src/main/native/Source/WTF/wtf/cocoa/MemoryPressureHandlerCocoa.mm
- +36 −36 modules/javafx.web/src/main/native/Source/WTF/wtf/cocoa/NSURLExtras.mm
- +1 −1 modules/javafx.web/src/main/native/Source/WTF/wtf/cocoa/URLCocoa.mm
- +2 −2 modules/javafx.web/src/main/native/Source/WebCore/Modules/mediacontrols/mediaControlsApple.css
- +5 −5 modules/javafx.web/src/main/native/Source/WebCore/Modules/mediacontrols/mediaControlsBase.css
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/Modules/mediacontrols/mediaControlsiOS.css
- +1 −1 .../main/native/Source/WebCore/Modules/modern-media-controls/controls/compact-activity-indicator.css
- +1 −1 .../src/main/native/Source/WebCore/Modules/modern-media-controls/controls/compact-media-controls.css
- +1 −1 ...vafx.web/src/main/native/Source/WebCore/Modules/modern-media-controls/controls/media-controls.css
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/Modules/modern-media-controls/controls/slider.css
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/Modules/plugins/QuickTimePluginReplacement.css
- +6 −6 modules/javafx.web/src/main/native/Source/WebCore/Modules/plugins/QuickTimePluginReplacement.mm
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/css/html.css
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/css/mediaControls.css
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/css/mediaControlsiOS.css
- +4 −4 modules/javafx.web/src/main/native/Source/WebCore/css/svg.css
- +9 −9 modules/javafx.web/src/main/native/Source/WebCore/css/themeWin.css
- +3 −3 modules/javafx.web/src/main/native/Source/WebCore/css/themeWinQuirks.css
- +2 −2 modules/javafx.web/src/main/native/Source/WebCore/dom/DataTransferMac.mm
- +1 −1 modules/javafx.web/src/main/native/Source/WebCore/platform/graphics/cv/ImageTransferSessionVT.mm
- +2 −2 modules/javafx.web/src/main/native/Source/WebCore/platform/graphics/cv/TextureCacheCV.mm
- +5 −5 modules/javafx.web/src/main/native/Source/WebCore/rendering/RenderThemeIOS.mm
- +5 −5 modules/javafx.web/src/main/native/Source/WebCore/rendering/RenderThemeMac.mm
- +1 −1 modules/javafx.web/src/main/native/Source/bmalloc/bmalloc/ProcessCheck.mm
- +6 −22 tools/scripts/checkWhiteSpace
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -214,9 +214,9 @@ if (file(vs2017DllPath).exists()) { | ||
} | ||
else { | ||
ext.WIN.VS2017DLLNames = [ | ||
]; | ||
ext.WIN.VS2017DLLs = [ | ||
]; | ||
} | ||
|
||
def WinSDKDLLsPath = cygpath("${winSdkDllDir}") | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -462,7 +462,7 @@ INTCONSTANT : ('0' | '1'..'9' DIGIT*) ; | ||
FLOATCONSTANT | ||
: DIGIT+ '.' DIGIT* | ||
| '.' DIGIT+ | ||
; | ||
|
||
fragment | ||
DIGIT : '0'..'9' ; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -58,7 +58,7 @@ public class PPS$peerName$Peer extends $superClass$$genericsDecl$ $interfaceDecl | ||
} | ||
|
||
$usercode$ | ||
|
||
@Override | ||
protected boolean isSamplerLinear(int i) { | ||
switch (i) { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -57,5 +57,5 @@ varying vec2 oTexCoords; | ||
|
||
vec4 apply_diffuse() { | ||
vec4 dTexColor = texture2D(diffuseTexture, oTexCoords); | ||
return dTexColor * diffuseColor; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.