OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:appendItem
(Results
1 - 25
of
40
) 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
36
[StrictTypeChecking, RaisesException] SVGLength
appendItem
(SVGLength item);
SVGNumberList.idl
36
[StrictTypeChecking, RaisesException] SVGNumber
appendItem
(SVGNumber item);
SVGPathSegList.idl
36
[StrictTypeChecking, RaisesException] SVGPathSeg
appendItem
(SVGPathSeg newItem);
SVGPointList.idl
35
[StrictTypeChecking, RaisesException] SVGPoint
appendItem
(SVGPoint item);
SVGStringList.idl
35
[StrictTypeChecking, RaisesException] DOMString
appendItem
(DOMString item);
SVGTransformList.idl
36
[StrictTypeChecking, RaisesException] SVGTransform
appendItem
(SVGTransform item);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HandlerRegistry.js
115
contextMenu.
appendItem
(WebInspector.openLinkExternallyLabel(), WebInspector.openResource.bind(WebInspector, contentProvider.contentURL(), false));
119
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Open using %s" : "Open Using %s", handler),
122
contextMenu.
appendItem
(WebInspector.copyLinkAddressLabel(), InspectorFrontendHost.copyText.bind(InspectorFrontendHost, contentProvider.contentURL()));
159
contextMenu.
appendItem
(WebInspector.UIString("Save"), save.bind(this, false));
160
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Save as..." : "Save As..."), save.bind(this, true));
182
contextMenu.
appendItem
(WebInspector.openLinkExternallyLabel(), WebInspector.openResource.bind(WebInspector, resourceURL, false));
184
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Open link in Resources panel" : "Open Link in Resources Panel"), WebInspector.openResource.bind(null, resourceURL, true));
185
contextMenu.
appendItem
(WebInspector.copyLinkAddressLabel(), InspectorFrontendHost.copyText.bind(InspectorFrontendHost, resourceURL));
SourcesNavigator.js
195
contextMenu.
appendItem
(WebInspector.UIString("New"), this._handleCreateSnippet.bind(this));
206
contextMenu.
appendItem
(WebInspector.UIString("Run"), this._handleEvaluateSnippet.bind(this, uiSourceCode));
207
contextMenu.
appendItem
(WebInspector.UIString("Rename"), this.requestRename.bind(this, uiSourceCode));
208
contextMenu.
appendItem
(WebInspector.UIString("Remove"), this._handleRemoveSnippet.bind(this, uiSourceCode));
210
contextMenu.
appendItem
(WebInspector.UIString("New"), this._handleCreateSnippet.bind(this));
ImageView.js
134
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Copy image URL" : "Copy Image URL"), this._copyImageURL.bind(this));
136
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Copy image as Data URL" : "Copy Image As Data URL"), this._copyImageAsDataURL.bind(this));
137
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Open image in new tab" : "Open Image in New Tab"), this._openInNewTab.bind(this));
BreakpointsSidebarPane.js
68
contextMenu.
appendItem
(breakpointActiveTitle, WebInspector.debuggerModel.setBreakpointsActive.bind(WebInspector.debuggerModel, !breakpointActive));
193
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), breakpoint.remove.bind(breakpoint));
196
contextMenu.
appendItem
(removeAllTitle, this._breakpointManager.removeAllBreakpoints.bind(this._breakpointManager));
204
contextMenu.
appendItem
(breakpointActiveTitle, WebInspector.debuggerModel.setBreakpointsActive.bind(WebInspector.debuggerModel, !breakpointActive));
222
contextMenu.
appendItem
(enableTitle, this._breakpointManager.toggleAllBreakpoints.bind(this._breakpointManager, true), !(enableBreakpointCount != breakpoints.length));
223
contextMenu.
appendItem
(disableTitle, this._breakpointManager.toggleAllBreakpoints.bind(this._breakpointManager, false), !(enableBreakpointCount > 1));
301
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add breakpoint" : "Add Breakpoint"), this._addButtonClicked.bind(this));
414
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add breakpoint" : "Add Breakpoint"), this._addButtonClicked.bind(this));
415
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), removeBreakpoint.bind(this));
416
contextMenu.
appendItem
(removeAllTitle, removeAllBreakpoints.bind(this))
[
all
...]
JavaScriptSourceFrame.js
133
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Continue to here" : "Continue to Here"), this._continueToLine.bind(this, lineNumber));
138
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add breakpoint" : "Add Breakpoint"), this._setBreakpoint.bind(this, lineNumber, "", true));
139
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add conditional breakpoint?" : "Add Conditional Breakpoint?"), this._editBreakpointCondition.bind(this, lineNumber));
142
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), breakpoint.remove.bind(breakpoint));
143
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Edit breakpoint?" : "Edit Breakpoint?"), this._editBreakpointCondition.bind(this, lineNumber, breakpoint));
145
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Disable breakpoint" : "Disable Breakpoint"), breakpoint.setEnabled.bind(breakpoint, false));
147
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Enable breakpoint" : "Enable Breakpoint"), breakpoint.setEnabled.bind(breakpoint, true));
157
contextMenu.
appendItem
(addToWatchLabel, this._innerAddToWatch.bind(this, selection));
159
contextMenu.
appendItem
(evaluateLabel, WebInspector.evaluateInConsole.bind(WebInspector, selection));
166
contextMenu.
appendItem
(liveEditLabel, liveEdit.bind(this))
[
all
...]
NavigatorView.js
280
contextMenu.
appendItem
(addFolderLabel, addFolder);
342
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Refresh parent" : "Refresh Parent"), this._handleContextMenuRefresh.bind(this, project, path));
343
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Duplicate file" : "Duplicate File"), this._handleContextMenuCreate.bind(this, project, path, uiSourceCode));
344
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Exclude parent folder" : "Exclude Parent Folder"), this._handleContextMenuExclude.bind(this, project, path));
345
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Delete file" : "Delete File"), this._handleContextMenuDelete.bind(this, uiSourceCode));
368
contextMenu.
appendItem
(WebInspector.UIString("Refresh"), this._handleContextMenuRefresh.bind(this, project, path));
369
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "New file" : "New File"), this._handleContextMenuCreate.bind(this, project, path));
370
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Exclude folder" : "Exclude Folder"), this._handleContextMenuExclude.bind(this, project, path));
384
contextMenu.
appendItem
(removeFolderLabel, removeFolder);
[
all
...]
WatchExpressionsSidebarPane.js
330
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add watch expression" : "Add Watch Expression"), this.addNewExpressionAndEdit.bind(this));
409
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Add watch expression" : "Add Watch Expression"), this.treeOutline.section.addNewExpressionAndEdit.bind(this.treeOutline.section));
410
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Delete watch expression" : "Delete Watch Expression"), this._deleteButtonClicked.bind(this));
413
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Delete all watch expressions" : "Delete All Watch Expressions"), this._deleteAllButtonClicked.bind(this));
CallStackSidebarPane.js
106
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Restart frame" : "Restart Frame"), this._restartFrame.bind(this, placard));
108
contextMenu.
appendItem
(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Copy stack trace" : "Copy Stack Trace"), this._copyStackTrace.bind(this));
CookieItemsView.js
181
contextMenu.
appendItem
(WebInspector.UIString("Refresh"), this._update.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/v8/custom/
V8InspectorFrontendHostCustom.cpp
77
menu.
appendItem
(item);
88
menu.
appendItem
(item);
97
menu.
appendItem
(menuItem);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGStaticListPropertyTearOff.h
79
ListItemType
appendItem
(const ListItemType& newItem, ExceptionState& exceptionState)
SVGPathSegListPropertyTearOff.h
105
PassListItemType
appendItem
(PassListItemType passNewItem, ExceptionState& exceptionState)
SVGListPropertyTearOff.h
115
PassListItemTearOff
appendItem
(PassListItemTearOff passNewItem, ExceptionState& exceptionState)
180
// (for example: "textElement.x.baseVal.
appendItem
(svgsvgElement.createSVGLength())")
185
// (for example: "textElement.x.baseVal.
appendItem
(rectElement.width.baseVal)")
/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/inspector/
InspectorFrontendHost.cpp
87
menu->
appendItem
(m_items[i]);
Completed in 1005 milliseconds
1
2