/third_party/jerryscript/tests/jerry/fail/ |
H A D | regression-test-issue-2774.js | 15 /* Discard the output of the 'print' function */ 16 print = function () {} 18 print ( JSON . stringify ( "" ) === '""' ) 20 print ( JSON . stringify ( normal_string ) == '"asdasd"' ) 22 print ( JSON . stringify ( format_characters ) == '"\\ba\\fs\\nd\\ra\\tsd"' ) 24 print ( JSON . stringify ( ctl_string ) == "h" ) 26 print ( JSON . stringify ( escpad_string ) == '"\\"asdasd"' ) 27 print ( JSON . stringify ( '\u2040' ) == '"⁀"' ) 28 print ( JSON . stringify ( 'abc\u2040\u2030cba' ) == '"abc⁀‰cba"' ) 29 print ( JSO 0 print = function () {} global() function [all...] |
H A D | regression-test-issue-2775.js | 15 /* Discard the output of the 'print' function */ 16 print = function () {} 18 print ( JSON . stringify ( "" ) === '""' ) 20 print ( JSON . stringify ( normal_string ) == '"asdasd"' ) 22 print ( JSON . stringify ( format_characters ) == '"\\ba\\fs\\nd\\ra\\tsd"' ) 24 print ( JSON . stringify ( ctl_string ) == '"asd\\u001fasd"' ) 26 print ( JSON . stringify ( escpad_string ) == '"\\"asdasd"' ) 27 print ( JSON . stringify ( true ) === 'true' ) 28 print ( JSON . stringify ( "foo" ) === '"foo"' ) 29 print ( JSO 0 print = function () {} global() function [all...] |
/third_party/node/deps/v8/tools/ |
H A D | windbg.js | 15 print("--------------------------------------------------------------------"); 16 print(" LIVE debugging only"); 17 print("--------------------------------------------------------------------"); 18 print(" !jlh(\"local_handle_var_name\")"); 19 print(" prints object held by the handle"); 20 print(" e.g. !jlh(\"key\") or !jlh(\"this->receiver_\")"); 21 print(" !job(address_or_taggedint)"); 22 print(" prints object at the address, e.g. !job(0x235cb869f9)"); 23 print(" !jst() or !jst"); 24 print(" print 115 function print(s) { global() function [all...] |
H A D | compare-table-gen.js | 45 print("// Copyright 2015 the V8 project authors. All rights reserved."); 46 print("// Use of this source code is governed by a BSD-style license that can be"); 47 print("// found in the LICENSE file."); 48 print(); 49 print("var values = [" + strings + "];"); 54 print("var expected = ["); 64 print(line); 66 print("];"); 68 print("var func = " + body + ";"); 69 print("va [all...] |
/third_party/rust/crates/rustix/examples/ |
H A D | stdio.rs | 68 print!(" - in flags:"); in show() 71 print!(" IGNBRK"); in show() 75 print!(" BRKINT"); in show() 79 print!(" IGNPAR"); in show() 83 print!(" PARMRK"); in show() 87 print!(" INPCK"); in show() 91 print!(" ISTRIP"); in show() 95 print!(" INLCR"); in show() 99 print!(" IGNCR"); in show() 103 print!(" ICRN in show() [all...] |
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
H A D | ScriptRunModuleWriter.java | 35 output.print(" {0x"); in writeScriptRuns() 36 output.print(Utility.hex(scriptData.getRecord(record).startChar(), 6)); in writeScriptRuns() 37 output.print(", 0x"); in writeScriptRuns() 38 output.print(Utility.hex(scriptData.getRecord(record).endChar(), 6)); in writeScriptRuns() 39 output.print(", "); in writeScriptRuns() 40 output.print(scriptData.getTag(script)); in writeScriptRuns() 41 output.print("ScriptCode}"); in writeScriptRuns() 42 output.print((record == recordCount - 1) ? " " : ","); in writeScriptRuns() 43 output.print(" // "); in writeScriptRuns() 52 output.print("le_int3 in writeScriptRuns() [all...] |
H A D | ScriptTagModuleWriter.java | 26 output.print("const LETag "); in writeTagValueHeader() 27 output.print(data.getTagLabel(value)); in writeTagValueHeader() 28 output.print(kind); in writeTagValueHeader() 29 output.print("Tag = "); in writeTagValueHeader() 30 output.print(data.makeTag(value)); in writeTagValueHeader() 31 output.print("; /* '"); in writeTagValueHeader() 32 output.print(data.getTag(value)); in writeTagValueHeader() 33 output.print("' ("); in writeTagValueHeader() 34 output.print(data.getName(value)); in writeTagValueHeader() 93 output.print(" "); in writeTagValueCPP() [all...] |
H A D | ScriptIDModuleWriter.java | 65 output.print(" "); in writeScriptHeader() 66 output.print(scriptData.getTagLabel(script)); in writeScriptHeader() 67 output.print("ScriptCode = "); in writeScriptHeader() 70 output.print(" "); in writeScriptHeader() 73 output.print(script); in writeScriptHeader() 91 output.print(" "); in writeScriptHeader() 92 output.print(scriptData.getTagLabel(script)); in writeScriptHeader() 93 output.print("ScriptCode = "); in writeScriptHeader() 96 output.print(" "); in writeScriptHeader() 99 output.print(scrip in writeScriptHeader() [all...] |
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/ |
H A D | MessagePatternDemo.java | 63 private static final MessagePattern print(String s) { in print() method in MessagePatternDemo 76 MessagePattern msg=print(s); in printFormat() 83 MessagePattern msg=print(s); in printFormatWithNamedArgs() 91 print("Hello!"); in main() 92 print("Hel'lo!"); in main() 93 print("Hel'{o"); in main() 94 print("Hel'{'o"); in main() 97 print("a'{bc''de'f{0,number,g'hi''jk'l#}"); in main() 98 print("abc{0}def"); in main() 99 print("ab in main() [all...] |
H A D | MessagePatternUtilDemo.java | 48 System.out.print(manySpaces.substring(0, depth * 2) + "arg: «" + arg.getName() + "»"); in printArg() 53 System.out.print(" (" + arg.getTypeName() + ")"); in printArg() 110 System.out.print("def function("); in genCode() 114 System.out.print(argName); in genCode() 117 System.out.print(", " + argName); in genCode() 298 private static final MessagePatternUtil.MessageNode print(String s) { in print() method in MessagePatternUtilDemo 312 print("Hello!"); in main() 313 print("Hel'lo!"); in main() 314 print("Hel'{o"); in main() 315 print("He in main() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/size/ |
H A D | get_size.c | 21 * number output and print routines, and using __builtin_strlen() 35 static int print(const char *s) in print() function 65 return print(num_to_str(num, num_buf, sizeof(num_buf))); in print_num() 73 print(s); in print_k_value() 79 print("\n"); in print_k_value() 91 print("TAP version 13\n"); in _start() 92 print("# Testing system size.\n"); in _start() 96 print("not ok 1"); in _start() 97 print(test_name); in _start() 98 print(" in _start() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/size/ |
H A D | get_size.c | 21 * number output and print routines, and using __builtin_strlen() 35 static int print(const char *s) in print() function 65 return print(num_to_str(num, num_buf, sizeof(num_buf))); in print_num() 73 print(s); in print_k_value() 79 print("\n"); in print_k_value() 91 print("TAP version 13\n"); in _start() 92 print("# Testing system size.\n"); in _start() 96 print("not ok 1"); in _start() 97 print(test_name); in _start() 98 print(" in _start() [all...] |
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_smoke_tests.js | 10 print("https://crbug.com/932656"); 11 print(Object.getOwnPropertyNames(this)); 13 print("https://crbug.com/935800"); 20 print(Object.getOwnPropertyNames(foo().bar)); 23 print("https://crbug.com/985154"); 31 print(Object.getOwnPropertyNames(foo().bar)); 34 print("Sensitive runtime functions are neutered"); 42 print(%GetOptimizationStatus(foo)); 44 print(fun(foo));
|
/kernel/linux/linux-6.6/include/trace/ |
H A D | trace_events.h | 39 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ 45 PARAMS(print)); \ 51 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ 70 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ 76 assign, print, reg, unreg) \ 78 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \ 82 assign, print, reg, unreg) \ 84 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \ 115 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ 124 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/ |
H A D | if_test.cpp | 670 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_INVALID_EXPRESSION, in TEST_F() 683 print(pp::Diagnostics::PP_DIVISION_BY_ZERO, pp::SourceLocation(0, 1), "1 / 0")); in TEST_F() 695 print(pp::Diagnostics::PP_DIVISION_BY_ZERO, pp::SourceLocation(0, 1), "1 % 0")); in TEST_F() 706 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_INTEGER_OVERFLOW, pp::SourceLocation(0, 1), in TEST_F() 718 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_INTEGER_OVERFLOW, pp::SourceLocation(0, 1), in TEST_F() 730 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_INTEGER_OVERFLOW, pp::SourceLocation(0, 1), in TEST_F() 742 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_CONDITIONAL_UNEXPECTED_TOKEN, in TEST_F() 765 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 774 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_CONDITIONAL_ELSE_WITHOUT_IF, in TEST_F() 784 EXPECT_CALL(mDiagnostics, print(p in TEST_F() [all...] |
H A D | version_test.cpp | 24 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 39 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 61 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 75 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_EOF_IN_DIRECTIVE, _, _)); in TEST_F() 92 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 109 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 121 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_VERSION_NOT_FIRST_STATEMENT, in TEST_F() 135 print(pp::Diagnostics::PP_INVALID_CHARACTER, pp::SourceLocation(0, 1), "$")); in TEST_F() 136 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_VERSION_NOT_FIRST_STATEMENT, in TEST_F() 149 EXPECT_CALL(mDiagnostics, print(p in TEST_F() [all...] |
H A D | define_test.cpp | 30 print(pp::Diagnostics::PP_UNEXPECTED_TOKEN, pp::SourceLocation(0, 1), "2")); in TEST_F() 56 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in TEST_F() 58 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in TEST_F() 60 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in TEST_F() 62 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_MACRO_PREDEFINED_REDEFINED, in TEST_F() 77 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, in TEST_F() 92 EXPECT_CALL(mDiagnostics, print(pp::Diagnostics::PP_WARNING_MACRO_NAME_RESERVED, in TEST_F() 108 print(pp::Diagnostics::PP_MACRO_NAME_RESERVED, pp::SourceLocation(0, 1), "GL_foo")); in TEST_F() 125 EXPECT_CALL(mDiagnostics, print(_, _, _)).Times(0); in TEST_F() 142 print(p in TEST_F() [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | TextFormat.java | 67 * @deprecated Use {@code printer().print(MessageOrBuilder, Appendable)} 70 public static void print(final MessageOrBuilder message, final Appendable output) in print() method in TextFormat 72 printer().print(message, output); in print() 78 * @deprecated Use {@code printer().print(UnknownFieldSet, Appendable)} 81 public static void print(final UnknownFieldSet fields, final Appendable output) in print() method in TextFormat 83 printer().print(fields, output); in print() 87 * Same as {@code print()}, except that non-ASCII characters are not escaped. 89 * @deprecated Use {@code printer().escapingNonAscii(false).print(MessageOrBuilder, Appendable)} 94 printer().escapingNonAscii(false).print(message, output); in printUnicode() 98 * Same as {@code print()}, excep 335 public void print(final MessageOrBuilder message, final Appendable output) throws IOException { print() method in TextFormat.Printer 340 public void print(final UnknownFieldSet fields, final Appendable output) throws IOException { print() method in TextFormat.Printer 344 private void print(final MessageOrBuilder message, final TextGenerator generator) print() method in TextFormat.Printer 852 public void print(final CharSequence text) throws IOException { print() method in TextFormat.TextGenerator [all...] |
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | dumpICUrules.bat | 56 print STDERR "$DIR is not a directory\n"; 63 print "Usage: $me [-dir <dir>] [-id <id>]\n"; 64 print " --dir <dir> Specify the directory containing the\n"; 65 print " Transliterator_*.txt files\n"; 66 print " --id <id> Specify a single ID to transform, e.g.\n"; 67 print " Fullwidth-Halfwidth\n"; 188 # print "In use:\n", join("\n", sort keys(%USED_FILES)), "\n"; 202 print STDERR "*** $id skipped: Java only ***\n"; 208 print "*** $leaf skipped: not in use ***\n"; 226 print STDER [all...] |
/third_party/jerryscript/tests/debugger/ |
H A D | do_finish.js | 15 print("finish-test"); 18 print("foo"); 26 print(foo()); 35 print("*bark*"); 39 print("*sit*"); 44 print("END: finish-test");
|
H A D | client_source.js | 15 print("client-source-test"); 18 print("function finish"); 19 print("finish: " + z); 23 print("function bar"); 29 print("function foo"); 35 print("function test");
|
/third_party/jerryscript/targets/mbedos5/js/ |
H A D | flash_leds.js | 27 print("Creating new DigitalOuts"); 32 print("LED " + i + " is connected."); 35 print("LED " + i + " is not connected."); 50 print("Finished with LED " + led); 70 print("no button specified"); 73 print("YOU PUSHED THE BUTTON!"); 76 print("flash_leds.js has finished executing.");
|
/kernel/linux/linux-5.10/arch/alpha/kernel/ |
H A D | err_titan.c | 27 titan_parse_c_misc(u64 c_misc, int print) in titan_parse_c_misc() argument 43 if (!print) in titan_parse_c_misc() 74 titan_parse_p_serror(int which, u64 serror, int print) in titan_parse_p_serror() argument 112 if (!print) in titan_parse_p_serror() 141 titan_parse_p_perror(int which, int port, u64 perror, int print) in titan_parse_p_perror() argument 229 if (!print) in titan_parse_p_perror() 275 titan_parse_p_agperror(int which, u64 agperror, int print) in titan_parse_p_agperror() argument 318 if (!print) in titan_parse_p_agperror() 359 u64 aperror, u64 agperror, int print) in titan_parse_p_chip() 362 status |= titan_parse_p_serror(which, serror, print); in titan_parse_p_chip() 358 titan_parse_p_chip(int which, u64 serror, u64 gperror, u64 aperror, u64 agperror, int print) titan_parse_p_chip() argument 370 titan_process_logout_frame(struct el_common *mchk_header, int print) titan_process_logout_frame() argument 590 privateer_process_680_frame(struct el_common *mchk_header, int print) privateer_process_680_frame() argument 631 privateer_process_logout_frame(struct el_common *mchk_header, int print) privateer_process_logout_frame() argument [all...] |
/kernel/linux/linux-6.6/arch/alpha/kernel/ |
H A D | err_titan.c | 27 titan_parse_c_misc(u64 c_misc, int print) in titan_parse_c_misc() argument 43 if (!print) in titan_parse_c_misc() 74 titan_parse_p_serror(int which, u64 serror, int print) in titan_parse_p_serror() argument 112 if (!print) in titan_parse_p_serror() 141 titan_parse_p_perror(int which, int port, u64 perror, int print) in titan_parse_p_perror() argument 229 if (!print) in titan_parse_p_perror() 275 titan_parse_p_agperror(int which, u64 agperror, int print) in titan_parse_p_agperror() argument 318 if (!print) in titan_parse_p_agperror() 359 u64 aperror, u64 agperror, int print) in titan_parse_p_chip() 362 status |= titan_parse_p_serror(which, serror, print); in titan_parse_p_chip() 358 titan_parse_p_chip(int which, u64 serror, u64 gperror, u64 aperror, u64 agperror, int print) titan_parse_p_chip() argument 370 titan_process_logout_frame(struct el_common *mchk_header, int print) titan_process_logout_frame() argument 590 privateer_process_680_frame(struct el_common *mchk_header, int print) privateer_process_680_frame() argument 631 privateer_process_logout_frame(struct el_common *mchk_header, int print) privateer_process_logout_frame() argument [all...] |
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
H A D | JsonFormat.java | 206 * Creates a new {@link Printer} that will also print fields set to their 225 * Creates a new {@link Printer} that will print enum field values as integers instead of as 250 * Creates a new {@link Printer} that will also print default-valued fields if their 372 .print(message); in appendTo() 379 public String print(MessageOrBuilder message) throws InvalidProtocolBufferException { in print() method in JsonFormat.Printer 624 void print(final CharSequence text) throws IOException; in print() method 647 public void print(final CharSequence text) throws IOException { in print() method in JsonFormat.CompactTextGenerator 685 public void print(final CharSequence text) throws IOException { in print() method in JsonFormat.PrettyTextGenerator 762 void print(MessageOrBuilder message) throws IOException { in print() method in JsonFormat.PrinterImpl 766 specialPrinter.print(thi in print() 773 void print(PrinterImpl printer, MessageOrBuilder message) throws IOException; print() method 989 private void print(MessageOrBuilder message, String typeUrl) throws IOException { print() method in JsonFormat.PrinterImpl [all...] |