HomeSort by relevance Sort by last modified time
    Searched full:paste (Results 1 - 25 of 768) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
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(,)
082-invalid-paste.c 1 #define PASTE(x,y) x ## y
2 PASTE(<,>)
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)
072-token-pasting-same-line.c 1 #define paste(x) success_ ## x macro
2 paste(1) paste(2) paste(3)
040-token-pasting.c 1 #define paste(a,b) a ## b macro
2 paste(one , token)
  /external/mesa3d/src/glsl/glcpp/tests/
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(,)
082-invalid-paste.c 1 #define PASTE(x,y) x ## y
2 PASTE(<,>)
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)
072-token-pasting-same-line.c 1 #define paste(x) success_ ## x macro
2 paste(1) paste(2) paste(3)
040-token-pasting.c 1 #define paste(a,b) a ## b macro
2 paste(one , token)
  /external/chromium_org/chrome/common/extensions/docs/templates/private/permissions/
clipboard_read.html 1 Required if the extension or app uses <code>document.execCommand('paste')</code>.
  /external/chromium_org/third_party/WebKit/ManualTests/
textarea-onpaste.html 5 <textarea onpaste="document.getElementById('result').innerHTML='SUCCESS'">Paste here</textarea>
6 This tests that onpaste handlers are called. To test this, paste some text in the textarea below. The result below should change from FAILURE to SUCCESS.
paste-crash.html 7 <li>Paste into Blot
20 <li>Paste into Blot
about-blank-xhr.html 4 <li>Paste the following into the location bar:
plain-text-paste.html 11 1. Double-click <a href="resources/plain-text-paste.dmg">this disk image</a> in the Finder.<br>
14 4. Back in Safari, click inside the &ldquo;Paste item 5 here&rdquo; field and choose Paste from the Edit menu.<br>
53 <td>Paste item 5 here: <input></td>
  /external/clang/test/Preprocessor/
macro_paste_identifier_error.c 1 // RUN: %clang_cc1 -fms-extensions -Wno-invalid-token-paste %s -verify
2 // RUN: %clang_cc1 -E -fms-extensions -Wno-invalid-token-paste %s | FileCheck %s
3 // RUN: %clang_cc1 -E -fms-extensions -Wno-invalid-token-paste -x assembler-with-cpp %s | FileCheck %s
ucn-pp-identifier.c 60 #define PASTE(A, B) A ## B
61 extern int PASTE(\, u00FD);
62 extern int PASTE(\u, 00FD); // expected-warning{{\u used with no following hex digits}}
63 extern int PASTE(\u0, 0FD); // expected-warning{{incomplete universal character name}}
  /development/samples/NotePad/res/menu/
list_options_menu.xml 9 <!-- If there is currently data in the clipboard, this adds a PASTE menu item to the menu
10 so that the user can paste in the data.. -->
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
OmniboxViewUtil.java 13 * Sanitizing the given string to be safe to paste into the omnibox.
  /prebuilts/misc/common/swig/include/2.0.11/r/
srun.swg 58 f = get(paste("new", className, sep = "_"), mode = "function")
75 defName = paste(".__E__", name, sep = "")
79 name = paste(name, suffix, sep = "")
87 ans <- as.integer(get(paste(".__E__", type, sep = ""))[name])
96 itemlist <- get(paste(".__E__", type, sep=""))
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/examples/
tab_manipulation.applescript 30 paste selection -- Paste a text from the system clipboard.
  /external/chromium_org/ui/events/linux/
text_edit_command_auralinux.cc 101 case PASTE:
102 base_name = "Paste";
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field.h 58 // Returns true if the current clipboard text supports paste and go
59 // (or paste and search).
62 // Returns the appropriate "Paste and Go" or "Paste and Search"
68 // Called when the user initiates a "paste and go" or "paste and
  /external/chromium_org/remoting/webapp/
clipboard.js 59 // Do a paste operation, but make sure the resulting clipboard data isn't sent
163 * This method makes the browser fire a paste event, which provides access to
168 // It would be cleaner to send a paste command to the plugin element,
170 console.log('Initiating clipboard paste.');
171 document.execCommand("paste");
183 // It would be cleaner to send a paste command to the plugin element,
  /external/chromium_org/chrome/browser/omnibox/
omnibox_log.h 55 // True if this is a paste-and-search or paste-and-go omnibox interaction.
56 // (The codebase refers to both these types as paste-and-go.)

Completed in 896 milliseconds

1 2 3 4 5 6 7 8 91011>>