Home
last modified time | relevance | path

Searched refs:Inches (Results 1 – 25 of 4467) sorted by relevance

12345678910>>...179

/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBveApi/World/UnitConversions/
H A DLength.cs15 Inches, enumerator
28 RegisterConversion(UnitOfLength.Inches, v => v * 39.37, v => v / 39.37); in LengthConverter()
35 …{"in", UnitOfLength.Inches}, {"ins", UnitOfLength.Inches}, {"inch", UnitOfLength.Inches}, {"inches… in LengthConverter()
/dports/cad/librepcb/librepcb-0.1.6/libs/librepcb/common/units/
H A Dlengthunit.cpp49 case LengthUnit_t::Inches: in toStr()
68 case LengthUnit_t::Inches: in toStringTr()
87 case LengthUnit_t::Inches: in toShortStringTr()
106 case LengthUnit_t::Inches: in getReasonableNumberOfDecimals()
125 case LengthUnit_t::Inches: in getUserInputSuffixes()
144 case LengthUnit_t::Inches: in convertToUnit()
163 case LengthUnit_t::Inches: in convertToUnit()
182 case LengthUnit_t::Inches: in convertFromUnit()
201 case LengthUnit_t::Inches: in convertFromUnit()
/dports/textproc/py-python-docx/python-docx-0.8.11/docs/user/
H A Dsections.rst95 (PORTRAIT (0), 7772400, 10058400) # (Inches(8.5), Inches(11))
110 >>> from docx.shared import Inches
112 (1143000, 1143000) # (Inches(1.25), Inches(1.25))
114 (914400, 914400) # (Inches(1), Inches(1))
118 (457200, 457200) # (Inches(0.5), Inches(0.5))
119 >>> section.left_margin = Inches(1.5)
120 >>> section.right_margin = Inches(1)
/dports/graphics/kxstitch/kxstitch-2.2.0/src/
H A DConfigurationDialogs.cpp51 …ation::EnumEditor_ClothCountUnits::Centimeters : Configuration::EnumEditor_ClothCountUnits::Inches; in on_kcfg_Editor_ClothCountUnits_activated()
60 if (clothCountTypeSelected == Configuration::EnumEditor_ClothCountUnits::Inches) { in on_kcfg_Editor_ClothCountUnits_activated()
96 case Configuration::EnumDocument_UnitsFormat::Inches: in on_kcfg_Document_UnitsFormat_activated()
105 …urrentClothCountUnitsIndex == Configuration::EnumEditor_ClothCountUnits::Inches) { // from stitche… in on_kcfg_Document_UnitsFormat_activated()
119 case Configuration::EnumDocument_UnitsFormat::Inches: in on_kcfg_Document_UnitsFormat_activated()
150 …urrentClothCountUnitsIndex == Configuration::EnumEditor_ClothCountUnits::Inches) { // from centime… in on_kcfg_Document_UnitsFormat_activated()
157 …case Configuration::EnumDocument_UnitsFormat::Inches: // from centimeters to inches with cloth cou… in on_kcfg_Document_UnitsFormat_activated()
204 case Configuration::EnumDocument_UnitsFormat::Inches: in setPatternSizePrecision()
230 …ation::EnumEditor_ClothCountUnits::Centimeters : Configuration::EnumEditor_ClothCountUnits::Inches; in setClothCountPrecision()
234 case Configuration::EnumEditor_ClothCountUnits::Inches: in setClothCountPrecision()
H A DDocument.cpp81 case Configuration::EnumDocument_UnitsFormat::Inches: in initialiseNew()
96 if (clothCountUnits == Configuration::EnumEditor_ClothCountUnits::Inches) { in initialiseNew()
458 … setProperty(QStringLiteral("clothCountUnits"), Configuration::EnumEditor_ClothCountUnits::Inches); in readPCStitch5File()
736 … setProperty(QStringLiteral("clothCountUnits"), Configuration::EnumEditor_ClothCountUnits::Inches); in readPCStitch6File()
1027 … setProperty(QStringLiteral("clothCountUnits"), Configuration::EnumEditor_ClothCountUnits::Inches); in readPCStitch7File()
1310 … setProperty(QStringLiteral("clothCountUnits"), Configuration::EnumEditor_ClothCountUnits::Inches); in readKXStitchV2File()
1821 setProperty(QStringLiteral("unitsFormat"), Configuration::EnumDocument_UnitsFormat::Inches); in readKXStitchV5File()
2027 setProperty(QStringLiteral("unitsFormat"), Configuration::EnumDocument_UnitsFormat::Inches); in readKXStitchV6File()
2224 Configuration::EnumDocument_UnitsFormat::Inches in readKXStitchV7File()
2227 Configuration::EnumEditor_ClothCountUnits::Inches, // was Stitches in readKXStitchV7File()
[all …]
/dports/textproc/py-python-docx/python-docx-0.8.11/features/steps/
H A Dsection.py14 from docx.shared import Inches
91 new_value = Inches(float(inches))
107 context.section.page_height = Inches(float(y))
112 context.section.page_width = Inches(float(x))
227 expected_value = Inches(float(inches))
243 assert context.section.page_width == Inches(float(x))
248 assert context.section.page_height == Inches(float(y))
H A Dtabstops.py11 from docx.shared import Inches
57 tab_stops.add_tab_stop(Inches(1.75))
135 assert tab_stops[0].position == Inches(1)
136 assert tab_stops[1].position == Inches(3)
H A Dtable.py18 from docx.shared import Inches
187 context.column = context.table_.add_column(Inches(1.0))
260 new_value = {'1 inch': Inches(1)}[width]
420 assert context.column.width == Inches(1)
445 expected_width = {'None': None, '1 inch': Inches(1)}[width]
481 assert cell.width == Inches(inches), 'got %s' % cell.width.inches
487 expected_width = Inches(float(inches))
495 expected_width = Inches(float(inches))
H A Ddocument.py14 from docx.shared import Inches
128 width=Inches(1.75), height=Inches(2.5)
136 test_file('monty-truth.png'), height=Inches(1.5)
144 test_file('monty-truth.png'), width=Inches(1.5)
H A Dshape.py16 from docx.shared import Inches
55 inline_shape.width = Inches(1)
56 inline_shape.height = Inches(0.5)
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/issues/
H A Dissue-21554.stderr1 error[E0606]: casting `fn(i32) -> Inches {Inches}` as `f32` is invalid
4 LL | Inches as f32;
H A Dissue-21554.rs1 struct Inches(i32); struct
4 Inches as f32; in main()
/dports/lang/rust/rustc-1.58.1-src/src/doc/rust-by-example/src/trait/
H A Dderive.md21 // `Inches`, a tuple struct that can be printed
23 struct Inches(i32);
25 impl Inches {
27 let &Inches(inches) = self;
47 let foot = Inches(12);
/dports/textproc/py-python-docx/python-docx-0.8.11/tests/
H A Dtest_section.py13 from docx.shared import Inches
326 ('w:sectPr', 'left_margin', Inches(1),
328 ('w:sectPr', 'right_margin', Inches(0.5),
332 ('w:sectPr', 'bottom_margin', Inches(0.75),
334 ('w:sectPr', 'gutter', Inches(0.25),
336 ('w:sectPr', 'header_distance', Inches(1.25),
338 ('w:sectPr', 'footer_distance', Inches(1.35),
373 ('w:sectPr/w:pgSz{w:h=2880}', Inches(2)),
384 (Inches(2), 'w:sectPr/w:pgSz{w:h=2880}'),
393 ('w:sectPr/w:pgSz{w:w=1440}', Inches(1)),
[all …]
/dports/print/limereport/LimeReport-1.5.35/limereport/objectinspector/propertyItems/
H A Dlrmarginpropitem.cpp41 case LimeReport::BaseDesignIntf::Inches: in displayValue()
74 case LimeReport::BaseDesignIntf::Inches: in valueInUnits()
85 case LimeReport::BaseDesignIntf::Inches: in valueInReportUnits()
97 case LimeReport::BaseDesignIntf::Inches: in unitShortName()
H A Dlrrectproptem.cpp171 case LimeReport::BaseDesignIntf::Inches: in valueInUnits()
182 case LimeReport::BaseDesignIntf::Inches: in valueInReportUnits()
193 case LimeReport::BaseDesignIntf::Inches: in unitShortName()
255 case LimeReport::BaseDesignIntf::Inches: in rectInUnits()
269 case LimeReport::BaseDesignIntf::Inches: in unitShortName()
/dports/graphics/R-cran-s2/s2/src/s2/util/units/
H A Dlength-units.h59 typedef PhysicalUnit<Float, LengthBase, InchesConversion> Inches; typedef
77 typedef Length<float>::Inches Inches; typedef
101 return typename Length<ValueType>::Inches(u).value(); in GetInches()
/dports/graphics/s2/s2geometry-0.9.0/src/s2/util/units/
H A Dlength-units.h59 typedef PhysicalUnit<Float, LengthBase, InchesConversion> Inches; typedef
77 typedef Length<float>::Inches Inches; typedef
101 return typename Length<ValueType>::Inches(u).value(); in GetInches()
/dports/graphics/py-s2/s2geometry-0.9.0/src/s2/util/units/
H A Dlength-units.h59 typedef PhysicalUnit<Float, LengthBase, InchesConversion> Inches; typedef
77 typedef Length<float>::Inches Inches; typedef
101 return typename Length<ValueType>::Inches(u).value(); in GetInches()
/dports/games/flightgear/flightgear-2020.3.11/src/FDM/LaRCsim/
H A DIO360.cxx479 float Inches; in Calc_Manifold_Pressure() local
483 Inches = MinMan + (LeverPosn * (MaxMan - MinMan) / 100); in Calc_Manifold_Pressure()
486 if(Inches < MinMan) in Calc_Manifold_Pressure()
487 Inches = MinMan; in Calc_Manifold_Pressure()
491 Inches = 29.92; in Calc_Manifold_Pressure()
493 return Inches; in Calc_Manifold_Pressure()
/dports/textproc/py-python-docx/python-docx-0.8.11/docx/image/
H A Dimage.py15 from ..shared import Emu, Inches, lazyproperty
126 return Inches(self.px_width / self.horz_dpi)
134 return Inches(self.px_height / self.vert_dpi)
/dports/textproc/py-python-docx/python-docx-0.8.11/docx/parts/
H A Dimage.py15 from docx.shared import Emu, Inches
36 return Inches(width_in_inches)
/dports/print/fig2dev/fig2dev-3.2.8a/fig2dev/tests/
H A Dtestsuite2638 Inches
2693 Inches
2748 Inches
2803 Inches
2858 Inches
2913 Inches
2969 Inches
3024 Inches
3079 Inches
3136 Inches
[all …]
/dports/graphics/pinta/pinta-1.7.1/Pinta/
H A DMainWindow.cs224 … PintaCore.Actions.View.Inches.Activated += (o, e2) => { canvas.RulerMetric = MetricType.Inches; }; in Workspace_DocumentCreated()
230 if (PintaCore.Actions.View.Inches.Active) in GetCurrentRulerMetric()
231 return MetricType.Inches; in GetCurrentRulerMetric()
506 case MetricType.Inches: in LoadUserSettings()
507 PintaCore.Actions.View.Inches.Activate (); in LoadUserSettings()
524 if (PintaCore.Actions.View.Inches.Active) in SaveUserSettings()
525 ruler_metric = MetricType.Inches; in SaveUserSettings()
/dports/www/grafana8/grafana-8.3.6/vendor/golang.org/x/exp/shiny/example/layout/
H A Dmain.go74 colorPatch(color.Black, unit.Inches(1.5), unit.Inches(1)),

12345678910>>...179