Searched refs:flag (Results 1 - 25 of 790) sorted by relevance

1234567891011>>

/external/chromium/base/synchronization/
H A Dcancellation_flag_unittest.cc27 explicit CancelTask(CancellationFlag* flag) : flag_(flag) {} argument
36 CancellationFlag flag; local
37 ASSERT_FALSE(flag.IsSet());
38 flag.Set();
39 ASSERT_TRUE(flag.IsSet());
43 CancellationFlag flag; local
44 ASSERT_FALSE(flag.IsSet());
45 flag.Set();
46 ASSERT_TRUE(flag
61 CancellationFlag flag; local
[all...]
/external/kernel-headers/original/linux/
H A Dthread_info.h26 * flag set/clear/test wrappers
30 static inline void set_ti_thread_flag(struct thread_info *ti, int flag) argument
32 set_bit(flag,&ti->flags);
35 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) argument
37 clear_bit(flag,&ti->flags);
40 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) argument
42 return test_and_set_bit(flag,&ti->flags);
45 static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag) argument
47 return test_and_clear_bit(flag,&ti->flags);
50 static inline int test_ti_thread_flag(struct thread_info *ti, int flag) argument
[all...]
/external/qemu/
H A Dhxtool5 flag=1
10 STEXI*|ETEXI*|SQMP*|EQMP*) flag=$(($flag^1))
13 test $flag -eq 1 && printf "%s\n" "$str"
21 flag=0
28 if test $flag -eq 1 ; then
32 flag=1
35 if test $flag -ne 1 ; then
39 flag=0
42 if test $flag
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDynamicScrollBarsView.h47 - (void)setAllowsHorizontalScrolling:(BOOL)flag;
51 - (void)setAllowsScrollersToOverlapContent:(BOOL)flag;
54 - (void)setAlwaysHideHorizontalScroller:(BOOL)flag;
55 - (void)setAlwaysHideVerticalScroller:(BOOL)flag;
H A DWebPreferences.h236 @param flag
238 - (void)setUserStyleSheetEnabled:(BOOL)flag;
259 @param flag
261 - (void)setJavaEnabled:(BOOL)flag;
270 @param flag
272 - (void)setJavaScriptEnabled:(BOOL)flag;
281 @param flag
283 - (void)setJavaScriptCanOpenWindowsAutomatically:(BOOL)flag;
292 @param flag
294 - (void)setPlugInsEnabled:(BOOL)flag;
[all...]
H A DWebPreferencesPrivate.h61 - (void)setDNSPrefetchingEnabled:(BOOL)flag;
64 - (void)setDeveloperExtrasEnabled:(BOOL)flag;
67 - (void)setAuthorAndUserStylesEnabled:(BOOL)flag;
70 - (void)setApplicationChromeModeEnabled:(BOOL)flag;
73 - (void)setUsesEncodingDetector:(BOOL)flag;
76 - (void)setRespectStandardStyleKeyEquivalents:(BOOL)flag;
79 - (void)setShowsURLsInToolTips:(BOOL)flag;
82 - (void)setTextAreasAreResizable:(BOOL)flag;
88 - (void)setShrinksStandaloneImagesToFit:(BOOL)flag;
109 - (void)setWebSecurityEnabled:(BOOL)flag;
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest_env_var_test_.cc53 void PrintFlag(const char* flag) { argument
54 if (strcmp(flag, "break_on_failure") == 0) {
59 if (strcmp(flag, "catch_exceptions") == 0) {
64 if (strcmp(flag, "color") == 0) {
69 if (strcmp(flag, "death_test_style") == 0) {
74 if (strcmp(flag, "death_test_use_fork") == 0) {
79 if (strcmp(flag, "filter") == 0) {
84 if (strcmp(flag, "output") == 0) {
89 if (strcmp(flag, "print_time") == 0) {
94 if (strcmp(flag, "repea
109 cout << "Invalid flag name " << flag local
[all...]
H A Dgtest_env_var_test.py64 def GetFlag(flag):
68 if flag is not None:
69 args += [flag]
73 def TestFlag(flag, test_val, default_val):
74 """Verifies that the given flag is affected by the corresponding env var."""
76 env_var = 'GTEST_' + flag.upper()
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
85 """Tests that environment variable should affect the corresponding flag."""
/external/gtest/test/
H A Dgtest_env_var_test_.cc53 void PrintFlag(const char* flag) { argument
54 if (strcmp(flag, "break_on_failure") == 0) {
59 if (strcmp(flag, "catch_exceptions") == 0) {
64 if (strcmp(flag, "color") == 0) {
69 if (strcmp(flag, "death_test_style") == 0) {
74 if (strcmp(flag, "death_test_use_fork") == 0) {
79 if (strcmp(flag, "filter") == 0) {
84 if (strcmp(flag, "output") == 0) {
89 if (strcmp(flag, "print_time") == 0) {
94 if (strcmp(flag, "repea
109 cout << "Invalid flag name " << flag local
[all...]
H A Dgtest_env_var_test.py74 def GetFlag(command, flag):
78 if flag is not None:
79 cmd += ' %s' % (flag,)
87 def TestFlag(command, flag, test_val, default_val):
88 """Verifies that the given flag is affected by the corresponding env var."""
90 env_var = 'GTEST_' + flag.upper()
92 AssertEq(test_val, GetFlag(command, flag))
94 AssertEq(default_val, GetFlag(command, flag))
98 """An environment variable should affect the corresponding flag."""
/external/protobuf/gtest/test/
H A Dgtest_env_var_test_.cc53 void PrintFlag(const char* flag) { argument
54 if (strcmp(flag, "break_on_failure") == 0) {
59 if (strcmp(flag, "catch_exceptions") == 0) {
64 if (strcmp(flag, "color") == 0) {
69 if (strcmp(flag, "death_test_style") == 0) {
74 if (strcmp(flag, "death_test_use_fork") == 0) {
79 if (strcmp(flag, "filter") == 0) {
84 if (strcmp(flag, "output") == 0) {
89 if (strcmp(flag, "print_time") == 0) {
94 if (strcmp(flag, "repea
109 cout << "Invalid flag name " << flag local
[all...]
H A Dgtest_env_var_test.py62 def GetFlag(flag):
66 if flag is not None:
67 args += [flag]
71 def TestFlag(flag, test_val, default_val):
72 """Verifies that the given flag is affected by the corresponding env var."""
74 env_var = 'GTEST_' + flag.upper()
76 AssertEq(test_val, GetFlag(flag))
78 AssertEq(default_val, GetFlag(flag))
83 """Tests that environment variable should affect the corresponding flag."""
/external/libyuv/files/include/libyuv/
H A Dcpu_id.h23 // Internal flag to indicate cpuid is initialized.
27 bool TestCpuFlag(int flag);
/external/clang/test/CodeGenCXX/
H A Dconditional-expr-lvalue.cpp2 void f(bool flag) { argument
6 (flag ? a : b) = 3;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dmyocamlbuild.ml6 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"]);;
/external/webkit/Tools/DumpRenderTree/
H A DDumpRenderTreeFileDraggingSource.h37 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag;
/external/blktrace/btt/
H A Dargs.c37 .flag = NULL,
43 .flag = NULL,
49 .flag = NULL,
55 .flag = NULL,
61 .flag = NULL,
67 .flag = NULL,
73 .flag = NULL,
79 .flag = NULL,
85 .flag = NULL,
91 .flag
[all...]
/external/chromium/testing/gmock/src/
H A Dgmock.cc38 // control the flag values, like what Google Test does.
53 // Parses a string as a command line flag. The string should have the
57 // Returns the value of the flag, or NULL if the parsing failed.
59 const char* flag,
61 // str and flag must not be NULL.
62 if (str == NULL || flag == NULL) return NULL;
64 // The flag must start with "--gmock_".
65 const String flag_str = String::Format("--gmock_%s", flag);
69 // Skips the flag name.
78 // flag nam
58 ParseGoogleMockFlagValue(const char* str, const char* flag, bool def_optional) argument
91 ParseGoogleMockBoolFlag(const char* str, const char* flag, bool* value) argument
109 ParseGoogleMockStringFlag(const char* str, const char* flag, String* value) argument
[all...]
/external/kernel-headers/original/linux/nfsd/
H A Ddebug.h42 # define ifdebug(flag) if (nfsd_debug & NFSDDBG_##flag)
44 # define ifdebug(flag) if (0)
/external/tcpdump/
H A Dsend-ack.awk22 # detect and add a flag character for 'anomalies':
36 flag = "*"
39 flag = "-"
41 flag = "#"
43 flag = " "
47 flag, $5, strtSeq
57 flag, $5, id
/external/chromium/sdch/open-vcdiff/src/
H A Dgflags_reporting.cc48 // called after all flag-values have been assigned, that is, after
74 "show help on the modules named by this flag value");
91 // Routines that pretty-print info about a flag. These use
93 // API exposes static info about a flag.
112 // Create a descriptive string for a flag.
114 string DescribeOneFlag(const CommandLineFlagInfo& flag) { argument
115 string main_part = (string(" -") + flag.name +
116 " (" + flag.description + ')');
161 AddString(string("type: ") + flag.type, &final_string, &chars_in_line);
162 // Append the effective default value (i.e., the value that the flag
205 DescribeOneFlagInXML(const CommandLineFlagInfo& flag) argument
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebFrameView.idl66 @param flag YES to allow the document to be scrolled, NO to disallow scrolling
67 - (void)setAllowsScrolling:(BOOL)flag;
69 HRESULT setAllowsScrolling([in] BOOL flag);
77 HRESULT allowsScrolling([out, retval] BOOL* flag);
/external/clang/test/Preprocessor/
H A Dwarning_tests.c16 #if __has_warning("-Wnot-a-valid-warning-flag-at-all")
18 #warning Not a valid warning flag // expected-warning {{Not a valid warning flag}}
/external/clang/test/SemaCXX/
H A Duninit-variables.cpp38 const bool flag = true; local
39 if (flag && (x = test3_aux()) == 0) {
46 const bool flag = true; local
47 if (flag && (x = test3_aux()) == 0) {
54 const bool flag = false; local
55 if (flag && (x = test3_aux()) == 0) {
/external/kernel-headers/original/linux/netfilter/
H A Dxt_sctp.h15 u_int8_t flag; member in struct:xt_sctp_flag_info
83 int flag = 1; \
86 flag = 0; \
90 flag; \
96 int flag = 1; \
99 flag = 0; \
103 flag; \

Completed in 2023 milliseconds

1234567891011>>