/third_party/mesa3d/src/compiler/glsl/glcpp/tests/ |
H A D | 058-token-pasting-empty-arguments.c | 1 #define paste(x,y) x ## y macro 2 paste(a,b) 3 paste(a,) 4 paste(,b) 5 paste(,)
|
H A D | 072-token-pasting-same-line.c | 1 #define paste(x) success_ ## x macro 2 paste(1) paste(2) paste(3)
|
H A D | 059-token-pasting-integer.c | 1 #define paste(x,y) x ## y macro 2 paste(1,2) 3 paste(1,000) 4 paste(identifier,2)
|
H A D | 040-token-pasting.c | 1 #define paste(a,b) a ## b macro 2 paste(one , token)
|
/third_party/astc-encoder/Test/ |
H A D | astc_test_image_dl.py | 114 montage.paste(im, (width * col, height * row))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
H A D | TGLexer.h | 45 paste, // # enumerator 242 // tgtok::paste interpretation of '#'.
|
H A D | TGLexer.cpp | 181 return tgtok::paste; in LexToken() 212 // an identifier. This can happen with paste operations like in LexToken()
|
H A D | TGParser.cpp | 1823 case tgtok::paste: in ParseSimpleValue() 1824 // This is a leading paste operation. This is deprecated but in ParseSimpleValue() 2224 case tgtok::paste: in ParseValue() 2228 Error(PasteLoc, "LHS of paste is not typed!"); in ParseValue() 2240 Result = LHS; // trailing paste, ignore. in ParseValue() 2274 // Trailing paste, concat with an empty string. in ParseValue() 2282 Error(PasteLoc, "RHS of paste is not typed!"); in ParseValue()
|
/third_party/eudev/hm_src/ |
H A D | keyboard-keys-from-name.h | 147 {"paste", KEY_PASTE}, in keyboard_lookup_key()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
H A D | DumbTextComponent.java | 205 paste(); in keyPressed() 281 void paste () { in paste() method in DumbTextComponent
|
/third_party/glfw/deps/ |
H A D | nuklear_glfw_gl2.h | 265 glfw.ctx.clip.paste = nk_glfw3_clipboard_paste; in nk_glfw3_init()
|
H A D | nuklear.h | 4164 * copy and paste functions and even there only for more advanced cases. */ 4250 nk_plugin_paste paste; member 22024 /* API paste: replace existing selection with passed-in text */ in nk_textedit_paste() 22029 /* if there's a selection, the paste should delete it */ in nk_textedit_paste() 23012 /* paste handler */ in nk_do_edit() 23013 {int paste = nk_input_is_key_pressed(in, NK_KEY_PASTE); in nk_do_edit() local 23014 if (paste && (flags & NK_EDIT_CLIPBOARD) && edit->clip.paste) { in nk_do_edit() 23015 edit->clip.paste(edit->clip.userdata, edit); in nk_do_edit()
|
/third_party/toybox/generated/ |
H A D | globals.h | 1417 // toys/posix/paste.c 1757 struct paste_data paste; member
|
H A D | flags.h | 2138 // paste d:s d:s 5277 #define TT this.paste
|
/third_party/python/Lib/idlelib/ |
H A D | editor.py | 174 text.bind("<<paste>>", self.paste) 667 def paste(self,event): member in EditorWindow
|