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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
attr-flag-enum-reject.cpp 3 enum __attribute__((flag_enum)) flag { // expected-warning {{ignored}} enum
  /external/clang/test/OpenMP/
cancel_codegen.cpp 9 float flag; variable
14 #pragma omp cancel parallel if(flag)
55 #pragma omp cancel for if(cancel: flag)
58 // CHECK: [[FLAG:%.+]] = load float, float* @{{.+}},
59 // CHECK: [[BOOL:%.+]] = fcmp une float [[FLAG]], 0.000000e+00
103 // CHECK: [[FLAG:%.+]] = load float, float* @{{.+}},
104 // CHECK: [[BOOL:%.+]] = fcmp une float [[FLAG]], 0.000000e+00
  /external/mesa3d/src/util/
debug.h 36 uint64_t flag; member in struct:debug_control
debug.c 32 uint64_t flag = 0; local
37 flag |= control->flag;
46 flag |= control->flag;
52 return flag;
  /prebuilts/go/darwin-x86/src/flag/
export_test.go 5 package flag package
13 // ResetForTesting clears all flag state and sets the usage function as directed.
14 // After calling ResetForTesting, parse errors in flag handling will not
  /prebuilts/go/linux-x86/src/flag/
export_test.go 5 package flag package
13 // ResetForTesting clears all flag state and sets the usage function as directed.
14 // After calling ResetForTesting, parse errors in flag handling will not
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
netutil.cc 44 unsigned long flag = blocking ? 0UL : 1UL; // NOLINT(runtime/int) local
45 int res = ioctlsocket(fd, FIONBIO, &flag);
  /external/google-breakpad/src/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...]
  /external/googletest/googletest/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/libcxx/test/std/re/re.alg/re.alg.search/
grep.pass.cpp 33 std::regex::flag_type flag = std::regex_constants::grep; local
35 std::regex re(s, flag);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
21-1.c 36 int flag; local
53 flag = MAP_SHARED;
54 while (flag == MAP_SHARED || flag == MAP_PRIVATE || flag == MAP_FIXED)
55 flag++;
57 pa = mmap(NULL, size, PROT_READ | PROT_WRITE, flag, fd, 0);
  /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...]
  /external/v8/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...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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/webrtc/webrtc/base/
platform_thread_unittest.cc 40 bool flag = false; local
41 rtc::PlatformThread thread(&SetFlagRunFunction, &flag, "RunFunctionIsCalled");
44 // At this point, the flag may be either true or false.
48 EXPECT_TRUE(flag);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug459.go 10 package flag package
  /prebuilts/go/linux-x86/test/fixedbugs/
bug459.go 10 package flag package
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.search/
grep.pass.cpp 33 std::regex::flag_type flag = std::regex_constants::grep; local
35 std::regex re(s, flag);
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/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...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/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...]
  /bionic/libc/include/
getopt.h 55 /* if not NULL, set *flag to val when option found */
56 int *flag; member in struct:option
57 /* if flag not NULL, value to set *flag to; else return value */
  /external/compiler-rt/test/lsan/TestCases/
leak_check_before_thread_started.cc 12 bool flag = false; variable
  /external/deqp/framework/opengl/
gluStrUtil.cpp 153 ContextFlags flag; member in struct:glu::__anon18168
167 if ((flags & s_descs[ndx].flag) != 0)
173 flags = flags & ~s_descs[ndx].flag;
  /external/e2fsprogs/include/nonunix/
getopt.h 72 If the field `flag' is not NULL, it points to a variable that is set
78 option's `flag' field to zero and its `val' field to a nonzero
80 one). For long options that have a zero `flag' field, `getopt'
93 int *flag; member in struct:option
  /external/e2fsprogs/lib/e2p/
pf.c 25 unsigned long flag; member in struct:flags_name
59 for (fp = flags_array; fp->flag != 0; fp++) {
60 if (flags & fp->flag) {

Completed in 532 milliseconds

1 2 3 4 5 6 7 8 91011>>