/external/llvm/test/CodeGen/X86/ |
split-vector-bitcast.ll | 3 ; PR10497 + another isel issue with sse2 disabled
|
/external/selinux/libselinux/man/man3/ |
security_disable.3 | 18 load. After the initial policy load, the SELinux kernel code cannot be disabled,
|
/frameworks/base/core/res/res/values-mcc311-mnc480/ |
config.xml | 38 be disabled) but individual Features can be disabled using ImsConfig.setFeatureValue() --> 42 carrier provisioning. If false: hard disabled. If true: then depends on carrier 47 carrier provisioning. If false: hard disabled. If true: then depends on carrier
|
/frameworks/base/core/tests/coretests/src/android/view/ |
DisabledTest.java | 30 * Exercises {@link android.view.View}'s disabled property. 32 public class DisabledTest extends ActivityInstrumentationTestCase<Disabled> { 39 super("com.android.frameworks.coretests", Disabled.class); 46 final Disabled a = getActivity();
|
/sdk/build/ |
windows_sdk_tools.mk | 16 # Temporarily disabled: See b/8992787
|
/external/proguard/src/proguard/optimize/ |
Optimizer.java | 1071 private String disabled(boolean flag) method in class:Optimizer 1081 private String disabled(boolean flag1, boolean flag2) method in class:Optimizer [all...] |
/art/compiler/dex/ |
pass_manager.cc | 33 // Add each pass which isn't disabled into default_pass_list_. 36 VLOG(compiler) << "Skipping disabled pass " << pass->GetName();
|
/cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/ |
TestTest.java | 25 * This class is for testing CTS logging. Will be disabled in release. 33 /* code for testing CTS logging. Disabled.
|
/external/llvm/test/CodeGen/Mips/ |
2008-07-29-icmp.ll | 3 ; FIXME: Disabled because branch instructions are generated where 5 ; REQUIRES: disabled
|
/external/valgrind/memcheck/tests/ |
err_disable2.c | 3 disabled. */ 34 fprintf(stderr, "\n--------- disabled (expect 0) ---------\n\n");
|
err_disable2.stderr.exp | 12 --------- disabled (expect 0) --------- 17 WARNING: exiting thread has error reporting disabled.
|
/external/wpa_supplicant_8/src/common/ |
ieee802_1x_defs.h | 25 * Disabled MACsec - do not secure sessions. 58 Disabled,
|
/frameworks/compile/libbcc/include/bcc/Support/ |
Sha1Util.h | 34 Sha1Util(); // DISABLED. 35 Sha1Util(Sha1Util &); // DISABLED.
|
/hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/ |
README | 8 are disabled, only events are allowed. 25 disabled sequence:
|
/hardware/libhardware/tests/camera2/ |
TestSettings.h | 28 // --forking-disabled, false by default 31 // reverse of --forking-disabled (not a flag), true by default
|
TestSettings.cpp | 34 // --forking-disabled, false by default 39 // reverse of --forking-disabled (not a flag), true by default 74 {"forking-disabled", optional_argument, 0, 0 }, 131 std::cerr << "Forking Disabled: " 146 std::cerr << " --forking-disabled[=1] don't fork process before "
|
/packages/experimental/NotificationListenerSample/res/values/ |
strings.xml | 22 <string name="nothing_to_see">Service is disabled. You must enabled it to see notifications.</string> 28 <string name="disabled">Service is not running.</string>
|
/external/mesa3d/docs/ |
perf.html | 31 depth buffering is GL_LESS, or disabled 38 depth buffering is GL_LESS or disabled 48 depth buffering is GL_LESS or disabled 50 Two-sided lighting is disabled 52 GL_COLOR_MATERIAL is disabled
|
/frameworks/base/docs/html/sdk/ |
download.jd | 9 document.getElementById('download-button').disabled = 23 document.getElementById('checkbox').disabled=true; 24 document.getElementById('download-button').disabled=true; 49 <input type="submit" value="Download" id="download-button" disabled="disabled"
|
/device/lge/hammerhead/ |
init.hammerhead.rc | 322 disabled 335 disabled 340 disabled 345 disabled 350 disabled 355 disabled 360 disabled 365 disabled 369 disabled 373 disabled [all...] |
/external/clang/test/SemaCXX/ |
enable_if.cpp | 9 X(bool b) __attribute__((enable_if(b, "chosen when 'b' is true"))); // expected-note{{candidate disabled: chosen when 'b' is true}} 12 void f(int n) __attribute__((enable_if(n == 1, "chosen when 'n' is one"))); // expected-note{{member declaration nearly matches}} expected-note{{candidate disabled: chosen when 'n' is one}} 14 static void s(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))); // expected-note2{{candidate disabled: chosen when 'n' is zero}} 25 void X::f(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))) // expected-note{{member declaration nearly matches}} expected-note{{candidate disabled: chosen when 'n' is zero}} 29 void X::f(int n) __attribute__((enable_if(n == 2, "chosen when 'n' is two"))) // expected-error{{out-of-line definition of 'f' does not match any declaration in 'X'}} expected-note{{candidate disabled: chosen when 'n' is two}} 44 template<typename T> void typedep(T t) __attribute__((enable_if(t, ""))); // expected-note{{candidate disabled:}} expected-error{{value of type 'Nothing' is not contextually convertible to 'bool'}} 110 int fn2(const Integer &) __attribute__((enable_if(false, ""))); // expected-note{{candidate disabled}}
|
/external/compiler-rt/lib/asan/ |
asan_activation.cc | 112 AllocatorOptions disabled = asan_deactivated_flags.allocator_options; local 113 disabled.quarantine_size_mb = 0; 114 disabled.min_redzone = 16; // Redzone must be at least 16 bytes long. 115 disabled.max_redzone = 16; 116 disabled.alloc_dealloc_mismatch = false; 117 disabled.may_return_null = true; 118 ReInitializeAllocator(disabled);
|
/external/openssh/ |
auth-shadow.c | 68 debug3("account expiration disabled"); 94 int daysleft, disabled = 0; local 111 /* Test for Trusted Mode expiry disabled */ 116 disabled = 1; 122 if (disabled) { 123 debug3("password expiration disabled"); 128 debug3("password expiration disabled");
|
/frameworks/base/core/java/android/webkit/ |
UrlInterceptRegistry.java | 48 * set the flag to control whether url intercept is enabled or disabled 50 * @param disabled true to disable the cache 57 public static synchronized void setUrlInterceptDisabled(boolean disabled) { 58 mDisabled = disabled; 62 * get the state of the url intercept, enabled or disabled 64 * @return return if it is disabled 143 * intercepts are disabled.
|
/external/clang/test/Modules/ |
autolink.m | 4 // RUN: %clang_cc1 -emit-llvm -fno-autolink -o - -fmodules-cache-path=%t -fmodules -F %S/Inputs -I %S/Inputs -include-pch %t.pch %s | FileCheck --check-prefix=CHECK-AUTOLINK-DISABLED %s 49 // CHECK-AUTOLINK-DISABLED: !llvm.module.flags 50 // CHECK-AUTOLINK-DISABLED-NOT: "Linker Options"
|