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

1 2 3

  /external/mesa3d/src/glsl/glcpp/tests/
072-token-pasting-same-line.c 1 #define paste(x) success_ ## x macro
2 paste(1) paste(2) paste(3)
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)
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(,)
040-token-pasting.c 1 #define paste(a,b) a ## b macro
2 paste(one , token)
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 41 private static final int PASTE = 2;
79 } else if (TextUtils.equals(title, mMenuItemsStrings[PASTE])) {
94 mMenuItemsStrings[PASTE] = resources.getString(android.R.string.paste);
106 menu.getItem(PASTE).setVisible(false);
146 CharSequence paste = clip.getItemAt(i).coerceToText(getContext()); local
147 if (canPaste(paste)) {
148 ((Editable) getText()).insert(getSelectionEnd(), paste); local
154 private boolean canPaste(CharSequence paste) {
157 Float.parseFloat(paste.toString())
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 42 paste, // # enumerator in enum:llvm::tgtok::TokKind
TGLexer.cpp 114 case '#': return tgtok::paste;
140 // an identifier. This can happen with paste operations like
  /external/webkit/Source/WebCore/dom/
EventNames.h 93 macro(paste) \
Element.h 95 DEFINE_ATTRIBUTE_EVENT_LISTENER(paste);
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 109 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), paste); member in class:WebCore::SVGElementInstance
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js 969 * Calls the backend to figure out if we can paste the clipboard into the active
976 var command = $('paste-command');
981 // We cannot paste into search and recent view.
1009 case 'paste-command':
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebView.h 735 - (void)paste:(id)sender;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 443 text.paste();
  /external/chromium/chrome/browser/resources/file_manager/js/
mock_chrome.js 152 ERROR_PASTING: 'Unable to paste "$1": $2',
153 PASTE_BUTTON_LABEL: 'Paste',
  /external/chromium/testing/gmock/scripts/
gmock_doctor.py 576 print ('Please copy and paste the compiler errors here. Press c-D when '
  /external/webkit/Source/WebCore/editing/
Editor.h 116 void paste();
336 // This is only called on the mac where paste is implemented primarily at the WebKit level.
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 452 void wxWebFrame::Paste()
455 m_impl->frame->editor()->paste();
  /external/chromium/chrome/browser/ui/views/
wrench_menu.cc 319 // CutCopyPasteView is the view containing the cut/copy/paste buttons.
336 TextButton* paste = CreateAndConfigureButton( local
339 copy_background->SetOtherButtons(cut, paste);
607 // The items representing the cut (cut/copy/paste) and zoom menu
  /external/clang/www/demo/
index.cgi 154 Bitter Melon the cat says, paste a C/C++ program in the text box or upload
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java 2034 CharSequence paste = clip.getItemAt(i).getText(); local
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
dataview.js 7 * primarily usefulness is to allow users to copy-paste their data in an easy
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonWindowAdapter.mm     [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebView.idl 27 cpp_quote("enum WebViewCmd { Cut = 100, Copy, Paste, ForwardDelete, SelectAll, Undo, Redo };")
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 9105 paste(min, max); method
10168 private void paste(int min, int max) { method in class:TextView
10175 CharSequence paste = clip.getItemAt(i).coerceToText(getContext()); local
10186 ((Editable) mText).insert(getSelectionEnd(), paste); local
    [all...]
  /frameworks/ex/common/java/com/android/ex/editstyledtext/
EditStyledText.java 108 /** The mode of paste. */
171 private static final int ID_PASTE = android.R.id.paste;
564 /** Start to paste styled text */
777 CharSequence paste) {
780 STR_PASTE = paste;
    [all...]

Completed in 379 milliseconds

1 2 3