/external/proguard/src/proguard/optimize/ |
D | Optimizer.java | 1006 …alized classes: " + classMarkingFinalCount + disabled(classMarkingFinal… in execute() 1007 …oxed enum classes: " + classUnboxingEnumCount + disabled(classUnboxingEnum… in execute() 1008 …tically merged classes: " + classMergingVerticalCount + disabled(classMergingVerti… in execute() 1009 …izontally merged classes: " + classMergingHorizontalCount + disabled(classMergingHoriz… in execute() 1010 …oved write-only fields: " + fieldRemovalWriteonlyCount + disabled(fieldRemovalWrite… in execute() 1011 …vatized fields: " + fieldMarkingPrivateCount + disabled(fieldMarkingPriva… in execute() 1012 …ined constant fields: " + fieldPropagationValueCount + disabled(fieldPropagationV… in execute() 1013 …vatized methods: " + methodMarkingPrivateCount + disabled(methodMarkingPriv… in execute() 1014 …ticized methods: " + methodMarkingStaticCount + disabled(methodMarkingStat… in execute() 1015 …alized methods: " + methodMarkingFinalCount + disabled(methodMarkingFina… in execute() [all …]
|
/external/compiler-rt/lib/asan/ |
D | asan_activation.cc | 107 AllocatorOptions disabled = asan_deactivated_flags.allocator_options; in AsanDeactivate() local 108 disabled.quarantine_size_mb = 0; in AsanDeactivate() 109 disabled.min_redzone = 16; // Redzone must be at least 16 bytes long. in AsanDeactivate() 110 disabled.max_redzone = 16; in AsanDeactivate() 111 disabled.alloc_dealloc_mismatch = false; in AsanDeactivate() 112 disabled.may_return_null = true; in AsanDeactivate() 113 ReInitializeAllocator(disabled); in AsanDeactivate()
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
D | ProgressBar.java | 54 boolean disabled; field in ProgressBar 113 boolean disabled = this.disabled; in draw() 115 …final Drawable bg = (disabled && style.disabledBackground != null) ? style.disabledBackground : st… in draw() 116 …final Drawable knobBefore = (disabled && style.disabledKnobBefore != null) ? style.disabledKnobBef… in draw() 117 …final Drawable knobAfter = (disabled && style.disabledKnobAfter != null) ? style.disabledKnobAfter… in draw() 222 return (disabled && style.disabledKnob != null) ? style.disabledKnob : style.knob; in getKnobDrawable() 277 …final Drawable bg = (disabled && style.disabledBackground != null) ? style.disabledBackground : st… in getPrefWidth() 288 …final Drawable bg = (disabled && style.disabledBackground != null) ? style.disabledBackground : st… in getPrefHeight() 336 public void setDisabled (boolean disabled) { in setDisabled() argument 337 this.disabled = disabled; in setDisabled() [all …]
|
D | SelectBox.java | 67 boolean disabled; field in SelectBox 90 if (disabled) return false; in SelectBox() 209 if (disabled && style.backgroundDisabled != null) in draw() 220 …final Color fontColor = (disabled && style.disabledFontColor != null) ? style.disabledFontColor : … in draw() 280 public void setDisabled (boolean disabled) { in setDisabled() argument 281 if (disabled && !this.disabled) hideList(); in setDisabled() 282 this.disabled = disabled; in setDisabled() 286 return disabled; in isDisabled() 355 list.setTouchable(Touchable.disabled); in SelectBoxList() 453 list.setTouchable(Touchable.disabled); in hide()
|
D | Button.java | 172 if (isDisabled() && style.disabled != null) in setStyle() 173 background = style.disabled; in setStyle() 202 if (isDisabled && style.disabled != null) in draw() 203 background = style.disabled; in draw() 266 public Drawable up, down, over, checked, checkedOver, disabled; field in Button.ButtonStyle 285 this.disabled = style.disabled; in ButtonStyle()
|
/external/llvm/test/Transforms/LoopVectorize/X86/ |
D | metadata-enable.ll | 14 ; vectorization is disabled. 122 ; O1-LABEL: @disabled( 125 ; O2-LABEL: @disabled( 128 ; O3-LABEL: @disabled( 131 ; O3DIS-LABEL: @disabled( 134 ; Os-LABEL: @disabled( 137 ; Oz-LABEL: @disabled( 140 ; O1VEC-LABEL: @disabled( 143 ; OzVEC-LABEL: @disabled( 146 ; O1VEC2-LABEL: @disabled( [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.tests/.settings/ |
D | org.eclipse.jdt.core.prefs | 2 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 17 org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 19 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled 21 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled 24 org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 30 org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled 54 org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled 55 org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled 78 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/.settings/ |
D | org.eclipse.jdt.core.prefs | 2 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 17 org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 19 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled 21 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled 24 org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 30 org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled 54 org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled 55 org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled 78 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | FinalizableReferenceQueueClassLoaderUnloadingTest.java | 103 Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled"); in useFrqInSeparateLoader() local 104 disabled.setAccessible(true); in useFrqInSeparateLoader() 105 disabled.set(null, true); in useFrqInSeparateLoader() 215 Field disabled = sepFrqSystemLoaderC.getDeclaredField("disabled"); in doTestUnloadableInStaticFieldIfClosed() local 216 disabled.setAccessible(true); in doTestUnloadableInStaticFieldIfClosed() 217 disabled.set(null, true); in doTestUnloadableInStaticFieldIfClosed()
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/.settings/ |
D | org.eclipse.jdt.core.prefs | 16 org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 17 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled 22 org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled 50 org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled 52 org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 65 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled 72 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 73 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu/.settings/ |
D | org.eclipse.jdt.core.prefs | 16 org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 17 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled 22 org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled 50 org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled 52 org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 65 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled 72 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 73 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
/external/eclipse-windowbuilder/propertysheet/.settings/ |
D | org.eclipse.jdt.core.prefs | 5 org.eclipse.jdt.core.compiler.annotation.nonnullisdefault=disabled 21 org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled 22 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled 65 org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled 67 org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled 71 org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=disabled 82 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled 89 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 90 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/net/ |
D | NetAPITest.java | 240 void setButtonDisabled (boolean disabled) { in setButtonDisabled() argument 241 Touchable t = disabled ? Touchable.disabled : Touchable.enabled; in setButtonDisabled() 243 btnDownloadImage.setDisabled(disabled); in setButtonDisabled() 246 btnDownloadText.setDisabled(disabled); in setButtonDisabled() 249 btnDownloadError.setDisabled(disabled); in setButtonDisabled() 252 btnPost.setDisabled(disabled); in setButtonDisabled()
|
/external/openssh/ |
D | auth-shadow.c | 94 int daysleft, disabled = 0; in auth_shadow_pwexpired() local 116 disabled = 1; in auth_shadow_pwexpired() 122 if (disabled) { in auth_shadow_pwexpired()
|
/external/ImageMagick/www/css/ |
D | magick.css | 5 …disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{pad… selector
|
/external/clang/test/SemaObjC/ |
D | no-objc-exceptions.m | 4 @throw @"Hello"; // expected-error {{cannot use '@throw' with Objective-C exceptions disabled}} 8 @try { // expected-error {{cannot use '@try' with Objective-C exceptions disabled}}
|
/external/freetype/ |
D | README.android | 3 The following modules are disabled in include/freetype/config/ftmodule.h: 13 The following options are disabled in include/freetype/config/ftoption.h:
|
/external/autotest/frontend/client/src/autotest/public/ |
D | standard.css | 87 .gwt-ToggleButton-up-disabled, 90 .gwt-ToggleButton-down-disabled { 107 .gwt-ToggleButton-up-disabled { 125 .gwt-ToggleButton-down-disabled {
|
/external/bison/djgpp/ |
D | config.bat | 39 set DEPENDENCY_TRACKING=disabled 40 if not "%DEPENDENCY_TRACKING%" == "disabled" goto SmallEnv 41 set LIBICONV_PREFIX=disabled 42 if not "%LIBICONV_PREFIX%" == "disabled" goto SmallEnv 43 set LIBINTL_PREFIX=disabled 44 if not "%LIBINTL_PREFIX%" == "disabled" goto SmallEnv 61 if "%1" == "no-nls" set NLS=disabled 62 if "%1" == "no-NLS" set NLS=disabled 63 if "%1" == "NO-NLS" set NLS=disabled 64 if not "%NLS%" == "disabled" goto SmallEnv [all …]
|
/external/curl/src/ |
D | tool_getpass.c | 229 bool disabled; in getpass_r() local 234 disabled = ttyecho(FALSE, fd); /* disable terminal echo */ in getpass_r() 243 if(disabled) { in getpass_r()
|
/external/mesa3d/src/gallium/docs/source/cso/ |
D | rasterizer.rst | 21 D3D11: seems always disabled 36 D3D11: seems always disabled 173 If any bit is set, then point_smooth MUST be disabled (there are no 207 disabled. If it is disabled, point sprite coordinates are not 242 disabled and the depth value will be clamped at the per-pixel level, after 247 clipping half-space k is enabled, if it is clear, it is disabled. 252 clip distance is written count as disabled; i.e. user clip planes and
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/theme/chrome/public/gwt/chrome/ |
D | chrome_rtl.css | 43 .gwt-Button[disabled] { 47 .gwt-Button[disabled]:hover { 53 .gwt-CheckBox-disabled { 249 .gwt-MenuBar .gwt-MenuItem-disabled { 476 .gwt-PushButton-up-disabled, 479 .gwt-PushButton-down-disabled { 486 .gwt-PushButton-up-disabled { 500 .gwt-PushButton-up-disabled { 509 .gwt-PushButton-down-disabled { 523 .gwt-PushButton-down-disabled { [all …]
|
/external/libpng/scripts/ |
D | pnglibconf.dfa | 32 # option <name> [requires ...] [if ...] [enables ...] [disabled] 35 # chunk <name> [requires ...] [enables ...] [disabled] 170 # experimental options must be disabled before they are defined in this file!) 202 option SET_OPTION disabled 227 option ARM_NEON_API disabled requires ALIGNED_MEMORY enables SET_OPTION, 229 option ARM_NEON_CHECK disabled requires ALIGNED_MEMORY, 278 # is required at all - hence the use of a 'disabled', not a 'requires'. 282 option WRITE_INT_FUNCTIONS disabled 288 # ERROR_NUMBERS: unimplemented feature, therefore disabled 305 option ERROR_NUMBERS disabled [all …]
|
/external/libvncserver/webclients/novnc/include/ |
D | ui.js | 122 $D('noVNC_clip').disabled = true; 426 $D('noVNC_cursor').disabled = true; 588 $D('noVNC_encrypt').disabled = connected; 589 $D('noVNC_true_color').disabled = connected; 592 $D('noVNC_cursor').disabled = connected; 595 $D('noVNC_cursor').disabled = true; 597 $D('noVNC_shared').disabled = connected; 598 $D('noVNC_view_only').disabled = connected; 599 $D('noVNC_path').disabled = connected; 600 $D('noVNC_repeaterID').disabled = connected;
|
/external/boringssl/src/crypto/x509v3/ |
D | CMakeLists.txt | 8 # v3_addr.c - disabled by upstream by default. 9 # v3_asid.c - disabled by upstream by default.
|