Home
last modified time | relevance | path

Searched refs:TextJustifyType (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dtypes.cpp80 MBGL_DEFINE_ENUM(TextJustifyType, {
81 { TextJustifyType::Center, "center" },
82 { TextJustifyType::Left, "left" },
83 { TextJustifyType::Right, "right" },
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dsymbol_layer_properties.hpp140 struct TextJustify : DataDrivenLayoutProperty<TextJustifyType> {
142 static TextJustifyType defaultValue() { return TextJustifyType::Center; } in defaultValue()
H A Dsymbol_layer.cpp497 DataDrivenPropertyValue<TextJustifyType> SymbolLayer::getDefaultTextJustify() { in getDefaultTextJustify()
501 DataDrivenPropertyValue<TextJustifyType> SymbolLayer::getTextJustify() const { in getTextJustify()
505 void SymbolLayer::setTextJustify(DataDrivenPropertyValue<TextJustifyType> value) { in setTextJustify()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dshaping.cpp255 const style::TextJustifyType textJustify, in shapeLines()
268 const float justify = textJustify == style::TextJustifyType::Right ? 1 : in shapeLines()
269 textJustify == style::TextJustifyType::Left ? 0 : in shapeLines()
329 const style::TextJustifyType textJustify, in getShaping()
H A Dshaping.hpp52 style::TextJustifyType textJustify,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dsymbol_layer.hpp141 static DataDrivenPropertyValue<TextJustifyType> getDefaultTextJustify();
142 DataDrivenPropertyValue<TextJustifyType> getTextJustify() const;
143 void setTextJustify(DataDrivenPropertyValue<TextJustifyType>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dtypes.hpp78 enum class TextJustifyType : uint8_t { enum
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dvalue.cpp304 template type::Type valueTypeToExpressionType<TextJustifyType>();
305 template struct ValueConverter<TextJustifyType>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp59 …result["text-justify"] = &setProperty<SymbolLayer, DataDrivenPropertyValue<TextJustifyType>, &Symb… in makeLayoutPropertySetters()