/external/strace/tests-mx32/ |
D | s390_sthyi.c | 231 bool printed = false; in print_hypervisor_header() local 237 printed = true; in print_hypervisor_header() 240 if (printed) in print_hypervisor_header() 244 printed = true; in print_hypervisor_header() 247 if (printed) in print_hypervisor_header() 311 bool printed = false; in print_guest_header() local 316 printed = true; in print_guest_header() 319 if (printed) in print_guest_header() 322 printed = true; in print_guest_header() 325 if (printed) in print_guest_header() [all …]
|
/external/strace/tests-m32/ |
D | s390_sthyi.c | 231 bool printed = false; in print_hypervisor_header() local 237 printed = true; in print_hypervisor_header() 240 if (printed) in print_hypervisor_header() 244 printed = true; in print_hypervisor_header() 247 if (printed) in print_hypervisor_header() 311 bool printed = false; in print_guest_header() local 316 printed = true; in print_guest_header() 319 if (printed) in print_guest_header() 322 printed = true; in print_guest_header() 325 if (printed) in print_guest_header() [all …]
|
/external/strace/tests/ |
D | s390_sthyi.c | 231 bool printed = false; in print_hypervisor_header() local 237 printed = true; in print_hypervisor_header() 240 if (printed) in print_hypervisor_header() 244 printed = true; in print_hypervisor_header() 247 if (printed) in print_hypervisor_header() 311 bool printed = false; in print_guest_header() local 316 printed = true; in print_guest_header() 319 if (printed) in print_guest_header() 322 printed = true; in print_guest_header() 325 if (printed) in print_guest_header() [all …]
|
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/bdd/ |
D | pretty_printing_scenarios.story | 8 Then it is printed as: 23 Then it is printed as: 47 Then it is printed as: 70 Then it is printed as: 90 Then it is printed as: 113 Then it is printed as: 126 Scenario: An empty Enum is printed correctly 130 Then it is printed as: 140 Then it is printed as: 156 Then it is printed as: [all …]
|
/external/mockito/src/test/java/org/mockito/internal/debugging/ |
D | VerboseMockInvocationLoggerTest.java | 51 assertThat(printed()) in should_print_invocation_with_return_value() 63 assertThat(printed()) in should_print_invocation_with_exception() 73 assertThat(printed()).doesNotContain("stubbed"); in should_print_if_method_has_not_been_stubbed() 82 assertThat(printed()) in should_print_stubbed_info_if_available() 91 assertThat(printed()).contains("#1"); in should_log_count_of_interactions() 94 assertThat(printed()).contains("#2"); in should_log_count_of_interactions() 97 assertThat(printed()).contains("#3"); in should_log_count_of_interactions() 100 private String printed() { in printed() method in VerboseMockInvocationLoggerTest
|
/external/libnl/lib/route/link/ |
D | vlan.c | 192 int printed; in vlan_dump_details() local 207 for (i = 0, printed = 0; i <= VLAN_PRIO_MAX; i++) { in vlan_dump_details() 209 if (printed == 0) in vlan_dump_details() 213 if (printed++ == 3) { in vlan_dump_details() 215 printed = 0; in vlan_dump_details() 220 if (printed > 0 && printed != 4) in vlan_dump_details() 227 for (i = 0, printed = 0; i < vi->vi_negress; i++) { in vlan_dump_details() 228 if (printed == 0) in vlan_dump_details() 233 if (printed++ == 3) { in vlan_dump_details() 235 printed = 0; in vlan_dump_details() [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGPrinter.cpp | 222 int level, bool &printed) { in setSubgraphColorHelper() argument 227 if (!printed) { in setSubgraphColorHelper() 228 printed = true; in setSubgraphColorHelper() 241 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit; in setSubgraphColorHelper() 256 bool printed = false; in setSubgraphColor() local 257 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) { in setSubgraphColor() 260 setSubgraphColorHelper(N, "blue", visited, 0, printed); in setSubgraphColor() 262 setSubgraphColorHelper(N, "green", visited, 0, printed); in setSubgraphColor()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGPrinter.cpp | 227 int level, bool &printed) { in setSubgraphColorHelper() argument 232 if (!printed) { in setSubgraphColorHelper() 233 printed = true; in setSubgraphColorHelper() 246 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit; in setSubgraphColorHelper() 261 bool printed = false; in setSubgraphColor() local 262 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) { in setSubgraphColor() 265 setSubgraphColorHelper(N, "blue", visited, 0, printed); in setSubgraphColor() 267 setSubgraphColorHelper(N, "green", visited, 0, printed); in setSubgraphColor()
|
/external/mockito/src/test/java/org/mockitousage/debugging/ |
D | VerboseLoggingOfInvocationsOnMockTest.java | 62 Assertions.assertThat(printed()) in shouldNotPrintInvocationOnMockWithoutSetting() 77 Assertions.assertThat(printed()) in shouldPrintUnstubbedInvocationOnMockToStdOut() 94 Assertions.assertThat(printed()) in shouldPrintStubbedInvocationOnMockToStdOut() 114 Assertions.assertThat(printed()) in shouldPrintThrowingInvocationOnMockToStdOut() 134 Assertions.assertThat(printed()) in shouldPrintRealInvocationOnSpyToStdOut() 154 private String printed() { in printed() method in VerboseLoggingOfInvocationsOnMockTest
|
/external/v8/src/ |
D | codegen.cc | 143 std::vector<Handle<SharedFunctionInfo>>* printed, in PrintFunctionSource() argument 150 for (unsigned i = 0; i < printed->size(); i++) { in PrintFunctionSource() 151 if (printed->at(i).is_identical_to(shared)) { in PrintFunctionSource() 155 source_id = static_cast<int>(printed->size()); in PrintFunctionSource() 156 printed->push_back(shared); in PrintFunctionSource() 216 std::vector<Handle<SharedFunctionInfo>> printed; in DumpParticipatingSource() local 217 printed.reserve(info->inlined_functions().size()); in DumpParticipatingSource() 219 PrintFunctionSource(info, &printed, SourcePosition::kNotInlined, in DumpParticipatingSource() 224 PrintFunctionSource(info, &printed, id, inlined[id].shared_info); in DumpParticipatingSource()
|
/external/libedit/examples/ |
D | fileman.c | 389 int printed = 0; in com_help() local 396 printed++; in com_help() 400 if (!printed) in com_help() 407 if (printed == 6) in com_help() 409 printed = 0; in com_help() 414 printed++; in com_help() 417 if (printed) in com_help()
|
/external/syslinux/memdisk/ |
D | conio.c | 363 int printed; in vprintf() local 365 printed = vsprintf(printf_buf, fmt, args); in vprintf() 367 return printed; in vprintf() 373 int printed; in printf() local 376 printed = vprintf(fmt, args); in printf() 378 return printed; in printf()
|
/external/strace/ |
D | poll.c | 75 unsigned int printed; in decode_poll_exiting() local 94 for (printed = 0, cur = start; cur < end; cur += sizeof(fds)) { in decode_poll_exiting() 109 if (printed >= max_printed) { in decode_poll_exiting() 129 ++printed; in decode_poll_exiting()
|
/external/jacoco/jacoco-maven-plugin.test/it/it-report-nomatch/ |
D | verify.bsh | 17 throw new RuntimeException( "Warning 1 was not printed" ); 20 throw new RuntimeException( "Warning 2 was not printed" ); 23 throw new RuntimeException( "Warning 3 was not printed" );
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | CheckTags.java | 51 private boolean printed; field in CheckTags.DocNode 57 this.printed = false; in reset() 63 " printed: " + printed + in toString() 133 if (n.printed) { in output() 134 if (msg != null || !last.printed) { // since index > 0 last is not null in output() 144 n.printed = true; in output()
|
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
D | keymap-dump.c | 84 int printed; in check_write_buf() local 89 printed = vsnprintf(buf->buf + buf->size, available, fmt, args); in check_write_buf() 92 if (printed < 0) in check_write_buf() 95 if ((size_t) printed >= available) in check_write_buf() 96 if (!do_realloc(buf, printed)) in check_write_buf() 103 printed = vsnprintf(buf->buf + buf->size, available, fmt, args); in check_write_buf() 106 if (printed < 0 || (size_t) printed >= available) in check_write_buf() 109 buf->size += printed; in check_write_buf()
|
/external/squashfs-tools/squashfs-tools/ |
D | gzip_wrapper.c | 282 int i, printed; in gzip_display_options() local 307 for(i = 0, printed = 0; strategy[i].name; i++) { in gzip_display_options() 309 if(printed) in gzip_display_options() 314 printed = 1; in gzip_display_options() 318 if(!printed) in gzip_display_options()
|
D | xz_wrapper.c | 328 int dictionary_size, flags, printed; in xz_display_options() local 351 printed = 0; in xz_display_options() 354 if(printed) in xz_display_options() 359 printed = 1; in xz_display_options() 363 if(!printed) in xz_display_options()
|
/external/e2fsprogs/lib/e2p/ |
D | ls.c | 102 int i, j, printed=0; in print_features() local 110 printed++; in print_features() 114 if (printed == 0) in print_features() 123 int i, printed=0; in print_mntopts() local 129 printed++; in print_mntopts() 136 printed++; in print_mntopts() 139 if (printed == 0) in print_mntopts()
|
/external/iw/ |
D | info.c | 434 bool printed = false; in print_phy_handler() local 436 if (!printed) in print_phy_handler() 438 printed = true; in print_phy_handler() 441 if (printed) in print_phy_handler() 449 bool printed = false; in print_phy_handler() local 451 if (!printed) in print_phy_handler() 453 printed = true; in print_phy_handler() 456 if (printed) in print_phy_handler()
|
/external/syslinux/dos/ |
D | printf.c | 299 int printed; in printf() local 302 printed = vsprintf(printf_buf, fmt, args); in printf() 307 return printed; in printf()
|
/external/syslinux/dosutil/ |
D | eltorito.txt | 36 garbage was printed and sometimes followed by "system halted" that has been 39 for example "device.com eltorito.sys /test:123" garbage was printed instead 49 - When the Alt-key is pressed (and holded) more info is printed and eltorito.sys halts
|
/external/mesa3d/src/amd/common/ |
D | ac_binary.c | 274 static bool printed; in ac_shader_binary_read_config() local 276 if (!printed) { in ac_shader_binary_read_config() 279 printed = true; in ac_shader_binary_read_config()
|
/external/llvm/test/CodeGen/MIR/Generic/ |
D | frame-info.mir | 36 # Note: max alignment can be target specific when printed. 63 # Note: max alignment can be target specific when printed.
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 31 printed. If *file* is omitted or ``None``, the output goes to 55 printed as well, like the interpreter itself does when printing an unhandled 77 entries. If *limit* is omitted or ``None``, all entries are printed. 93 information that is usually printed for a stack trace. The *text* is a 121 exceptions, it contains several lines that (when printed) display detailed 131 containing internal newlines. When these lines are concatenated and printed, 132 exactly the same text is printed as does :func:`print_exception`. 258 printed) display detailed information about where the syntax 319 or printed. It may optionally have a stringified version of the frames
|