Searched refs:True (Results 176 - 200 of 793) sorted by relevance

1234567891011>>

/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dfeeders_unittest.py64 attachment3 = self._mock_attachment(is_rollout=True, attach_date=recent_date)
65 attachment4 = self._mock_attachment(is_rollout=True, attach_date=long_ago_date)
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Ddownload.py53 options.force_clean = True
75 options.build = True
93 show_in_main_help = True
243 show_in_main_help = True
250 show_in_main_help = True
283 show_in_main_help = True
290 show_in_main_help = True
389 show_in_main_help = True
H A Dsheriffbot.py77 return True
95 return True
/external/clang/docs/tools/
H A Ddump_ast_matchers.py46 doxygen_probes[url] = True
72 while True:
145 comment, is_dyncast=True)
156 comment, is_dyncast=True)
158 comment, is_dyncast=True)
244 # body = True: We parse the definition of a matcher. We need
275 body = True
/external/markdown/
H A Dtest-markdown.py14 WRITE_BENCHMARK = True
16 ACTUALLY_MEASURE_MEMORY = True
274 context=True)
317 tester.test_directory("tests/markdown-test", measure_time=True)
318 tester.test_directory("tests/misc", measure_time=True)
322 tester.test_directory("tests/safe_mode", measure_time=True, safe_mode="escape")
/external/regex-re2/lib/codereview/
H A Dcodereview.py172 while True:
183 t.setDaemon(True) # allowed to exit if t is still running
244 s += "Private: True\n"
282 self.Upload(ui, repo, gofmt_just_warn=True, creating=True)
309 def Upload(self, ui, repo, send_mail=False, gofmt=True, gofmt_just_warn=False, creating=False, quiet=False):
312 if ui.configbool("codereview", "force_gofmt", True) and gofmt:
381 self.web = True
399 self.mailed = True
465 cl.mailed = True
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetPreview.py60 return True
71 return True
81 return True
90 if self.SetMuteFlag(trackNum, True):
148 self.SetKeepPlayingFlag(True)
194 self.paused = True
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c128 return True;
133 return True;
170 ML_(symerr)(di, True, "Can't stat image (to determine its size)?!");
177 ML_(symerr)(di, True, "Can't open image to read symbols?!");
184 ML_(symerr)(di, True, "Can't mmap image to read symbols?!");
207 ML_(symerr)(di, True, "Invalid Mach-O file (0 too small).");
222 ML_(symerr)(di, True, "Invalid Mach-O file (1 too small).");
246 ML_(symerr)(di, True, "Invalid Mach-O file (2 too small).");
255 ML_(symerr)(di, True,
267 ML_(symerr)(di, True, "Invali
[all...]
H A Dreadelf.c139 return True;
238 *is_text_out = True;
307 *is_text_out = True;
346 *is_text_out = True;
354 *is_ifunc = True;
370 plausible = True;
499 *from_opd_out = True;
500 is_in_opd = True;
607 return True;
765 show_raw_elf_symbol(i, sym, sym_name, sym_svma, True);
[all...]
H A Dreaddwarf3.c181 return True;
356 *is64 = True;
440 /* True if this came from .debug_types; otherwise it came from
453 /* True if this came from alternate .debug_info; otherwise
498 *alt_flag = True;
501 *type_flag = True;
562 while (True) {
649 while (True) {
821 while (True) {
983 while (True) {
[all...]
H A Dd3basics.c400 if (regno == 5/*EBP*/) { *a = regs->fp; return True; }
401 if (regno == 4/*ESP*/) { *a = regs->sp; return True; }
403 if (regno == 6/*RBP*/) { *a = regs->fp; return True; }
404 if (regno == 7/*RSP*/) { *a = regs->sp; return True; }
406 if (regno == 1/*SP*/) { *a = regs->sp; return True; }
408 if (regno == 1/*SP*/) { *a = regs->sp; return True; }
410 if (regno == 13) { *a = regs->sp; return True; }
411 if (regno == 11) { *a = regs->fp; return True; }
413 if (regno == 15) { *a = regs->sp; return True; }
414 if (regno == 11) { *a = regs->fp; return True; }
[all...]
/external/valgrind/main/coregrind/
H A Dm_wordfm.c154 /* Insert element a into the AVL tree t. Returns True if the depth of
177 return True;
191 case 0: return True;
212 return True;
224 case 0: return True;
245 return True;
252 oldV->b = True;
260 the tree. Returns True if the depth of the tree has shrunk.
281 case -1: return True;
296 return True;
[all...]
H A Dm_errormgr.c214 Bool name_is_simple_str; /* True if name is a string without
484 if (ch == 'y' || ch == 'Y') return True;
503 Bool still_noisy = True;
699 stopping_message = True;
722 slowdown_message = True;
812 pp_Error( p, /*allow_db_attach*/True, VG_(clo_xml) );
823 comparing stuff. But they can be suppressed; returns True if it is
872 return True;
907 any_supp = True;
972 ips[0], /*debugging*/True,
[all...]
H A Dvgdb.c143 /* Will be set to True when any condition indicating we have to shutdown
287 // True if we have continued pid_of_save_regs after PTRACE_ATTACH
290 // Set to True when loss of connection indicating that the Valgrind
301 dying = True;
455 Returns True when process is in stopped state with signal_expected.
482 shutting_down = True;
501 return True;
505 Returns True if succesful, False otherwise.
524 Returns True if succesful, False otherwise.
530 static Bool output_error = True;
[all...]
H A Dm_libcbase.c55 if (c >= '0' && c <= '9') { *digit = (Long)(c - '0'); return True; }
61 if (c >= '0' && c <= '9') { *digit = (Long)(c - '0'); return True; }
62 if (c >= 'A' && c <= 'F') { *digit = (Long)((c - 'A') + 10); return True; }
63 if (c >= 'a' && c <= 'f') { *digit = (Long)((c - 'a') + 10); return True; }
77 if (*str == '-') { str++; neg = True; }
81 converted = True; // Ok, we've actually converted a digit.
106 converted = True; // Ok, we've actually converted a digit.
127 if (*str == '-') { str++; neg = True; }
139 converted = True; // Ok, we've actually converted a digit.
172 converted = True; // O
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_runner2.py85 return True
93 worker_state.wedged = True
94 return True
182 keyboard_interrupted = True
186 interrupted = True
209 worker_state.done = True
H A Dtest_expectations_unittest.py42 False, False), True)
48 False, False), True)
50 False, False), True)
52 False, False), True)
58 False, True), True)
64 True, False), True)
196 self.assertFalse(True, "ParseError wasn't raised")
207 is_lint_mode=True)
[all...]
/external/bzip2/
H A Dbzlib.c143 return True;
223 s->inUse[s->state_in_ch] = True;
238 s->inUse[s->state_in_len-4] = True;
268 zs->inUse[zs->state_in_ch] = True; \
296 while (True) {
301 progress_in = True;
312 while (True) {
319 progress_in = True;
338 while (True) {
346 progress_out = True;
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11yuv.c80 shm_error = True;
91 xv_error = True;
101 xv_error = True;
204 intel_adapter = True;
278 SDL_NAME(XvSelectPortNotify)(GFX_Display, xv_port, True);
284 a = XInternAtom(GFX_Display, attr[i], True);
287 XSync(GFX_Display, True);
350 XSync(GFX_Display, True);
355 shm_error = True;
359 shm_error = True;
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dclient_for_testing.py155 while True:
187 while True:
206 while True:
217 while True:
344 while True:
444 deflate_stream_accepted = True
448 deflate_frame_accepted = True
452 mux_accepted = True
548 while True:
783 def send_data(self, payload, frame_type, end=True, mas
[all...]
/external/valgrind/main/massif/
H A Dms_main.c229 // Used for printing stats when clo_stats == True.
376 return True;
400 static Bool clo_heap = True;
463 return True;
851 ? True : False );
874 // - Else redo=True
879 redo = True; // Assume this to begin with.
954 for (ch = 0; True; ch++) {
1082 return True;
1088 return (snapshot->alloc_sxpt ? True
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dclosurizednamespacesinfo.py132 True if the given token corresponds to an unnecessary goog.provide
145 return True
152 return True
161 True if the given token corresponds to an unnecessary goog.require
177 return True
186 return True
193 return True
261 return True
337 self._scopified_file = True
/external/chromium/testing/gmock/scripts/
H A Dupload.py138 save_cookies: If True, save the authentication cookies to local disk.
237 self.authenticated = True
317 while True:
373 self.authenticated = True
419 dest="save_cookies", default=True,
490 server.authenticated = True
542 universal_newlines=True):
547 print_output: If True, the output is printed to stdout.
549 universal_newlines: Use universal_newlines flag (default: True).
559 while True
[all...]
/external/chromium/testing/gtest/scripts/
H A Dupload.py138 save_cookies: If True, save the authentication cookies to local disk.
237 self.authenticated = True
317 while True:
373 self.authenticated = True
419 dest="save_cookies", default=True,
490 server.authenticated = True
542 universal_newlines=True):
547 print_output: If True, the output is printed to stdout.
549 universal_newlines: Use universal_newlines flag (default: True).
559 while True
[all...]
/external/libvpx/libvpx/third_party/googletest/src/scripts/
H A Dupload.py138 save_cookies: If True, save the authentication cookies to local disk.
237 self.authenticated = True
317 while True:
373 self.authenticated = True
419 dest="save_cookies", default=True,
490 server.authenticated = True
542 universal_newlines=True):
547 print_output: If True, the output is printed to stdout.
549 universal_newlines: Use universal_newlines flag (default: True).
559 while True
[all...]

Completed in 631 milliseconds

1234567891011>>