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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
ContextMenu.h 42 void appendItem(const ContextMenuItem& item) { m_items.append(item); }
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthList.idl 42 [RaisesException] SVGLength appendItem(SVGLength item);
SVGNumberList.idl 42 [RaisesException] SVGNumber appendItem(SVGNumber item);
SVGPathSegList.idl 42 [RaisesException] SVGPathSeg appendItem(SVGPathSeg newItem);
SVGPointList.idl 41 [RaisesException] SVGPoint appendItem(SVGPoint item);
SVGStringList.idl 41 [RaisesException] DOMString appendItem(DOMString item);
SVGStringListTearOff.h 130 String appendItem(const String& item, ExceptionState& exceptionState)
137 target()->appendItem(item);
SVGTransformList.idl 42 [RaisesException] SVGTransform appendItem(SVGTransform item);
SVGStringList.h 73 void appendItem(const String&);
SVGPathSegList.cpp 123 PassRefPtr<SVGPathSeg> SVGPathSegList::appendItem(PassRefPtr<SVGPathSeg> passItem)
126 RefPtr<SVGPathSeg> item = Base::appendItem(passItem);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
HandlerRegistry.js 113 contextMenu.appendItem(WebInspector.openLinkExternallyLabel(), this._openInNewTab.bind(this, contentProvider.contentURL()));
117 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Open using %s" : "Open Using %s", handler),
120 contextMenu.appendItem(WebInspector.copyLinkAddressLabel(), InspectorFrontendHost.copyText.bind(InspectorFrontendHost, contentProvider.contentURL()));
156 contextMenu.appendItem(WebInspector.UIString("Save"), save.bind(null, false));
161 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Save as..." : "Save As..."), save.bind(null, true));
184 contextMenu.appendItem(WebInspector.openLinkExternallyLabel(), this._openInNewTab.bind(this, resourceURL));
195 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Open link in Resources panel" : "Open Link in Resources Panel"), openInResourcesPanel.bind(null, resourceURL));
196 contextMenu.appendItem(WebInspector.copyLinkAddressLabel(), InspectorFrontendHost.copyText.bind(InspectorFrontendHost, resourceURL));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
SourcesNavigator.js 155 contextMenu.appendItem(WebInspector.UIString("New"), this._handleCreateSnippet.bind(this));
166 contextMenu.appendItem(WebInspector.UIString("Run"), this._handleEvaluateSnippet.bind(this, uiSourceCode));
167 contextMenu.appendItem(WebInspector.UIString("Rename"), this.rename.bind(this, uiSourceCode));
168 contextMenu.appendItem(WebInspector.UIString("Remove"), this._handleRemoveSnippet.bind(this, uiSourceCode));
170 contextMenu.appendItem(WebInspector.UIString("New"), this._handleCreateSnippet.bind(this));
CallStackSidebarPane.js 155 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Restart frame" : "Restart Frame"), this._restartFrame.bind(this, placard));
157 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Copy stack trace" : "Copy Stack Trace"), this._copyStackTrace.bind(this));
192 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Stop blackboxing" : "Stop Blackboxing"), this._handleContextMenuBlackboxURL.bind(this, url, isContentScript, false));
195 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Blackbox script" : "Blackbox Script"), this._handleContextMenuBlackboxURL.bind(this, url, false, true));
197 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Blackbox all content scripts" : "Blackbox All Content Scripts"), this._handleContextMenuBlackboxURL.bind(this, url, true, true));
JavaScriptSourceFrame.js 249 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Continue to here" : "Continue to Here"), this._continueToLine.bind(this, lineNumber));
253 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add breakpoint" : "Add Breakpoint"), this._setBreakpoint.bind(this, lineNumber, 0, "", true));
254 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add conditional breakpoint?" : "Add Conditional Breakpoint?"), this._editBreakpointCondition.bind(this, lineNumber));
257 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), breakpoint.remove.bind(breakpoint));
258 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Edit breakpoint?" : "Edit Breakpoint?"), this._editBreakpointCondition.bind(this, lineNumber, breakpoint));
260 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Disable breakpoint" : "Disable Breakpoint"), breakpoint.setEnabled.bind(breakpoint, false));
262 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Enable breakpoint" : "Enable Breakpoint"), breakpoint.setEnabled.bind(breakpoint, true));
272 contextMenu.appendItem(addToWatchLabel, this._innerAddToWatch.bind(this, selection));
274 contextMenu.appendItem(evaluateLabel, this._evaluateInConsole.bind(this, selection));
284 contextMenu.appendItem(liveEditLabel, liveEdit.bind(this, liveEditSupport))
    [all...]
