OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textAutosizing
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
OverridesSupport.js
70
* @param {boolean}
textAutosizing
72
WebInspector.OverridesSupport.DeviceMetrics = function(width, height, deviceScaleFactor,
textAutosizing
)
77
this.
textAutosizing
=
textAutosizing
;
88
var
textAutosizing
= true;
96
textAutosizing
= splitMetrics[3] == 1;
99
return new WebInspector.OverridesSupport.DeviceMetrics(width, height, deviceScaleFactor,
textAutosizing
);
105
WebInspector.OverridesSupport.DeviceMetrics.parseUserInput = function(widthString, heightString, deviceScaleFactorString,
textAutosizing
)
128
return new WebInspector.OverridesSupport.DeviceMetrics(width, height, deviceScaleFactor,
textAutosizing
);
172
return this.width && this.height ? this.width + "x" + this.height + "x" + this.deviceScaleFactor + "x" + (this.
textAutosizing
? "1" : "0") : ""
[
all
...]
OverridesView.js
517
this._textAutosizingOverrideCheckbox.checked = metrics.
textAutosizing
;
582
this._textAutosizingOverrideCheckbox.checked = metrics.
textAutosizing
;
609
if (this._textAutosizingOverrideCheckbox.checked !== metrics.
textAutosizing
)
610
this._textAutosizingOverrideCheckbox.checked = metrics.
textAutosizing
|| false;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp
641
bool
textAutosizing
= optionalTextAutosizing ? *optionalTextAutosizing : false;
671
if (!deviceMetricsChanged(width, height, deviceScaleFactor, emulateViewport, fitWindow, fontScaleFactor,
textAutosizing
))
681
m_state->setBoolean(PageAgentState::pageAgentTextAutosizingOverride,
textAutosizing
);
686
bool InspectorPageAgent::deviceMetricsChanged(int width, int height, double deviceScaleFactor, bool emulateViewport, bool fitWindow, double fontScaleFactor, bool
textAutosizing
)
697
return width != currentWidth || height != currentHeight || deviceScaleFactor != currentDeviceScaleFactor || emulateViewport != currentEmulateViewport || fitWindow != currentFitWindow || fontScaleFactor != currentFontScaleFactor ||
textAutosizing
!= currentTextAutosizing;
[
all
...]
InspectorPageAgent.h
183
bool deviceMetricsChanged(int width, int height, double deviceScaleFactor, bool emulateViewport, bool fitWindow, double fontScaleFactor, bool
textAutosizing
);
InspectorInstrumentation.idl
512
bool overrideTextAutosizing(Page* page, [DefaultReturn] bool
textAutosizing
);
Completed in 644 milliseconds