Home
last modified time | relevance | path

Searched defs:Axis (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/include/core/
DSkFontParameters.h17 struct Axis { struct
18 constexpr Axis() : tag(0), min(0), def(0), max(0), flags(0) {} in Axis() function
19 constexpr Axis(SkFourByteTag tag, float min, float def, float max, bool hidden) : in Axis() function
23 SkFourByteTag tag;
25 float min;
27 float def;
29 float max;
31 bool isHidden() const { return flags & HIDDEN; } in isHidden()
33 void setHidden(bool hidden) { flags = hidden ? (flags | HIDDEN) : (flags & ~HIDDEN); } in setHidden()
37 uint16_t flags;
/third_party/flutter/skia/include/core/
DSkFontParameters.h17 struct Axis { struct
19 SkFourByteTag tag;
21 float min;
23 float def;
25 float max;
27 bool isHidden() const { return flags & HIDDEN; } in isHidden()
29 void setHidden(bool hidden) { flags = hidden ? (flags | HIDDEN) : (flags & ~HIDDEN); } in setHidden()
33 uint16_t flags;
DSkFontArguments.h25 struct Axis { struct
26 SkFourByteTag fTag;
27 float fStyleValue;
/third_party/mindspore/mindspore/core/ir/
Dkernel_info_dev.h23 enum Axis : int { enum
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout-base-table.hh374 struct Axis struct
376 bool get_baseline (hb_tag_t baseline_tag, in get_baseline()
402 bool get_min_max (hb_tag_t script_tag, in get_min_max()
420 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
430 baseTagList; /* Offset to BaseTagList table, from beginning
435 baseScriptList; /* Offset to BaseScriptList table, from beginning
/third_party/harfbuzz/src/
Dhb-ot-layout-base-table.hh374 struct Axis struct
376 bool get_baseline (hb_tag_t baseline_tag, in get_baseline()
402 bool get_min_max (hb_tag_t script_tag, in get_min_max()
420 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
430 baseTagList; /* Offset to BaseTagList table, from beginning
435 baseScriptList; /* Offset to BaseScriptList table, from beginning
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout-base-table.hh412 struct Axis struct
414 bool get_baseline (hb_ot_layout_baseline_t baseline, in get_baseline()
427 bool get_min_max (hb_tag_t script_tag, in get_min_max()
441 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
451 baseTagList; /* Offset to BaseTagList table, from beginning
456 baseScriptList; /* Offset to BaseScriptList table, from beginning
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_multimodalInput_mouseEvent.js37 export const Axis = { variable
72 Axis, property
/third_party/flutter/skia/include/effects/
DSkColorMatrix.h27 enum Axis { enum
/third_party/skia/tests/
DTypefaceMacTest.cpp67 using Axis = SkFontParameters::Variation::Axis; in DEF_TEST() typedef
DTypefaceTest.cpp333 using Axis = SkFontParameters::Variation::Axis; in DEF_TEST() typedef
/third_party/boost/boost/histogram/
Dostream.hpp160 void ostream_bin(OStream& os, const Axis&, axis::index_type i, B, priority<0>) { in ostream_bin()
/third_party/skia/src/utils/
DSkCustomTypeface.cpp88 int onGetVariationDesignParameters(SkFontParameters::Variation::Axis[], in onGetVariationDesignParameters()
/third_party/boost/boost/histogram/detail/
Dfill_n.hpp137 using Axis = std::decay_t<decltype(axis)>; in fill_n_indices() typedef
/third_party/typescript/src/harness/
DvfsUtil.ts1186 …export type Axis = "ancestors" | "ancestors-or-self" | "self" | "descendants-or-self" | "descendan… alias
/third_party/skia/third_party/externals/freetype/src/autofit/
Daflatin.c1203 AF_LatinAxis Axis = &metrics->axis[AF_DIMENSION_VERT]; in af_latin_metrics_scale_dim() local
/third_party/freetype/src/autofit/
Daflatin.c1209 AF_LatinAxis Axis = &metrics->axis[AF_DIMENSION_VERT]; in af_latin_metrics_scale_dim() local
/third_party/flutter/skia/third_party/externals/freetype/src/autofit/
Daflatin.c1210 AF_LatinAxis Axis = &metrics->axis[AF_DIMENSION_VERT]; in af_latin_metrics_scale_dim() local
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
DvktComputeBasicComputeShaderTests.cpp3429 enum class Axis { X = 0, Y = 1, Z = 2 }; enum in vkt::compute::__anon2a3430050111::MaxWorkGroupSizeTest