Searched refs:suppress (Results 1 - 25 of 82) sorted by relevance

1234

/external/chromium_org/base/debug/
H A Ddebugger.cc32 void SetSuppressDebugUI(bool suppress) { argument
33 is_debug_ui_suppressed = suppress;
H A Ddebugger.h38 BASE_EXPORT void SetSuppressDebugUI(bool suppress);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformExport.h63 #pragma warning(suppress:4275)
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcexport.h42 #define MSVC_SUPPRESS_WARNING(n) __pragma(warning(suppress:n))
45 // This uses suppress instead of push/pop because the delimiter after the
/external/kernel-headers/original/uapi/linux/
H A Digmp.h69 suppress:1, member in struct:igmpv3_query
73 suppress:1, member in struct:igmpv3_query
/external/e2fsprogs/debugfs/
H A Dzap.c178 int suppress = -1; local
232 if (suppress < 0) {
234 suppress = i;
239 if (memcmp(buf + i, buf + suppress, 16) == 0)
241 suppress = -1;
/external/clang/test/Lexer/
H A Dpragma-operators.cpp39 #pragma warning(disable : 1 2L 3U ; error : 4 5 6 ; suppress : 7 8 9)
44 // CHECK: #pragma warning(suppress: 7 8 9)
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dapps_page.css15 .app-contents:active:not(.suppress-active),
16 .app:not(.click-focus):focus .app-contents:not(.suppress-active),
22 .app-contents:active:not(.suppress-active),
23 /* Active gets applied right before .suppress-active, so to avoid flicker
25 .app-contents.suppress-active {
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dexpandable_bubble.js86 * the bubble should not be visible, but when you 'un-suppress' a bubble,
93 set suppressed(suppress) {
94 if (suppress) {
95 // If the bubble is already hidden, then we don't need to suppress it.
103 this.bubbleSuppressed = suppress;
/external/clang/test/CodeGenCXX/
H A Dexceptions.cpp431 extern bool suppress;
449 C::~C() try { cleanup(); } catch (...) { if (suppress) return; }
/external/chromium_org/third_party/libjpeg_turbo/
H A Djcapimin.c119 * Forcibly suppress or un-suppress all quantization and Huffman tables.
120 * Marks all currently defined tables as already written (if suppress)
121 * or not written (if !suppress). This will control whether they get emitted
131 jpeg_suppress_tables (j_compress_ptr cinfo, boolean suppress) argument
139 qtbl->sent_table = suppress;
144 htbl->sent_table = suppress;
146 htbl->sent_table = suppress;
/external/clang/test/Preprocessor/
H A Dpragma_microsoft.c97 #pragma warning(suppress : 321)
106 #pragma warning( // expected-warning {{expected 'push', 'pop', 'default', 'disable', 'error', 'once', 'suppress', 1, 2, 3, or 4}}
107 #pragma warning() // expected-warning {{expected 'push', 'pop', 'default', 'disable', 'error', 'once', 'suppress', 1, 2, 3, or 4}}
/external/jpeg/
H A Djcapimin.c107 * Forcibly suppress or un-suppress all quantization and Huffman tables.
108 * Marks all currently defined tables as already written (if suppress)
109 * or not written (if !suppress). This will control whether they get emitted
119 jpeg_suppress_tables (j_compress_ptr cinfo, boolean suppress) argument
127 qtbl->sent_table = suppress;
132 htbl->sent_table = suppress;
134 htbl->sent_table = suppress;
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcapimin.c108 * Forcibly suppress or un-suppress all quantization and Huffman tables.
109 * Marks all currently defined tables as already written (if suppress)
110 * or not written (if !suppress). This will control whether they get emitted
120 jpeg_suppress_tables (j_compress_ptr cinfo, boolean suppress) argument
128 qtbl->sent_table = suppress;
133 htbl->sent_table = suppress;
135 htbl->sent_table = suppress;
/external/qemu/distrib/jpeg-6b/
H A Djcapimin.c107 * Forcibly suppress or un-suppress all quantization and Huffman tables.
108 * Marks all currently defined tables as already written (if suppress)
109 * or not written (if !suppress). This will control whether they get emitted
119 jpeg_suppress_tables (j_compress_ptr cinfo, boolean suppress) argument
127 qtbl->sent_table = suppress;
132 htbl->sent_table = suppress;
134 htbl->sent_table = suppress;
/external/chromium_org/chrome/browser/
H A Dbrowser_keyevents_browsertest.cc146 // Set the suppress flag of an event specified by |type|. If |suppress| is
147 // true then the web page will suppress all events with |type|. Following
149 void SuppressEventByType(int tab_index, const wchar_t* type, bool suppress) { argument
154 base::StringPrintf(kSuppressEventJS, type, GetBoolString(!suppress)),
156 ASSERT_EQ(!suppress, actual);
171 void SuppressAllEvents(int tab_index, bool suppress) { argument
172 SuppressEvents(tab_index, suppress, suppress, suppress, suppres
[all...]
/external/chromium_org/base/
H A Dcompiler_specific.h25 #define MSVC_SUPPRESS_WARNING(n) __pragma(warning(suppress:n))
44 // This uses suppress instead of push/pop because the delimiter after the
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
H A DModalDialogTest.java246 // Show it again, it should have the option to suppress subsequent dialogs.
254 final CheckBox suppress = (CheckBox) dialog.findViewById(
256 if (suppress == null) return "Suppress checkbox not found.";
257 if (suppress.getVisibility() != View.VISIBLE) {
260 suppress.setChecked(true);
/external/elfutils/0.153/libdw/
H A DAndroid.mk152 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
179 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
/external/elfutils/0.153/libdwfl/
H A DAndroid.mk63 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
103 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
/external/elfutils/0.153/libelf/
H A DAndroid.mk150 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
184 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc181 bool suppress = false; local
186 suppress = log_silencer_count_ > 0;
189 if (!suppress) {
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc181 bool suppress = false; local
186 suppress = internal::log_silencer_count_ > 0;
189 if (!suppress) {
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_string.c756 SDL_bool suppress = SDL_FALSE; local
768 suppress = SDL_TRUE;
777 if ( suppress ) {
799 suppress = SDL_TRUE;
837 if ( ! suppress ) {
848 if ( ! suppress ) {
890 if ( ! suppress ) {
901 if ( ! suppress ) {
931 if ( ! suppress ) {
943 if ( ! suppress ) {
[all...]
/external/e2fsprogs/e2fsck/
H A Dproblem.c1829 int suppress = 0; local
1885 suppress++;
1889 suppress++;
1892 suppress++;
1895 suppress++;
1898 suppress++;
1901 suppress++;
1911 if (!suppress) {
1955 if (!suppress)

Completed in 496 milliseconds

1234