Searched refs:False (Results 1 - 25 of 705) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventListenerConstants.cs43 public const int False = 0; field in class:Antlr.Runtime.Debug.DebugEventListenerConstants
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugEventListenerConstants.cs43 public const int False = 0; field in class:Antlr.Runtime.Debug.DebugEventListenerConstants
/external/valgrind/main/VEX/
H A Dtest_main.h22 #define TEST_VSUPPORT False
30 #define TEST_VSUPPORT False
/external/valgrind/main/VEX/priv/
H A Dmain_globals.c46 Bool vex_initdone = False;
62 Bool vex_valgrind_support = False;
65 VexControl vex_control = { 0,0,False,0,0,0 };
H A Dir_match.c67 if (e->tag != Iex_Unop) return False;
68 if (p->Iex.Unop.op != e->Iex.Unop.op) return False;
70 return False;
73 if (e->tag != Iex_Binop) return False;
74 if (p->Iex.Binop.op != e->Iex.Binop.op) return False;
76 return False;
78 return False;
81 if (e->tag != Iex_Load) return False;
82 if (p->Iex.Load.end != e->Iex.Load.end) return False;
83 if (p->Iex.Load.ty != e->Iex.Load.ty) return False;
[all...]
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dexpectedfailures_unittest.py51 self._assert_can_trust(None, False)
52 self._assert_can_trust(MockResults(failing_tests=[], failure_limit=None), False)
53 self._assert_can_trust(MockResults(failing_tests=[], failure_limit=10), False)
54 self._assert_can_trust(MockResults(failing_tests=[1], failure_limit=None), False)
56 self._assert_can_trust(MockResults(failing_tests=[1], failure_limit=1), False)
65 self._assert_expected(failures, ['bar.html'], False)
66 failures.shrink_expected_failures(MockResults(['baz.html']), False)
67 self._assert_expected(failures, ['foo.html'], False)
68 self._assert_expected(failures, ['baz.html'], False)
73 self._assert_expected(failures, ['baz.html'], False)
[all...]
H A Dcommitqueuetask.py71 return False
73 return False
75 return False
77 return False
90 return False
213 return False
226 return False # Tree must be redder than we expected, just retry later.
234 return False
240 return False
242 return False
[all...]
/external/valgrind/main/mpi/
H A Dmpiwrap_type_test.c19 #define False ((Bool)0) macro
281 TRY(False, MPI_FLOAT_INT, "FLOAT_INT");
282 TRY(False, MPI_DOUBLE_INT, "DOUBLE_INT");
283 TRY(False, MPI_LONG_INT, "LONG_INT");
284 TRY(False, MPI_SHORT_INT, "SHORT_INT");
285 TRY(False, MPI_2INT, "2INT");
286 TRY(False, MPI_LONG_DOUBLE_INT, "LONG_DOUBLE_INT");
291 TRY(False, MPI_REAL8, "REAL8");
294 TRY(False, MPI_REAL4, "REAL4");
297 TRY(False, MPI_INTEGER
[all...]
/external/llvm/utils/
H A Dclang-parse-diagnostics-file13 default=False, help="dump all messages.")
15 default=False, help="dump 'error' messages.")
17 default=False, help="dump 'fatal error' messages.")
19 default=False, help="dump 'ignored' messages.")
21 default=False, help="dump 'note' messages.")
23 default=False, help="dump 'warning' messages.")
29 levels = {'error': False, 'fatal error': False, 'ignored': False,
30 'note': False, 'warnin
[all...]
/external/valgrind/main/helgrind/
H A Dhg_lock_n_thread.c58 if (count < 1) return False;
59 if (!HG_(is_sane_Thread)(thr)) return False;
69 return False;
72 default: return False;
75 if (lock->acquired_at != NULL) return False;
76 /* Unheld. We arbitrarily require heldW to be False. */
79 if (lock->acquired_at == NULL) return False;
85 return False;
89 return False;
94 return False;
[all...]
/external/valgrind/main/tests/
H A Dos_test.c19 #define False 0 macro
38 if (fp == NULL || fscanf(fp, "%d.%d.%d", &a1, &a2, &a3) != 3) return False;
42 if (sscanf(min_version, "%d.%d.%d", &g1, &g2, &g3) != 3) return False;
48 if (a1 < g1) return False;
50 if (a2 < g2) return False;
53 return False;
69 return False;
/external/valgrind/main/coregrind/m_initimg/
H A Dinitimg-pathscan.c61 This routine will return True if (*func) returns True and False if
71 return False;
92 return False;
111 return False;
116 if (VG_(access)(buf, True/*r*/, False/*w*/, True/*x*/) == 0) {
120 } else if (VG_(access)(buf, True/*r*/, False/*w*/, False/*x*/) == 0
125 return False; // Keep looking
127 return False; // Keep looking
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py33 build = make_option("--build", action="store_true", dest="build", default=False, help="Build and run run-webkit-tests before committing.")
45 force_clean = make_option("--force-clean", action="store_true", dest="force_clean", default=False, help="Clean working directory before applying patches (removes local changes and commits)")
46 force_patch = make_option("--force-patch", action="store_true", dest="force_patch", default=False, help="Forcefully applies the patch, continuing past errors.")
48 local_commit = make_option("--local-commit", action="store_true", dest="local_commit", default=False, help="Make a local commit for each applied patch")
49 non_interactive = make_option("--non-interactive", action="store_true", dest="non_interactive", default=False, help="Never prompt the user, fail as fast as possible.")
51 open_bug = make_option("--open-bug", action="store_true", dest="open_bug", default=False, help="Opens the associated bug in a browser.")
53 quiet = make_option("--quiet", action="store_true", dest="quiet", default=False, help="Produce less console output.")
54 request_commit = make_option("--request-commit", action="store_true", dest="request_commit", default=False, help="Mark the patch as needing auto-commit after review.")
57 suggest_reviewers = make_option("--suggest-reviewers", action="store_true", default=False, help="Offer to CC appropriate reviewers.")
58 test = make_option("--test", action="store_true", dest="test", default=False, hel
[all...]
/external/chromium-trace/trace-viewer/examples/stream_server/handlers/
H A Dstream_wsh.py19 if last == False:
27 out.append(make_slice(base_time, 4, "alligator", False))
28 out.append(make_slice(base_time+2, 1, "bandicoot", False))
54 if last == False:
64 out.append(make_count(base_time, 16, False))
65 out.append(make_count(base_time+1, 32, False))
66 out.append(make_count(base_time+2, 48, False))
67 out.append(make_count(base_time+3, 64, False))
92 request.ws_stream.send_message(msg, binary=False)
94 request.ws_stream.send_message(msg, binary=False)
[all...]
/external/valgrind/main/coregrind/
H A Dm_options.c54 Bool VG_(clo_vgdb_shadow_registers) = False;
56 Bool VG_(clo_db_attach) = False;
61 Bool VG_(clo_stats) = False;
62 Bool VG_(clo_xml) = False;
65 Bool VG_(clo_trace_children) = False;
68 Bool VG_(clo_child_silent_after_fork) = False;
71 Bool VG_(clo_time_stamp) = False;
80 Bool VG_(clo_trace_syscalls) = False;
81 Bool VG_(clo_trace_signals) = False;
82 Bool VG_(clo_trace_symtab) = False;
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_handshake.py57 validate_subprotocol('sample', hixie=False)
58 validate_subprotocol('Sample', hixie=False)
59 validate_subprotocol('sample\x7eprotocol', hixie=False)
82 hixie=False)
86 hixie=False)
90 hixie=False)
94 hixie=False)
98 hixie=False)
103 hixie=False)
161 allow_quoted_string=False))
[all...]
/external/v8/tools/
H A Dprocess-heap-prof.py53 sampling = False
74 sampling = False
91 default=False, action="store_true")
93 default=False, action="store_true")
95 default=False, action="store_true")
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive_mock.py54 def run_command(self, arg_list, error_handler=None, return_exit_code=False,
55 decode_output=False, return_stderr=False):
/external/llvm/utils/lit/lit/
H A DShUtil.py7 def __init__(self, data, win32Escapes = False):
28 return False
169 def __init__(self, data, win32Escapes = False):
221 negate = False
290 Pipeline([Command(['echo', 'hello'], [])], False))
292 Pipeline([Command(['echo', ''], [])], False))
294 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
296 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
301 [((('>'),), 'c')])], False))
304 (('>>',), 'd')])], False))
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dscript.c51 if (len < 4) return False;
52 if (0 != VG_(memcmp)(hdr, "#!", 2)) return False;
60 if (interp >= end) return False; // can't find start of interp name
63 if (*interp != '/') return False; // absolute path only for interpreter
67 if (interp >= end) return False;
68 if (VG_(isspace)(*interp)) return False;
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derroroutput.py25 def GetUnixErrorOutput(filename, error, new_error=False):
39 def GetErrorOutput(error, new_error=False):
/external/valgrind/unittest/
H A Dmatch_output.py13 match = False
23 return False
/external/srec/srec/ca/
H A Drec_basi.c61 hRecog->is_running = False;
62 hRecog->is_configured = False;
63 hRecog->is_resultBlocked = False;
116 if (hRecog->is_configured == False)
124 hRecog->is_configured = False;
165 if (hRecog->is_configured == False)
186 if (hRecog->is_running == False)
188 if (hPattern->is_loaded == False)
213 if (hRecog->is_running == False)
215 if (hPattern->is_loaded == False)
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_wsh.py47 request.ws_stream.send_message(line, binary=False)
/external/llvm/bindings/python/llvm/tests/
H A Dbase.py32 get_test_binary.__test__ = False

Completed in 521 milliseconds

1234567891011>>