OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UIString
(Results
51 - 56
of
56
) sorted by null
1
2
3
/external/webkit/Source/WebCore/inspector/front-end/
ElementsTreeOutline.js
273
contextMenu.appendItem(WebInspector.
UIString
("Reveal in Elements Panel"), focusElement.bind(this));
421
this.tooltip = WebInspector.
UIString
("%d \xd7 %d pixels", offsetWidth, offsetHeight);
423
this.tooltip = WebInspector.
UIString
("%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)", offsetWidth, offsetHeight, naturalWidth, naturalHeight);
635
this.expandAllButtonElement.textContent = WebInspector.
UIString
("Show All Nodes (%d More)", childNodeCount - expandedChildCount);
781
contextMenu.appendItem(WebInspector.
UIString
("Add Attribute"), this._addNewAttribute.bind(this));
783
contextMenu.appendItem(WebInspector.
UIString
("Edit Attribute"), this._startEditingAttribute.bind(this, attribute, event.target));
787
contextMenu.appendItem(WebInspector.
UIString
("Edit as HTML"), this._editAsHTML.bind(this));
788
contextMenu.appendItem(WebInspector.
UIString
("Copy as HTML"), this._copyHTML.bind(this));
789
contextMenu.appendItem(WebInspector.
UIString
("Delete Node"), this.remove.bind(this));
801
contextMenu.appendItem(WebInspector.
UIString
("Edit Text"), this._startEditingTextNode.bind(this, textNode))
[
all
...]
DetailedHeapshotGridNodes.js
232
data["shallowSize"] = view.showShallowSizeAsPercent ? WebInspector.
UIString
("%.2f%%", this._shallowSizePercent) : Number.bytesToString(this._shallowSize);
233
data["retainedSize"] = view.showRetainedSizeAsPercent ? WebInspector.
UIString
("%.2f%%", this._retainedSizePercent) : Number.bytesToString(this._retainedSize);
474
data["count"] = view.showCountAsPercent ? WebInspector.
UIString
("%.2f%%", this._countPercent) : this._count;
475
data["shallowSize"] = view.showShallowSizeAsPercent ? WebInspector.
UIString
("%.2f%%", this._shallowSizePercent) : Number.bytesToString(this._shallowSize);
476
data["retainedSize"] = "> " + (view.showRetainedSizeAsPercent ? WebInspector.
UIString
("%.2f%%", this._retainedSizePercent) : Number.bytesToString(this._retainedSize));
644
data["countDelta"] = WebInspector.
UIString
("%s%d", this._signForDelta(countDelta), Math.abs(countDelta));
648
data["sizeDelta"] = WebInspector.
UIString
("%s%s", this._signForDelta(sizeDelta), Number.bytesToString(Math.abs(sizeDelta)));
SummaryBar.js
87
var totalLegendLabel = this._makeLegendElement(WebInspector.
UIString
("Total"), this.calculator.formatValue(graphInfo.total));
DataGrid.js
893
contextMenu.appendItem(WebInspector.
UIString
("Add New"), this._startEditing.bind(this, event.target));
895
contextMenu.appendItem(WebInspector.
UIString
("Edit"), this._startEditing.bind(this, event.target));
898
contextMenu.appendItem(WebInspector.
UIString
("Delete"), this._deleteCallback.bind(this, gridNode));
[
all
...]
HeapSnapshot.js
340
return WebInspector.
UIString
("(system)");
348
return WebInspector.
UIString
("(compiled code)");
[
all
...]
DebuggerPresentationModel.js
633
callback(WebInspector.
UIString
("N/A"));
Completed in 155 milliseconds
1
2
3