HomeSort by relevance Sort by last modified time
    Searched refs:flag (Results 1 - 25 of 1374) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/base/synchronization/
cancellation_flag_unittest.cc 27 explicit CancelTask(CancellationFlag* flag) : flag_(flag) {}
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.IsSet())
61 CancellationFlag flag; local
    [all...]
  /external/kernel-headers/original/linux/
thread_info.h 26 * flag set/clear/test wrappers
30 static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
32 set_bit(flag,&ti->flags);
35 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
37 clear_bit(flag,&ti->flags);
40 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
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)
47 return test_and_clear_bit(flag,&ti->flags);
50 static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
    [all...]
  /external/qemu/
hxtool 5 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 -eq 1 ; the
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebDynamicScrollBarsView.h 47 - (void)setAllowsHorizontalScrolling:(BOOL)flag;
51 - (void)setAllowsScrollersToOverlapContent:(BOOL)flag;
54 - (void)setAlwaysHideHorizontalScroller:(BOOL)flag;
55 - (void)setAlwaysHideVerticalScroller:(BOOL)flag;
WebPreferences.h 236 @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...]
WebPreferencesPrivate.h 61 - (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/
gtest_env_var_test_.cc 53 void PrintFlag(const char* flag) {
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, "repeat") == 0)
109 cout << "Invalid flag name " << flag local
    [all...]
gtest_env_var_test.py 64 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/
gtest_env_var_test_.cc 53 void PrintFlag(const char* flag) {
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, "repeat") == 0)
109 cout << "Invalid flag name " << flag local
    [all...]
  /external/protobuf/gtest/test/
gtest_env_var_test_.cc 53 void PrintFlag(const char* flag) {
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, "repeat") == 0)
109 cout << "Invalid flag name " << flag local
    [all...]
gtest_env_var_test.py 62 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."""
  /frameworks/base/media/libstagefright/codecs/aacdec/
dct16.h 61 void dct_16(Int32 vec[], Int flag);
check_crc.cpp 134 UInt16 flag = (UInt16)((hCrcBuf->crcState & hCrcBuf->crcMask) ? 1 : 0); local
137 flag ^= flag1;
139 if (flag)
sbr_get_additional_data.cpp 132 Int32 flag = buf_getbits(hBitBuf, 1); local
134 if (flag)
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Library.h 37 void *SEC_OSAL_dlopen(const char *filename, int flag);
SEC_OSAL_Library.c 36 void *SEC_OSAL_dlopen(const char *filename, int flag)
38 return dlopen(filename, flag);
  /external/libyuv/files/include/libyuv/
cpu_id.h 23 // Internal flag to indicate cpuid is initialized.
27 bool TestCpuFlag(int flag);
  /system/core/sh/
alias.h 43 int flag; member in struct:alias
  /bionic/libc/unistd/
siginterrupt.c 32 int siginterrupt(int sig, int flag)
38 if (flag)
  /external/clang/test/CodeGenCXX/
conditional-expr-lvalue.cpp 2 void f(bool flag) {
6 (flag ? a : b) = 3;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
myocamlbuild.ml 6 flag ["link"; "ocaml"; "g++"] (S[A"-cc"; A"g++"]);;
  /external/webkit/Tools/DumpRenderTree/
DumpRenderTreeFileDraggingSource.h 37 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag;
  /external/blktrace/btt/
args.c 37 .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 = NULL
    [all...]
  /external/chromium/testing/gmock/src/
gmock.cc 38 // 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 name, or if def_optional is false, there must be a '=' afte
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
FileUtils.java 66 public boolean hasModeFlag(int flag) {
67 return (mode & flag) == flag;

Completed in 2013 milliseconds

1 2 3 4 5 6 7 8 91011>>