OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fixed_width
(Results
1 - 9
of
9
) sorted by null
/external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_point.c
351
int
fixed_width
;
local
375
fixed_width
= MAX2(FIXED_ONE, subpixel_snap(size));
377
x0 = subpixel_snap(v0[0][0] - setup->pixel_offset) -
fixed_width
/2;
378
y0 = subpixel_snap(v0[0][1] - setup->pixel_offset) -
fixed_width
/2;
381
bbox.x1 = (x0 +
fixed_width
+ (FIXED_ONE-1)) >> FIXED_ORDER;
383
bbox.y1 = (y0 +
fixed_width
+ (FIXED_ONE-1) + adj) >> FIXED_ORDER;
406
fixed_width
= MAX2(FIXED_ONE,
408
int_width =
fixed_width
>> FIXED_ORDER;
475
info.dx12 =
fixed_width
;
476
info.dy01 =
fixed_width
;
[
all
...]
lp_setup_line.c
301
int
fixed_width
= util_iround(width) * FIXED_ONE;
local
446
y[0] = subpixel_snap(v1[0][1] + y_offset - setup->pixel_offset) -
fixed_width
/2;
447
y[1] = subpixel_snap(v2[0][1] + y_offset_end - setup->pixel_offset) -
fixed_width
/2;
448
y[2] = subpixel_snap(v2[0][1] + y_offset_end - setup->pixel_offset) +
fixed_width
/2;
449
y[3] = subpixel_snap(v1[0][1] + y_offset - setup->pixel_offset) +
fixed_width
/2;
538
x[0] = subpixel_snap(v1[0][0] + x_offset - setup->pixel_offset) -
fixed_width
/2;
539
x[1] = subpixel_snap(v2[0][0] + x_offset_end - setup->pixel_offset) -
fixed_width
/2;
540
x[2] = subpixel_snap(v2[0][0] + x_offset_end - setup->pixel_offset) +
fixed_width
/2;
541
x[3] = subpixel_snap(v1[0][0] + x_offset - setup->pixel_offset) +
fixed_width
/2;
/frameworks/base/core/tests/coretests/res/layout/
table_layout_fixed_width.xml
29
<TextView android:id="@+id/
fixed_width
"
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
FixedWidthTest.java
44
mFixedWidth = activity.findViewById(R.id.
fixed_width
);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BarRenderer.java
38
private BarWidthStyle widthStyle = BarWidthStyle.
FIXED_WIDTH
; // default Width Style
49
FIXED_WIDTH
, // bar width is always barWidth
58
* Sets the width of the bars when using the
FIXED_WIDTH
render style
84
case
FIXED_WIDTH
:
190
case
FIXED_WIDTH
:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
fmmodule.c
95
info.
fixed_width
,
/external/python/cpython2/Doc/library/
fm.rst
94
``(printermatched,
fixed_width
, xorig, yorig, xsize, ysize, height, nglyphs)``.
/external/python/cpython2/Modules/
fmmodule.c
95
info.
fixed_width
,
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
BarPlotExampleActivity.java
181
spWidthStyle.setSelection(BarRenderer.BarWidthStyle.
FIXED_WIDTH
.ordinal());
184
if (BarRenderer.BarWidthStyle.
FIXED_WIDTH
.equals(spWidthStyle.getSelectedItem())) {
Completed in 633 milliseconds