WatchExpressionsSidebarPane.js 349 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add watch expression" : "Add Watch Expression"), this.addNewExpressionAndEdit.bind(this));
433 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add watch expression" : "Add Watch Expression"), this.treeOutline.section.addNewExpressionAndEdit.bind(this.treeOutline.section));
434 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Delete watch expression" : "Delete Watch Expression"), this._deleteButtonClicked.bind(this));
437 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Delete all watch expressions" : "Delete All Watch Expressions"), this._deleteAllButtonClicked.bind(this));
BreakpointsSidebarPane.js 74 contextMenu.appendItem(breakpointActiveTitle, this._breakpointManager.setBreakpointsActive.bind(this._breakpointManager, !breakpointActive));
199 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), breakpoint.remove.bind(breakpoint));
202 contextMenu.appendItem(removeAllTitle, this._breakpointManager.removeAllBreakpoints.bind(this._breakpointManager));
224 contextMenu.appendItem(enableTitle, this._breakpointManager.toggleAllBreakpoints.bind(this._breakpointManager, true), !(enableBreakpointCount != breakpoints.length));
225 contextMenu.appendItem(disableTitle, this._breakpointManager.toggleAllBreakpoints.bind(this._breakpointManager, false), !(enableBreakpointCount > 1));
316 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add breakpoint" : "Add Breakpoint"), this._addButtonClicked.bind(this));
449 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add breakpoint" : "Add Breakpoint"), this._addButtonClicked.bind(this));
450 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), removeBreakpoint.bind(this));
451 contextMenu.appendItem(removeAllTitle, removeAllBreakpoints.bind(this));
    [all...]
NavigatorView.js 319 contextMenu.appendItem(addFolderLabel, addFolder);
386 contextMenu.appendItem(WebInspector.UIString("Rename\u2026"), this._handleContextMenuRename.bind(this, uiSourceCode));
387 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Make a copy\u2026" : "Make a Copy\u2026"), this._handleContextMenuCreate.bind(this, project, path, uiSourceCode));
388 contextMenu.appendItem(WebInspector.UIString("Delete"), this._handleContextMenuDelete.bind(this, uiSourceCode));
413 contextMenu.appendItem(WebInspector.UIString("Refresh"), this._handleContextMenuRefresh.bind(this, project, path));
414 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "New file" : "New File"), this._handleContextMenuCreate.bind(this, project, path));
415 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Exclude folder" : "Exclude Folder"), this._handleContextMenuExclude.bind(this, project, path));
429 contextMenu.appendItem(removeFolderLabel, removeFolder);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
CustomContextMenuProvider.cpp 64 contextMenu.appendItem(ContextMenuItem(SeparatorType, ContextMenuItemCustomTagNoAction, String()));
75 contextMenu.appendItem(ContextMenuItem(ActionType, static_cast<ContextMenuAction>(ContextMenuItemBaseCustomTag + m_menuItems.size() - 1), labelString));
94 contextMenu.appendItem(ContextMenuItem(SubmenuType, ContextMenuItemCustomTagNoAction, labelString, &subMenu));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
ImageView.js 115 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Copy image URL" : "Copy Image URL"), this._copyImageURL.bind(this));
117 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Copy image as Data URL" : "Copy Image As Data URL"), this._copyImageAsDataURL.bind(this));
118 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Open image in new tab" : "Open Image in New Tab"), this._openInNewTab.bind(this));
  /external/chromium_org/third_party/skia/src/views/
SkOSMenu.cpp 136 int SkOSMenu::appendItem(const char label[], Type type, const char slotName[],
147 return appendItem(label, SkOSMenu::kAction_Type, "", evt);
168 return appendItem(label, SkOSMenu::kList_Type, slotName, evt);
178 return appendItem(label, SkOSMenu::kSlider_Type, slotName, evt);
185 return appendItem(label, SkOSMenu::kSwitch_Type, slotName, evt);
192 return appendItem(label, SkOSMenu::kTriState_Type, slotName, evt);
199 return appendItem(label, SkOSMenu::kTextField_Type, slotName, evt);
  /external/skia/src/views/
SkOSMenu.cpp 136 int SkOSMenu::appendItem(const char label[], Type type, const char slotName[],
147 return appendItem(label, SkOSMenu::kAction_Type, "", evt);
168 return appendItem(label, SkOSMenu::kList_Type, slotName, evt);
178 return appendItem(label, SkOSMenu::kSlider_Type, slotName, evt);
185 return appendItem(label, SkOSMenu::kSwitch_Type, slotName, evt);
192 return appendItem(label, SkOSMenu::kTriState_Type, slotName, evt);
199 return appendItem(label, SkOSMenu::kTextField_Type, slotName, evt);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8InspectorFrontendHostCustom.cpp 80 menu.appendItem(item);
91 menu.appendItem(item);
100 menu.appendItem(menuItem);
  /external/chromium_org/third_party/skia/include/views/
SkOSMenu.h 121 int appendItem(const char label[], Type type, const char slotName[],
  /external/skia/include/views/
SkOSMenu.h 121 int appendItem(const char label[], Type type, const char slotName[],
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyTearOffHelper.h 53 // (for example: "textElement.x.baseVal.appendItem(rectElement.width.baseVal)")
180 PassRefPtr<ItemTearOffType> appendItem(PassRefPtr<ItemTearOffType> passItem, ExceptionState& exceptionState)
194 RefPtr<ItemPropertyType> value = toDerived()->target()->appendItem(getValueForInsertionFromTearOff(item));

Completed in 649 milliseconds

1 2