HomeSort by relevance Sort by last modified time
    Searched refs:flag (Results 76 - 100 of 2602) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/u-boot/cmd/
irq.c 10 static int do_interrupts(cmd_tbl_t *cmdtp, int flag, int argc,
33 int do_irqinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
mac.c 10 extern int do_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
tpm-user-utils.h 20 int do_tpm_init(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
21 int do_tpm_info(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]);
22 int do_tpm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
  /development/tools/repo_diff/service/repodiff/
commandline.go 4 "flag"
7 var optionDiff = flag.Bool("execute-diff", true, "Specifies if a new (expensive) differential should be run")
8 var optionDenorm = flag.Bool("denormalize-data", true, "Specifies if existing historical data should be denormalized into viewable tables in DataStudio")
9 var optionReport = flag.Bool("generate-report", true, "Specifies if denormalized tables should be exported to the output directory as CSV's")
26 flag.Parse()
  /external/googletest/googlemock/src/
gmock.cc 56 // Parses a string as a command line flag. The string should have the
60 // Returns the value of the flag, or NULL if the parsing failed.
62 const char* flag,
64 // str and flag must not be NULL.
65 if (str == nullptr || flag == nullptr) return nullptr;
67 // The flag must start with "--gmock_".
68 const std::string flag_str = std::string("--gmock_") + flag;
72 // Skips the flag name.
81 // flag name, or if def_optional is false, there must be a '=' after
82 // the flag name
    [all...]
  /external/libvpx/
lint_config.sh 25 while getopts "h:a:o:p" flag
27 if [ "$flag" = "h" ]; then
29 elif [ "$flag" = "a" ]; then
31 elif [ "$flag" = "o" ]; then
33 elif [ "$flag" = "p" ]; then
  /external/libaom/libaom/build/cmake/
compiler_flags.cmake 27 # Sets variable named by $out_is_present to YES in the caller's scope when $flag
30 function(is_flag_present flag_cache flag out_is_present)
31 string(FIND "${${flag_cache}}" "${flag}" flag_pos)
39 # Appends $flag to $flags. Ignores scope via use of FORCE with set() call.
40 function(append_flag flags flag)
41 string(FIND "${${flags}}" "${flag}" found)
43 set(${flags} "${${flags}} ${flag}" CACHE STRING "" FORCE)
63 message("Checking C compiler flag support for: " ${c_flag})
93 message("Checking C++ compiler flag support for: " ${cxx_flag})
107 # Convenience method for adding a flag to both the C and C++ compiler comman
    [all...]
  /external/gflags/src/
gflags_reporting.cc 48 // called after all flag-values have been assigned, that is, after
68 DEFINE_string(helpon, "", "show help on the modules named by this flag value");
85 // Routines that pretty-print info about a flag. These use
87 // API exposes static info about a flag.
106 static string PrintStringFlagsWithQuotes(const CommandLineFlagInfo& flag,
108 const char* c_string = (current ? flag.current_value.c_str() :
109 flag.default_value.c_str());
110 if (strcmp(flag.type.c_str(), "string") == 0) { // add quotes for strings
117 // Create a descriptive string for a flag.
119 string DescribeOneFlag(const CommandLineFlagInfo& flag) {
    [all...]
  /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/libchrome/base/task/
cancelable_task_tracker.cc 24 void RunIfNotCanceled(const CancellationFlag* flag, OnceClosure task) {
25 if (!flag->IsSet())
29 void RunIfNotCanceledThenUntrack(const CancellationFlag* flag,
32 RunIfNotCanceled(flag, std::move(task));
36 bool IsCanceled(const CancellationFlag* flag,
38 return flag->IsSet();
41 void RunAndDeleteFlag(OnceClosure closure, const CancellationFlag* flag) {
43 delete flag;
87 CancellationFlag* flag = new CancellationFlag(); local
95 from_here, BindOnce(&RunIfNotCanceled, flag, std::move(task))
115 CancellationFlag* flag = new CancellationFlag(); local
    [all...]
  /external/v8/src/base/
flags.h 31 constexpr Flags(flag_type flag) // NOLINT(runtime/explicit)
32 : mask_(static_cast<S>(flag)) {}
35 constexpr bool operator==(flag_type flag) const {
36 return mask_ == static_cast<S>(flag);
38 constexpr bool operator!=(flag_type flag) const {
39 return mask_ != static_cast<S>(flag);
65 Flags& operator&=(flag_type flag) { return operator&=(Flags(flag)); }
66 Flags& operator|=(flag_type flag) { return operator|=(Flags(flag)); }
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/templates/
softfloat.h 160 !!!flag float32_eq( float32, float32 );
161 !!!flag float32_le( float32, float32 );
162 !!!flag float32_lt( float32, float32 );
163 !!!flag float32_eq_signaling( float32, float32 );
164 !!!flag float32_le_quiet( float32, float32 );
165 !!!flag float32_lt_quiet( float32, float32 );
166 !!!flag float32_is_signaling_nan( float32 );
197 !!!flag float64_eq( float64, float64 );
198 !!!flag float64_le( float64, float64 );
199 !!!flag float64_lt( float64, float64 );
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest_env_var_test.py 64 def GetFlag(flag):
68 if flag is not None:
69 args += [flag]
74 def TestFlag(flag, test_val, default_val):
75 """Verifies that the given flag is affected by the corresponding env var."""
77 env_var = 'GTEST_' + flag.upper()
79 AssertEq(test_val, GetFlag(flag))
81 AssertEq(default_val, GetFlag(flag))
86 """Tests that environment variable should affect the corresponding flag."""
  /external/google-breakpad/src/testing/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...]
  /external/googletest/googletest/test/
googletest-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))
84 """Tests that environment variable should affect the corresponding flag."""
103 """Tests that $XML_OUTPUT_FILE affects the output flag.""
    [all...]
  /external/ltp/testcases/kernel/syscalls/statx/
statx03.c 22 * Error scenario is simulated for each listed flag by passing
24 * The obtained error flag is checked against the expected
25 * flag value for that scenario.
51 uint32_t flag; member in struct:test_case
55 {.dfd = -1, .filename = &test_fname, .flag = 0,
58 {.dfd = AT_FDCWD, .filename = &efault_fname, .flag = 0,
61 {.dfd = AT_FDCWD, .filename = &test_fname, .flag = -1,
64 {.dfd = AT_FDCWD, .filename = &test_fname, .flag = 0,
67 {.dfd = AT_FDCWD, .filename = &empty_fname, .flag = 0,
70 {.dfd = 1, .filename = &test_fname, .flag = 0
    [all...]
  /external/deqp/framework/delibs/debase/
deMath.c 70 unsigned int flag = 0; local
76 case DE_ROUNDINGMODE_TO_ZERO: flag = _RC_CHOP; break;
77 case DE_ROUNDINGMODE_TO_POSITIVE_INF: flag = _RC_UP; break;
78 case DE_ROUNDINGMODE_TO_NEGATIVE_INF: flag = _RC_DOWN; break;
79 case DE_ROUNDINGMODE_TO_NEAREST_EVEN: flag = _RC_NEAR; break;
84 ret = _controlfp_s(&oldState, flag, _MCW_RC);
87 int flag = 0;
92 case DE_ROUNDINGMODE_TO_ZERO: flag = FE_TOWARDZERO; break;
93 case DE_ROUNDINGMODE_TO_POSITIVE_INF: flag = FE_UPWARD; break;
94 case DE_ROUNDINGMODE_TO_NEGATIVE_INF: flag = FE_DOWNWARD; break
    [all...]
  /external/ltp/testcases/kernel/syscalls/modify_ldt/
modify_ldt01.c 101 int flag; local
119 flag = 0;
128 flag = FAILED;
133 flag = FAILED;
136 if (flag) {
149 flag = 0;
159 flag = FAILED;
164 flag = FAILED;
167 if (flag) {
194 flag = FAILED
    [all...]
  /external/tcpdump/
send-ack.awk 22 # 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/v8/
.ycm_extra_conf.py 155 for flag in clang_line.split(' '):
156 if flag.startswith('-I'):
159 if flag[2] == '/':
160 v8_flags.append(flag)
162 abs_path = os.path.normpath(os.path.join(out_dir, flag[2:]))
164 elif flag.startswith('-std'):
165 v8_flags.append(flag)
166 elif flag.startswith('-') and flag[1] in 'DWFfmO':
167 if flag == '-Wno-deprecated-register' or flag == '-Wno-header-guard'
    [all...]
  /external/tensorflow/tensorflow/core/util/
command_line_flags.cc 30 bool ParseStringFlag(tensorflow::StringPiece arg, tensorflow::StringPiece flag,
35 str_util::ConsumePrefix(&arg, flag) &&
44 bool ParseInt32Flag(tensorflow::StringPiece arg, tensorflow::StringPiece flag,
49 str_util::ConsumePrefix(&arg, flag) &&
54 LOG(ERROR) << "Couldn't interpret value " << arg << " for flag " << flag local
66 bool ParseInt64Flag(tensorflow::StringPiece arg, tensorflow::StringPiece flag,
71 str_util::ConsumePrefix(&arg, flag) &&
76 LOG(ERROR) << "Couldn't interpret value " << arg << " for flag " << flag local
106 LOG(ERROR) << "Couldn't interpret value " << arg << " for flag " << flag local
126 LOG(ERROR) << "Couldn't interpret value " << arg << " for flag " << flag local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
anydbm.py 16 the create or new flag ('c' or 'n') was specified, the dbm type will
28 flag = key in d # true if the key exists
57 def open(file, flag='r', mode=0666):
60 Optional argument *flag* can be 'r' (default) for read-only access, 'w'
74 if 'c' in flag or 'n' in flag:
76 # flag was used so use default type
79 raise error, "need 'c' or 'n' flag to open new db"
85 return mod.open(file, flag, mode)
  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpgfpcmpelem.c 97 int flag = cpGFpElementCmp(GFPE_DATA(pA), GFPE_DATA(pB), GFP_FELEN(pGFE)); local
99 *pResult = (0==flag)? IPP_IS_EQ : (0<flag)? IPP_IS_GT : IPP_IS_LT;
101 *pResult = (0==flag)? IPP_IS_EQ : IPP_IS_NE;
  /external/ltp/testcases/realtime/func/pi-tests/
parse-testpi1.py 40 flag=False
45 flag=True
47 flag=False
49 return flag
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_debug.h 58 #define DBG_ENABLED(flag) unlikely(etna_mesa_debug & (flag))
60 #define DBG_F(flag, fmt, ...) \
62 if (etna_mesa_debug & (flag)) \

Completed in 1270 milliseconds

1 2 34 5 6 7 8 91011>>