OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:barx
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineFlameChart.js
470
* @param {number}
barX
477
decorateEntry: function(entryIndex, context, text,
barX
, barY, barWidth, barHeight, offsetToPosition)
486
context.moveTo(
barX
, barY);
487
context.lineTo(
barX
, context.canvas.height);
495
barX
+= padding;
505
context.moveTo(
barX
+ radiusX, barY);
506
context.lineTo(
barX
+ barWidth - radiusX, barY);
507
context.quadraticCurveTo(
barX
+ barWidth, barY,
barX
+ barWidth, barY + radiusY);
508
context.lineTo(
barX
+ barWidth, barY + barHeight - radiusY)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
FlameChart.js
200
* @param {number}
barX
207
decorateEntry: function(entryIndex, context, text,
barX
, barY, barWidth, barHeight, timeToPosition) { },
831
var
barX
= this._timeToPosition(entryStartTime);
832
if (
barX
>= lastDrawOffset)
835
lastDrawOffset =
barX
;
860
var
barX
= this._timeToPosition(entryStartTime);
862
var barWidth = Math.max(barRight -
barX
, minWidth);
866
context.moveTo(
barX
+ this._markerRadius, barY + barHeight / 2);
867
context.arc(
barX
, barY + barHeight / 2, this._markerRadius, 0, Math.PI * 2);
870
context.rect(
barX
, barY, barWidth, barHeight)
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
FrameWork.py
902
self.
barx
= self.bary = None
909
self.
barx
= self.bary = None
917
self.
barx
= NewControl(self.wid, rect, "", 1, vx, 0, 32767, 16, 0)
918
if not self.barx_enabled: self.
barx
.HiliteControl(255)
927
self.
barx
= self.bary = None
933
if self.
barx
and self.barx_enabled:
934
self.
barx
.ShowControl() # jvr
938
if self.
barx
:
939
self.
barx
.HideControl() # jvr; An inactive window should have *hidden*
949
if self.
barx
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileFlameChart.js
299
* @param {number}
barX
306
decorateEntry: function(entryIndex, context, text,
barX
, barY, barWidth, barHeight, timeToPosition)
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImplTest.cpp
533
handleClient()->didReceiveData(handle(), true, WebSocketHandle::MessageTypeText, "
BARX
", 3);
/external/chromium_org/v8/test/mjsunit/
regexp.js
300
assertEquals("
barx
", "foox".replace(re, "bar$01"), "$01 2");
Completed in 160 milliseconds