Home
last modified time | relevance | path

Searched full:paste (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/third_party/toybox/tests/
Dpaste.test12 testing "" "paste one two" "one1\ttwo1\none2\ttwo2\none3\ttwo3\n" "" ""
13 testing "" "paste -s one two" "one1\tone2\tone3\ntwo1\ttwo2\ttwo3\n" "" ""
14 testing "" "paste -s three four" "\n\n" "" ""
15 testing "" "paste three four" "" "" ""
16 testing "" "paste - - -" "uno\tdos\tdesqview\nunix\t\t\n" "" "uno\ndos\ndesqview\nunix\n"
17 testing "" "paste - - - -d ''" "unodosdesqview\nunix\n" "" "uno\ndos\ndesqview\nunix\n"
18 testing "" "paste one two one two" \
21 testing "" "paste five three two" "five\t\ttwo1\n\t\ttwo2\n\t\ttwo3\n" "" ""
22 testing "" "paste -d '私\0${UTFTEST}q' - - - - - - " \
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
D082-invalid-paste.c1 #define PASTE(x,y) x ## y macro
2 PASTE(<,>)
3 PASTE(0,abc)
4 PASTE(1,=)
5 PASTE(2,~)
6 PASTE(3,-4)
7 PASTE(4,+5.2)
D058-token-pasting-empty-arguments.c1 #define paste(x,y) x ## y macro
2 paste(a,b)
3 paste(a,)
4 paste(,b)
5 paste(,)
D072-token-pasting-same-line.c1 #define paste(x) success_ ## x macro
2 paste(1) paste(2) paste(3)
D059-token-pasting-integer.c1 #define paste(x,y) x ## y macro
2 paste(1,2)
3 paste(1,000)
4 paste(identifier,2)
D040-token-pasting.c1 #define paste(a,b) a ## b macro
2 paste(one , token)
/third_party/toybox/toys/posix/
Dpaste.c1 /* paste.c - Merge corresponding lines
5 * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/paste.html
9 USE_PASTE(NEWTOY(paste, "d:s", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_LOCALE))
11 config PASTE
12 bool "paste"
15 usage: paste [-s] [-d DELIMITERS] [FILE...]
/third_party/mesa3d/src/amd/compiler/tests/
Dframework.h61 #define PASTE(a, b) _PASTE(a, b) macro
63 …name) static void struct_name(); static __attribute__((constructor)) void PASTE(add_test_, __COUNT…
68 #define BEGIN_TEST(name) _BEGIN_TEST(name, PASTE(Test_, __COUNTER__))
69 #define BEGIN_TEST_TODO(name) _BEGIN_TEST(name, PASTE(Test_, __COUNTER__))
70 #define BEGIN_TEST_FAIL(name) _BEGIN_TEST(name, PASTE(Test_, __COUNTER__))
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-internal-routines-template.inc.h28 #define PASTE(x, y) PASTE_ (x, y) macro
31 PASTE (PASTE (ecma_builtin_, BUILTIN_UNDERSCORED_ID), _property_descriptor_list)
33 PASTE (PASTE (ecma_builtin_, BUILTIN_UNDERSCORED_ID), _dispatch_routine)
68 PASTE (ECMA_ROUTINE_START_, BUILTIN_UNDERSCORED_ID) = ECMA_BUILTIN_ID__COUNT - 1, enumerator
308 #undef PASTE
/third_party/python/Lib/idlelib/idle_test/
Dtest_editmenu.py44 text.event_generate('<<Paste>>')
49 # Generated <<Paste>> fails for tk entry without empty select
57 entry.event_generate('<<Paste>>')
69 spin.event_generate('<<Paste>>')
/third_party/typescript/tests/cases/fourslash/
DautoFormattingOnPasting.ts7 edit.paste(` class TestClass{
13 …cenario ** Uncheck Tools->Options->Text Editor->TypeScript->Formatting->General->Format on paste **
21 … scenario ** Check Tools->Options->Text Editor->TypeScript->Formatting->General->Format on paste **
Dpaste.ts6 edit.paste('x,y,z');
DformatAfterPasteInString.ts6 edit.paste("bb");
DpasteLambdaOverModule.ts7 edit.paste(code);
/third_party/node/deps/v8/tools/perf/
Dstatistics-for-json.R29 printf(paste("usage: Rscript %%this_script patched-results.json",
79 printf(paste(" Wilcoxon U-test W=%.4f, p=%.4f,",
89 printf(paste(" Welch t-test t=%.4f, df = %.2f, p=%.4f,",
100 name=paste("Benchmark, n=", length(patch_res))) +
/third_party/libwebsockets/READMEs/
DREADME.contributing.md12 - paste a `git diff`
16 - paste in a github issue
/third_party/elfutils/backends/
Dcommon-reloc.c32 #define R_TYPE(name) PASTE (RELOC_PREFIX, name)
33 #define PASTE(a, b) PASTE_1 (a, b) macro
40 #define STRINGIFIED_PASTE(a, b) STRINGIFY (PASTE (a, b))
/third_party/libinput/
D.triage-policies.yml34 …Please **attach** (do not paste) the output of `hid-recorder` from [hid-tools](https://gitlab.free…
45 … Looks like we may need some extra information. Please **attach** (do not paste) the full output
/third_party/icu/icu4c/source/data/translit/
DHebr_Latn.txt20 # Click Edit, paste in this file, Save As hebrew-latin/XXX
24 # Paste in hebrew text in Input, and hit Transliterate.
/third_party/skia/third_party/externals/icu/source/data/translit/
DHebr_Latn.txt20 # Click Edit, paste in this file, Save As hebrew-latin/XXX
24 # Paste in hebrew text in Input, and hit Transliterate.
/third_party/python/Lib/idlelib/
Dconfig-keys.def13 paste=<Control-Key-v> <Control-Key-V>
73 paste=<Control-Key-y>
133 paste = <Control-Key-v> <Shift-Key-Insert>
193 paste=<Command-Key-v>
288 paste = <Command-Key-v>
Doutwin.py71 ("Paste", "<<paste>>", "rmenu_check_paste"),
/third_party/node/lib/internal/readline/
Dutils.js152 * but without modifier. They are the case of paste bracket mode
241 /* paste bracket mode */
242 case '[200~': key.name = 'paste-start'; break;
243 case '[201~': key.name = 'paste-end'; break;
/third_party/mesa3d/docs/relnotes/
D10.0.5.rst86 - mesa: fix copy & paste bugs in pack_ubyte_SARGB8()
87 - mesa: fix copy & paste bugs in pack_ubyte_SRGB8()
/third_party/skia/gm/
Dfiddle.cpp14 // Paste your fiddle.skia.org code over this stub.

12345678910>>...12